Skip to content

Commit

Permalink
fix(): remove npm-run-all
Browse files Browse the repository at this point in the history
  • Loading branch information
mkucharz committed Nov 27, 2018
1 parent 0ce6b42 commit 17763c8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
},
"devDependencies": {
"codecov": "^3.0.0",
"concurrently": "^4.1.0",
"nyc": "^11.4.1"
},
"nyc": {
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
"mkdirp": "^0.5.1",
"node-dir": "^0.1.17",
"node-walkup": "^1.1.1",
"npm-run-all": "^4.1.5",
"ora": "^1.3.0",
"pretty-bytes": "^4.0.2",
"raven": "^2.2.1",
Expand Down Expand Up @@ -122,7 +121,7 @@
"clean": "rm -rf lib/",
"unit": "mocha 'tests/unit/*.test.js' --require babel-register",
"unit:watch": "npm run unit -- -w",
"test": "npm-run-all --parallel test:unit test:e2e:group:*",
"test": "concurrently \"npm:test:unit\" \"npm:test:e2e:group:*\"",
"test:e2e:init": "npm run test:e2e-single tests/e2e/init.test-e2e.js",
"test:e2e:anonymous": "npm run test:e2e-single tests/e2e/anonymous.test-e2e.js",
"test:e2e:deploy": "npm run test:e2e-single tests/e2e/deploy.test-e2e.js",
Expand Down
16 changes: 8 additions & 8 deletions packages/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.1.0",
"console.mute": "^0.3.0",
"dirty-chai": "^2.0.1",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"mock-fs": "^4.4.2",
"npm-cli-login": "^0.0.10",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.2",
"replace": "^1.0.0",
"rimraf": "^2.6.2",
Expand All @@ -55,9 +55,9 @@
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test:unit",
"clean": "rm -rf lib/",
"test": "npm-run-all --parallel test:unit test:e2e:group:*",
"test:e2e": "npm-run-all test:e2e:*",
"test:e2e:core": "npm-run-all test:e2e:core:*",
"test": "concurrently npm:test:unit \"test:e2e:group:*\"",
"test:e2e": "concurrently \"test:e2e:*\"",
"test:e2e:core": "concurrently \"test:e2e:core:*\"",
"test:e2e:core:account": "npm run test:e2e-single e2e/core/account.js",
"test:e2e:core:channel": "npm run test:e2e-single e2e/core/channel.js",
"test:e2e:core:class": "npm run test:e2e-single e2e/core/class.js",
Expand All @@ -67,11 +67,11 @@
"test:e2e:core:instace": "npm run test:e2e-single e2e/core/instance.js",
"test:e2e:core:server": "npm run test:e2e-single e2e/core/server.js",
"test:e2e:core:users": "npm run test:e2e-single e2e/core/users.js",
"test:e2e:validate": "npm-run-all test:e2e:validate:*",
"test:e2e:validate": "concurrently \"test:e2e:validate:*\"",
"test:e2e:validate:main": "npm run test:e2e-single e2e/validate/main.js",
"test:e2e:schema": "npm-run-all test:e2e:schema:*",
"test:e2e:schema": "concurrently \"test:e2e:schema:*\"",
"test:e2e:schema:main": "npm run test:e2e-single e2e/schema/main.js",
"test:e2e:cli": "npm-run-all test:e2e:cli:*",
"test:e2e:cli": "concurrently \"test:e2e:cli:*\"",
"test:e2e:cli:init": "npm run test:e2e-single e2e/cli/init.test-e2e.js",
"test:e2e:cli:anonymous": "npm run test:e2e-single e2e/cli/anonymous.test-e2e.js",
"test:e2e:cli:deploy": "npm run test:e2e-single e2e/cli/deploy.test-e2e.js",
Expand All @@ -80,7 +80,7 @@
"test:e2e:cli:socket": "npm run test:e2e-single e2e/cli/socket.test-e2e.js",
"test:e2e:cli:instance": "npm run test:e2e-single e2e/cli/instance.test-e2e.js",
"test:e2e-single": "npx mocha --require babel-register --timeout 100000 --slow 8000",
"test:e2e:client": "npm-run-all test:e2e:client:*",
"test:e2e:client": "concurrently \"test:e2e:client:*\"",
"test:e2e:client:main": "npm run test:e2e-single e2e/client/main.js",
"lint": "standard --fix --env mocha e2e",
"format": "prettier --write --single-quote --no-semi --no-bracket-spacing *.js {src,test}/**/*.js"
Expand Down

0 comments on commit 17763c8

Please sign in to comment.