diff options
Diffstat (limited to 'packages/connect/package.json')
-rw-r--r-- | packages/connect/package.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/connect/package.json b/packages/connect/package.json index d1e392606..6b5a5a7b0 100644 --- a/packages/connect/package.json +++ b/packages/connect/package.json @@ -15,13 +15,14 @@ "main": "lib/src/index.js", "types": "lib/src/index.d.ts", "scripts": { - "watch": "tsc -w", + "watch_without_deps": "tsc -w", "build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts", "clean": "shx rm -rf lib test_temp scripts", "copy_test_fixtures": "copyfiles -u 2 './test/fixtures/**/*.json' ./lib/test/fixtures", "lint": "tslint --project .", - "run_mocha": "mocha lib/test/**/*_test.js --exit", - "test": "run-s clean build copy_test_fixtures run_mocha", + "run_mocha": "mocha --require source-map-support/register lib/test/**/*_test.js --exit", + "test": "run-s copy_test_fixtures run_mocha", + "rebuild_and_test": "run-s clean build test", "test:coverage": "nyc npm run test --all && yarn coverage:report:lcov", "coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info", "test:circleci": "yarn test:coverage", |