Skip to content

Commit caa05cd

Browse files
committed
fix: resolved issues
1 parent 635d1ef commit caa05cd

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
uses: ./.github/actions/prepare-install
7979
with:
8080
node-version: ${{ env.PRIMARY_NODE_VERSION }}
81-
- run: pnpm run generate-configs
81+
- run: pnpm exec nx run generate-configs
8282
- run: git status --porcelain
8383
- if: failure()
8484
run: echo "Outdated result detected from pnpm run generate-configs. Please check in any file changes."

packages/ast-spec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"types": "dist/index.d.ts",
3333
"scripts": {
3434
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
35-
"build": "pnpm -w exec nx build",
35+
"build": "pnpm exec nx build",
3636
"clean": "rimraf dist/ coverage/",
3737
"clean-fixtures": "rimraf -g \"./src/**/fixtures/**/snapshots\"",
3838
"format": "pnpm -w run format",

packages/eslint-plugin-internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"license": "MIT",
1616
"scripts": {
1717
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
18-
"build": "pnpm -w exec nx build",
18+
"build": "pnpm exec nx build",
1919
"clean": "rimraf dist/ coverage/",
2020
"format": "pnpm -w run format",
2121
"lint": "pnpm -w exec nx lint",

packages/parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
],
4141
"scripts": {
4242
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
43-
"build": "pnpm -w exec nx build",
43+
"build": "pnpm exec nx build",
4444
"clean": "rimraf dist/ coverage/",
4545
"format": "pnpm -w run format",
4646
"lint": "pnpm -w exec nx lint",

packages/rule-schema-to-typescript-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"license": "MIT",
2626
"scripts": {
2727
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
28-
"build": "pnpm -w exec nx build",
28+
"build": "pnpm exec nx build",
2929
"clean": "rimraf dist/ coverage/",
3030
"format": "pnpm -w run format",
3131
"lint": "pnpm -w exec nx lint",

packages/rule-tester/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
],
3737
"scripts": {
3838
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
39-
"build": "pnpm -w exec nx build",
39+
"build": "pnpm exec nx build",
4040
"clean": "rimraf dist/ coverage/",
4141
"format": "pnpm -w run format",
4242
"lint": "pnpm -w exec nx lint",

packages/scope-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
"scripts": {
4040
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
41-
"build": "pnpm -w exec nx build",
41+
"build": "pnpm exec nx build",
4242
"clean": "rimraf dist/ coverage/",
4343
"clean-fixtures": "rimraf -g \"./src/**/fixtures/**/snapshots\"",
4444
"format": "pnpm -w run format",

packages/tsconfig-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
"scripts": {
3939
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
40-
"build": "pnpm -w exec nx build",
40+
"build": "pnpm exec nx build",
4141
"clean": "rimraf dist/ coverage/",
4242
"format": "pnpm -w exec format",
4343
"lint": "pnpm -w exec nx lint",

packages/type-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
"scripts": {
3939
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
40-
"build": "pnpm -w exec nx build",
40+
"build": "pnpm exec nx build",
4141
"clean": "rimraf dist/ coverage/",
4242
"format": "pnpm -w run format",
4343
"lint": "pnpm -w exec nx lint",

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
"scripts": {
4040
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
41-
"build": "pnpm -w exec nx build",
41+
"build": "pnpm exec nx build",
4242
"clean": "rimraf dist/ src/generated/ coverage/",
4343
"copy-ast-spec": "tsx ./tools/copy-ast-spec.mts",
4444
"format": "pnpm -w run format",

0 commit comments

Comments
 (0)