Skip to content

Commit

Permalink
Upgrade 'standard'
Browse files Browse the repository at this point in the history
* Upgrade other packages
* Fix 'standard' error
    * 'wibble' is never reassigned. Use 'const' instead.
  • Loading branch information
abetomo committed Jul 11, 2019
1 parent 3d752cf commit 7579a91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -20,16 +20,16 @@
"author": "Zeke Sikelianos <zeke@sikelianos.com> (http://zeke.sikelianos.com)",
"license": "MIT",
"dependencies": {
"commander": "^2.18.0",
"globby": "^8.0.1",
"commander": "^2.20.0",
"globby": "^10.0.1",
"lodash.flatten": "^4.4.0",
"lodash.range": "^3.2.0",
"ora": "^3.0.0",
"standard": "^12.0.1"
"ora": "^3.4.0",
"standard": "^13.0.0"
},
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
"tape": "^4.11.0"
},
"engines": {
"node": ">=6"
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/clean.md
Expand Up @@ -9,7 +9,7 @@ console.log('all good here!')
There are no linting errors in this file.

```javascript
let wibble = 2
const wibble = 2
console.log(wibble)
```

Expand Down

0 comments on commit 7579a91

Please sign in to comment.