Skip to content

Commit 8023aa4

Browse files
authoredSep 12, 2018
Merge pull request #27 from abetomo/upgrade_packages
Modify to follow the rules of the new 'standard'
2 parents d4692c5 + 95dad5d commit 8023aa4

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed
 

‎package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
"author": "Zeke Sikelianos <zeke@sikelianos.com> (http://zeke.sikelianos.com)",
2121
"license": "MIT",
2222
"dependencies": {
23-
"async": "^2.0.1",
24-
"commander": "^2.9.0",
25-
"globby": "^6.0.0",
26-
"lodash.flatten": "^4.2.0",
27-
"lodash.range": "^3.1.5",
28-
"ora": "^1.2.0",
29-
"standard": "^10.0.2"
23+
"async": "^2.6.1",
24+
"commander": "^2.18.0",
25+
"globby": "^8.0.1",
26+
"lodash.flatten": "^4.4.0",
27+
"lodash.range": "^3.2.0",
28+
"ora": "^3.0.0",
29+
"standard": "^12.0.1"
3030
},
3131
"devDependencies": {
32-
"tap-spec": "^4.1.1",
33-
"tape": "^4.6.0"
32+
"tap-spec": "^5.0.0",
33+
"tape": "^4.9.1"
3434
},
3535
"engines": {
3636
"node": ">=4"

‎tests/fixtures/clean.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ It should allow creation of unused variables
2323

2424
```js
2525
// `BrowserWindow` is declared but not used
26-
const {BrowserWindow} = require('electron')
26+
const { BrowserWindow } = require('electron')
2727
```
2828

2929
It should allow orphan objects:
@@ -60,7 +60,7 @@ and wrapped arrays:
6060
Electron docs have a bunch of non-node-style callbacks that don't have `err` as the first arg:
6161

6262
```javascript
63-
const {app} = require('electron')
63+
const { app } = require('electron')
6464

6565
app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
6666
if (url === 'https://github.com') {

0 commit comments

Comments
 (0)
Please sign in to comment.