From e74e52e924ba9c3fc408c034c26c08376162c38b Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Thu, 2 May 2019 13:25:55 -0500 Subject: [PATCH] build: make package.json scripts consistently en/dis-abled --- packages/embark-async-wrapper/package.json | 3 ++- packages/embark-graph/package.json | 2 +- packages/embark-scaffolding/package.json | 8 +++----- packages/embark-vyper/package.json | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/packages/embark-async-wrapper/package.json b/packages/embark-async-wrapper/package.json index 4a09ee212..2954a2f53 100644 --- a/packages/embark-async-wrapper/package.json +++ b/packages/embark-async-wrapper/package.json @@ -31,8 +31,9 @@ "clean": "npm run reset", "lint": "npm-run-all lint:*", "lint:js": "eslint src/", - "lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", + "// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", "package": "npm pack", + "// qa": "npm-run-all lint typecheck build package", "qa": "npm-run-all lint build package", "reset": "npx rimraf dist embark-*.tgz package", "start": "npm run watch", diff --git a/packages/embark-graph/package.json b/packages/embark-graph/package.json index 2e32549a6..e99560217 100644 --- a/packages/embark-graph/package.json +++ b/packages/embark-graph/package.json @@ -31,7 +31,7 @@ "clean": "npm run reset", "lint": "npm-run-all lint:*", "lint:js": "eslint src/", - "lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", + "// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", "package": "npm pack", "// qa": "npm-run-all lint typecheck build package", "qa": "npm-run-all lint build package", diff --git a/packages/embark-scaffolding/package.json b/packages/embark-scaffolding/package.json index 8d8f27782..411d6e3f8 100644 --- a/packages/embark-scaffolding/package.json +++ b/packages/embark-scaffolding/package.json @@ -29,18 +29,16 @@ "build": "cross-env BABEL_ENV=node babel src --copy-files --extensions \".ts\" --out-dir dist --root-mode upward --source-maps", "ci": "npm run qa", "clean": "npm run reset", - "copy:templates": "cp -rf src/**/*.hbs dist/", "lint": "npm-run-all lint:*", "lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", "package": "npm pack", - "// qa": "npm-run-all lint typecheck build package", - "qa": "npm-run-all lint build package", + "qa": "npm-run-all lint typecheck build package", "reset": "npx rimraf dist embark-*.tgz package", "start": "npm run watch", - "// typecheck": "tsc", + "typecheck": "tsc", "watch": "run-p watch:*", "watch:build": "npm run build -- --verbose --watch", - "// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" + "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { "@babel/runtime-corejs2": "7.3.1", diff --git a/packages/embark-vyper/package.json b/packages/embark-vyper/package.json index db9b9e689..6d5c7013b 100644 --- a/packages/embark-vyper/package.json +++ b/packages/embark-vyper/package.json @@ -31,7 +31,7 @@ "clean": "npm run reset", "lint": "npm-run-all lint:*", "lint:js": "eslint src/", - "lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", + "// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", "package": "npm pack", "// qa": "npm-run-all lint typecheck build package", "qa": "npm-run-all lint build package",