Skip to content

Commit 1be8285

Browse files
committed
Removed copyfiles from npm build script
1 parent f7a663d commit 1be8285

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"pretest": "npm run build",
77
"test": "mocha --ui bdd --recursive ./dist/test --timeout 90000",
88
"e2econfigcopy": "copyfiles --flat ./e2e/conf/*.conf ./dist/e2e/conf/",
9-
"test:e2e": "npm run build && mocha --ui bdd --recursive ./dist/e2e --timeout 90000",
9+
"test:e2e": "npm run build && npm run e2econfigcopy && mocha --ui bdd --recursive ./dist/e2e --timeout 90000",
1010
"test:all": "mocha --ui bdd --recursive ./dist/ --timeout 90000",
11-
"build": "rm -rf dist/ && tsc && npm run e2econfigcopy ",
11+
"build": "rm -rf dist/ && tsc",
1212
"test:cov": "nyc --reporter=lcov --reporter=text-lcov npm t && nyc report --reporter=text-lcov",
1313
"test:coveralls": "npm run test:cov | coveralls"
1414
},

0 commit comments

Comments
 (0)