From 63a8b765bb9576346a7c905028d8e7f6b899c694 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 6 Nov 2023 11:43:30 -0500 Subject: [PATCH] chore(core): remove old scripts (#28465) Issue number: N/A --------- ## What is the current behavior? 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? - Removed the "prerelease" and "test.spec.debug" scripts from "core" ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- core/package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/package.json b/core/package.json index 24c58db610..5668c4e033 100644 --- a/core/package.json +++ b/core/package.json @@ -86,13 +86,11 @@ "lint.sass.fix": "npm run lint.sass -- --fix", "lint.ts": "npm run eslint", "lint.ts.fix": "npm run eslint -- --fix", - "prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next", "prerender.e2e": "node scripts/testing/prerender.js", "prettier": "prettier \"./src/**/*.{html,ts,tsx,js,jsx}\"", "start": "npm run build.css && stencil build --dev --watch --serve", "test": "npm run test.spec && npm run test.e2e", "test.spec": "stencil test --spec --max-workers=2", - "test.spec.debug": "npx --node-arg=\"--inspect-brk\" stencil test --spec", "test.e2e": "npx playwright test", "test.e2e.update-snapshots": "npm run test.e2e -- --update-snapshots", "test.watch": "jest --watch --no-cache",