Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 6, 2016
1 parent a13cb54 commit a0fb4da
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ insert_final_newline = true
[{package.json,*.yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* text=auto
*.js text eol=lf
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- '5'
- '6'
- '4'
- '0.12'
20 changes: 9 additions & 11 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ var logUpdate = require('log-update');
var logSymbols = require('log-symbols');
var Ora = require('ora');

var cli = meow({
help: [
'Usage',
' $ speed-test',
'',
'Options',
' --json Output the result as JSON',
' --bytes Output the result in megabytes per second',
' --verbose Output more detailed information'
]
});
var cli = meow([
'Usage',
' $ speed-test',
'',
'Options',
' --json Output the result as JSON',
' --bytes Output the result in megabytes per second',
' --verbose Output more detailed information'
]);

updateNotifier({pkg: cli.pkg}).notify();

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ $ speed-test --help

## License

MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)

0 comments on commit a0fb4da

Please sign in to comment.