Skip to content

Commit 56a0b52

Browse files
committed
refactor: simplify prepack script by removing clean step
1 parent 0310e39 commit 56a0b52

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"lint:check": "eslint src test",
4040
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4141
"pack": "npm pack 2>&1",
42-
"prepack": "npm run clean && npm run build",
42+
"prepack": "npm run build",
4343
"test": "DEBUG=genaiscript:api* vitest --run"
4444
},
4545
"keywords": [],

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"lint:check": "eslint src",
8383
"lint:fix": "eslint src --fix --fix-type [problem,suggestion]",
8484
"pack": "npm pack 2>&1",
85-
"prepack": "npm run clean && npm run build",
85+
"prepack": "npm run build",
8686
"test": "vitest --run"
8787
},
8888
"exports": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"lint:check": "eslint src test",
4444
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4545
"pack": "npm pack 2>&1",
46-
"prepack": "npm run clean && npm run build",
46+
"prepack": "npm run build",
4747
"test": "vitest --run"
4848
},
4949
"dependencies": {

packages/plugin-ast-grep/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lint:check": "eslint src test",
4343
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4444
"pack": "npm pack 2>&1",
45-
"prepack": "npm run clean && npm run build",
45+
"prepack": "npm run build",
4646
"test": "vitest --run"
4747
},
4848
"keywords": [],

packages/plugin-mdast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"lint:check": "eslint src test",
5757
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
5858
"pack": "npm pack 2>&1",
59-
"prepack": "npm run clean && npm run build",
59+
"prepack": "npm run build",
6060
"test": "vitest --run"
6161
},
6262
"keywords": [],

packages/plugin-mermaid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"lint:check": "eslint src test",
4242
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4343
"pack": "npm pack 2>&1",
44-
"prepack": "npm run clean && npm run build",
44+
"prepack": "npm run build",
4545
"test": "vitest --run"
4646
},
4747
"keywords": [],

packages/plugin-playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"lint:check": "eslint src test",
3939
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4040
"pack": "npm pack 2>&1",
41-
"prepack": "npm run clean && npm run build",
41+
"prepack": "npm run build",
4242
"test": "vitest --run"
4343
},
4444
"keywords": [],

packages/plugin-pyodide/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"lint:check": "eslint src test",
3939
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4040
"pack": "npm pack 2>&1",
41-
"prepack": "npm run clean && npm run build",
41+
"prepack": "npm run build",
4242
"test": "vitest --run"
4343
},
4444
"keywords": [],

packages/plugin-z3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"lint:check": "eslint src test",
3939
"lint:fix": "eslint src test --fix --fix-type [problem,suggestion]",
4040
"pack": "npm pack 2>&1",
41-
"prepack": "npm run clean && npm run build",
41+
"prepack": "npm run build",
4242
"test": "vitest --run"
4343
},
4444
"keywords": [],

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"lint:check": "eslint src",
4848
"lint:fix": "eslint src --fix --fix-type [problem,suggestion]",
4949
"pack": "npm pack 2>&1",
50-
"prepack": "npm run clean && npm run build"
50+
"prepack": "npm run build"
5151
},
5252
"keywords": [],
5353
"author": "Microsoft Corporation",

0 commit comments

Comments
 (0)