Skip to content

Commit

Permalink
remove dev logging
Browse files Browse the repository at this point in the history
releases 0.2.1
  • Loading branch information
juni-vogt committed Jun 14, 2017
1 parent 00cc99a commit 48b4abb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wttr-uebersicht",
"version": "0.2.0",
"version": "0.2.1",
"description": "wttr.in Übersicht widget",
"main": "wttr.widget/index.js",
"scripts": {
Expand Down
Binary file modified wttr.widget.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion wttr.widget/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ command: function(cb) {
render: out => `
<link rel="stylesheet" href="wttr2.widget/terminal-colors.css" />
<pre>
${console.log('out', out) && out.err || out.data.split('\n').slice(1, 7).join('\n')}
${out.err || out.data.split('\n').slice(1, 7).join('\n')}
</pre>
`

0 comments on commit 48b4abb

Please sign in to comment.