Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit 61f9032

Browse files
committed
tried prettier-eslint with atom
1 parent f981cc8 commit 61f9032

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

deferred.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const Promise = require('bluebird')
22

33
const createDeferred = () => {
44
const deferred = {}
5+
56
deferred.promise = new Promise((resolve, reject) => {
67
deferred.resolve = resolve
78
deferred.reject = reject

package.json

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,11 @@
77
"engines": {
88
"node": ">=6.5"
99
},
10-
"files": [
11-
"*.js"
12-
],
10+
"files": ["*.js"],
1311
"private": false,
14-
"homepage": "https://github.com/cypress-io/cypress-webpack-preprocessor#readme",
15-
"keywords": [
16-
"cypress",
17-
"cypress-plugin",
18-
"cypress-preprocessor",
19-
"webpack"
20-
],
12+
"homepage":
13+
"https://github.com/cypress-io/cypress-webpack-preprocessor#readme",
14+
"keywords": ["cypress", "cypress-plugin", "cypress-preprocessor", "webpack"],
2115
"license": "MIT",
2216
"repository": {
2317
"type": "git",
@@ -30,10 +24,12 @@
3024
"lint": "prettier-eslint --write '*.js'",
3125
"pretest": "npm run lint",
3226
"secure": "nsp check",
33-
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
27+
"size":
28+
"t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
3429
"test": "mocha",
3530
"test-watch": "chokidar '*.js' 'test/*.js' -c 'npm test'",
36-
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post"
31+
"semantic-release":
32+
"semantic-release pre && npm publish --access public && semantic-release post"
3733
},
3834
"devDependencies": {
3935
"ban-sensitive-files": "1.9.0",

0 commit comments

Comments
 (0)