Skip to content

Commit

Permalink
re-add missing exclude of node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTugarev committed Sep 18, 2023
1 parent 35bca11 commit 86331fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/gitpod-db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"test": "yarn db-test",
"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
"db-test": "r(){ . $(leeway run components/gitpod-db:db-test-env); yarn db-test-run; };r",
"db-test-run": "mocha '**/*.spec.db.ts'",
"db-test-run": "mocha '**/*.spec.db.ts' --exclude './node_modules/**'",
"wait-for-db": "node ./lib/wait-for-db.js",
"typeorm": "typeorm -f lib/typeorm/ormconfig",
"migrate-migrations": "node ./lib/migrate-migrations.js",
Expand Down
4 changes: 2 additions & 2 deletions components/gitpod-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"build": "yarn lint && tsc",
"lint": "yarn eslint src/*.ts src/**/*.ts",
"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",
"test": "mocha './**/*.spec.ts'",
"test-debug": "mocha --inspect-brk './**/*.spec.ts'",
"test": "mocha './**/*.spec.ts' --exclude './node_modules/**'",
"test-debug": "mocha --inspect-brk './**/*.spec.ts' --exclude './node_modules/**'",
"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput"
},
"mocha": {
Expand Down
2 changes: 1 addition & 1 deletion components/public-api/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"build": "mkdir -p lib; tsc",
"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
"test": "mocha './**/*.spec.ts'",
"test": "mocha './**/*.spec.ts' --exclude './node_modules/**'",
"test:brk": "yarn test --inspect-brk"
},
"mocha": {
Expand Down
2 changes: 1 addition & 1 deletion components/ws-manager-bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "UNLICENSED",
"scripts": {
"start": "node ./dist/index.js",
"test": "mocha './**/*.spec.ts'",
"test": "mocha './**/*.spec.ts' --exclude './node_modules/**'",
"lint": "yarn eslint src/*.ts src/**/*.ts",
"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",
"build": "yarn lint && npx tsc",
Expand Down

0 comments on commit 86331fa

Please sign in to comment.