Skip to content

Commit 883287b

Browse files
committed
fix(repo): remove npx nx from package.jsons
1 parent c4554ff commit 883287b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/core/auth-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"clean": "rimraf dist docs",
3030
"coverage": "echo \"run npm test\"",
3131
"build:node18": "npm run clean && npm run build:main && npm run build:module",
32-
"build": "npm run clean && npx nx build:main auth-js && npx nx build:module auth-js",
32+
"build": "npm run clean && npm run build:main && npm run build:module",
3333
"build:main": "tsc -p tsconfig.json",
3434
"build:module": "tsc -p tsconfig.module.json",
3535
"test:auth": "npm run test:clean && npm run test:infra && npm run test:suite && npm run test:clean",

packages/core/storage-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"scripts": {
2828
"clean": "rimraf dist docs/v2",
29-
"build": "npx nx clean storage-js && npx nx build:main storage-js && npx nx build:module storage-js && npx nx build:umd storage-js",
29+
"build": "npm run clean && npm run build:main && npm run build:module && npm run build:umd",
3030
"build:main": "tsc -p tsconfig.json",
3131
"build:module": "tsc -p tsconfig.module.json",
3232
"build:umd": "webpack",

packages/core/supabase-js/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
},
2727
"scripts": {
2828
"clean": "rimraf dist docs/v2",
29-
"build": "npm run clean && npx nx build:main supabase-js && npx nx build:module supabase-js && npx nx build:umd supabase-js",
29+
"build": "npm run clean && npm run build:main && npm run build:module && npm run build:umd",
3030
"build:main": "tsc -p tsconfig.json",
3131
"build:module": "tsc -p tsconfig.module.json",
3232
"build:umd": "webpack --env mode=production",
33-
"test": "npx nx test:types supabase-js && npx nx test:run supabase-js",
34-
"test:all": "npx nx test:types supabase-js && npx nx test:run supabase-js && npx nx test:integration supabase-js && npx nx test:integration:browser supabase-js",
33+
"test": "npm run test:types && npm run test:run",
34+
"test:all": "npm run test:types && npm run test:run && npm run test:integration && npm run test:integration:browser",
3535
"test:run": "jest --runInBand --detectOpenHandles",
3636
"test:unit": "jest --runInBand --detectOpenHandles test/unit",
3737
"test:coverage": "jest --runInBand --coverage --testPathIgnorePatterns=\"test/integration|test/deno\"",
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch --verbose false --silent false",
4242
"test:node:playwright": "cd test/integration/node-browser && npm install && cp ../../../dist/umd/supabase.js . && npm run test",
4343
"test:bun": "cd test/integration/bun && bun install && bun test",
44-
"test:types": "npx nx build:module supabase-js && tsd --files test/types/*.test-d.ts && jsr publish --dry-run --allow-dirty",
44+
"test:types": "npm run build:module && tsd --files test/types/*.test-d.ts && jsr publish --dry-run --allow-dirty",
4545
"docs": "typedoc --entryPoints src/index.ts --out docs/v2",
4646
"docs:json": "typedoc --entryPoints src/index.ts --json docs/v2/spec.json --excludeExternals",
4747
"serve:coverage": "npx nx test:coverage supabase-js && serve test/coverage",

0 commit comments

Comments
 (0)