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

Commit 3f810b4

Browse files
committed
Used CLI scripts from ethereumjs-config in package.json
1 parent 2ccf658 commit 3f810b4

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsc -p ./tsconfig.prod.json",
11+
"build": "ethereumjs-config-build",
1212
"prepublishOnly": "npm run test && npm run build",
13-
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/lcov.info",
14-
"coveralls": "npm run coverage && coveralls <.nyc_output/lcov.info",
15-
"format": "prettier --list-different '**/*.{ts,json,md}'",
16-
"format:fix": "prettier --write '**/*.{ts,json,md}'",
17-
"tslint": "tslint -p ./tsconfig.json -e node_modules/**/* -e **/node_modules/**/* -e dist/**/* **/*.ts",
18-
"tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json -e node_modules/**/* -e **/node_modules/**/* -e dist/**/* **/*.ts",
19-
"tsc": "tsc --noEmit",
20-
"lint": "npm run format && npm run tslint && npm run tsc",
21-
"lint:fix": "npm run format:fix && npm run tslint:fix && npm run tsc",
13+
"coverage": "ethereumjs-config-coverage",
14+
"coveralls": "ethereumjs-config-coveralls",
15+
"format": "ethereumjs-config-format",
16+
"format:fix": "ethereumjs-config-format-fix",
17+
"tslint": "ethereumjs-config-tslint",
18+
"tslint:fix": "ethereumjs-config-tslint-fix",
19+
"tsc": "ethereumjs-config-tsc",
20+
"lint": "ethereumjs-config-lint",
21+
"lint:fix": "ethereumjs-config-lint-fix",
2222
"unitTests": "ts-node ./node_modules/tape/bin/tape ./tests/*.ts",
2323
"test": "npm run lint && npm run unitTests",
2424
"test:fix": "npm run lint:fix && npm run unitTests",
@@ -44,10 +44,10 @@
4444
},
4545
"homepage": "https://github.com/ethereumjs-ethereumjs/common",
4646
"devDependencies": {
47-
"@ethereumjs/config-nyc": "^1.0.0",
48-
"@ethereumjs/config-prettier": "^1.0.1",
49-
"@ethereumjs/config-tsc": "^1.0.2",
50-
"@ethereumjs/config-tslint": "^1.0.0",
47+
"@ethereumjs/config-nyc": "^1.1.0",
48+
"@ethereumjs/config-prettier": "^1.1.0",
49+
"@ethereumjs/config-tsc": "^1.1.0",
50+
"@ethereumjs/config-tslint": "^1.1.0",
5151
"@types/node": "^10.12.2",
5252
"@types/tape": "^4.2.33",
5353
"coveralls": "^3.0.1",

0 commit comments

Comments
 (0)