From f7ddab35199cabf4511f6fd2fb765a166050b833 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 3 Nov 2023 12:21:01 -0400 Subject: [PATCH] chore(core): remove old scripts 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 ``` --- core/package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/package.json b/core/package.json index 24c58db610d..5668c4e0339 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",