Skip to content

Commit ec29282

Browse files
committed
fix: sort package.json scripts in lexicographical order
1 parent f6ba089 commit ec29282

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@
1818
"type": "commonjs",
1919
"main": "./dist/extension.js",
2020
"scripts": {
21-
"build": "concurrently -g -n webviews,extension,compile-tests:integration \"pnpm build:webviews\" \"node esbuild.mjs\" \"pnpm compile-tests:integration\"",
22-
"build:production": "cross-env NODE_ENV=production pnpm build",
23-
"build:webviews": "pnpm -r --filter \"./packages/*\" --parallel build",
24-
"compile-tests:integration": "tsc -p test/integration --outDir out --noCheck",
25-
"chromatic": "chromatic",
26-
"format": "prettier --write --cache --cache-strategy content .",
27-
"format:check": "prettier --check --cache --cache-strategy content .",
28-
"lint": "eslint --cache --cache-strategy content .",
29-
"lint:fix": "pnpm lint --fix",
30-
"package": "pnpm build:production && vsce package --no-dependencies",
31-
"package:prerelease": "pnpm build:production && vsce package --pre-release --no-dependencies",
32-
"storybook": "storybook dev -p 6006 --config-dir .storybook",
33-
"storybook:build": "storybook build --config-dir .storybook",
34-
"storybook:ci": "storybook build --test --config-dir .storybook",
35-
"test": "cross-env CI=true ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs",
36-
"test:extension": "cross-env ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs --project extension",
37-
"test:integration": "pnpm compile-tests:integration && node esbuild.mjs && vscode-test",
38-
"test:webview": "cross-env ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs --project webview",
39-
"typecheck": "concurrently -g -n extension,tests,packages \"tsc --noEmit\" \"tsc --noEmit -p test\" \"pnpm typecheck:packages\"",
40-
"typecheck:packages": "pnpm -r --filter \"./packages/*\" --parallel typecheck",
41-
"watch": "concurrently -g -n extension,webviews \"pnpm watch:extension\" \"pnpm watch:webviews\"",
42-
"watch:extension": "node esbuild.mjs --watch",
43-
"watch:webviews": "pnpm -r --filter \"./packages/*\" --parallel dev"
44-
},
21+
"build": "concurrently -g -n webviews,extension,compile-tests:integration \"pnpm build:webviews\" \"node esbuild.mjs\" \"pnpm compile-tests:integration\"",
22+
"build:production": "cross-env NODE_ENV=production pnpm build",
23+
"build:webviews": "pnpm -r --filter \"./packages/*\" --parallel build",
24+
"chromatic": "chromatic",
25+
"compile-tests:integration": "tsc -p test/integration --outDir out --noCheck",
26+
"format": "prettier --write --cache --cache-strategy content .",
27+
"format:check": "prettier --check --cache --cache-strategy content .",
28+
"lint": "eslint --cache --cache-strategy content .",
29+
"lint:fix": "pnpm lint --fix",
30+
"package": "pnpm build:production && vsce package --no-dependencies",
31+
"package:prerelease": "pnpm build:production && vsce package --pre-release --no-dependencies",
32+
"storybook": "storybook dev -p 6006 --config-dir .storybook",
33+
"storybook:build": "storybook build --config-dir .storybook",
34+
"storybook:ci": "storybook build --test --config-dir .storybook",
35+
"test": "cross-env CI=true ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs",
36+
"test:extension": "cross-env ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs --project extension",
37+
"test:integration": "pnpm compile-tests:integration && node esbuild.mjs && vscode-test",
38+
"test:webview": "cross-env ELECTRON_RUN_AS_NODE=1 electron node_modules/vitest/vitest.mjs --project webview",
39+
"typecheck": "concurrently -g -n extension,tests,packages \"tsc --noEmit\" \"tsc --noEmit -p test\" \"pnpm typecheck:packages\"",
40+
"typecheck:packages": "pnpm -r --filter \"./packages/*\" --parallel typecheck",
41+
"watch": "concurrently -g -n extension,webviews \"pnpm watch:extension\" \"pnpm watch:webviews\"",
42+
"watch:extension": "node esbuild.mjs --watch",
43+
"watch:webviews": "pnpm -r --filter \"./packages/*\" --parallel dev"
44+
},
4545
"contributes": {
4646
"configuration": {
4747
"title": "Coder",

0 commit comments

Comments
 (0)