Skip to content

Commit 63a8b76

Browse files
authored
chore(core): remove old scripts (#28465)
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> The "prerelease" script hasn't been used since we switched off our custom release scripts. The "test.spec.debug" script doesn't do anything special now because the `--node-arg` argument has been removed: ``` liamdebeasi@MacBook-Pro core % npx --node-arg=\"--inspect-brk\" stencil test --spec npx: the --node-arg argument has been removed. See `npm help exec` for more information ``` ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Removed the "prerelease" and "test.spec.debug" scripts from "core" ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
1 parent cafafcc commit 63a8b76

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

core/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,11 @@
8686
"lint.sass.fix": "npm run lint.sass -- --fix",
8787
"lint.ts": "npm run eslint",
8888
"lint.ts.fix": "npm run eslint -- --fix",
89-
"prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next",
9089
"prerender.e2e": "node scripts/testing/prerender.js",
9190
"prettier": "prettier \"./src/**/*.{html,ts,tsx,js,jsx}\"",
9291
"start": "npm run build.css && stencil build --dev --watch --serve",
9392
"test": "npm run test.spec && npm run test.e2e",
9493
"test.spec": "stencil test --spec --max-workers=2",
95-
"test.spec.debug": "npx --node-arg=\"--inspect-brk\" stencil test --spec",
9694
"test.e2e": "npx playwright test",
9795
"test.e2e.update-snapshots": "npm run test.e2e -- --update-snapshots",
9896
"test.watch": "jest --watch --no-cache",

0 commit comments

Comments
 (0)