From a0654dd654957973b470de07b25bbee8654b08e5 Mon Sep 17 00:00:00 2001 From: a8trejo Date: Tue, 19 Nov 2024 10:33:00 -0800 Subject: [PATCH] Order package json scripts by alphabet --- .npmrc | 1 - package.json | 30 +++++++++++++++--------------- 2 files changed, 15 insertions(+), 16 deletions(-) delete mode 100644 .npmrc diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 5660f81af2..0000000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -registry=https://registry.npmjs.org/ \ No newline at end of file diff --git a/package.json b/package.json index e3a2722daf..3e81435fe2 100644 --- a/package.json +++ b/package.json @@ -114,26 +114,26 @@ } }, "scripts": { + "build:webview": "cd webview-ui && npm run build", + "check-types": "tsc --noEmit", + "co:login": "scripts/codeartifact-login.sh", + "compile": "npm run check-types && npm run lint && node esbuild.js", + "compile-tests": "tsc -p . --outDir out", + "install:all": "npm run co:install && npm install && cd webview-ui && npm install", + "install:cline": "scripts/install-cline-latest.sh", + "lint": "eslint src --ext ts", + "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production", + "pretest": "npm run compile-tests && npm run compile && npm run lint", + "start:webview": "cd webview-ui && npm run start", + "test": "vscode-test", + "test:webview": "cd webview-ui && npm run test", + "publish:marketplace": "vsce publish && ovsx publish", "vscode:prepublish": "npm run package", "vsix": "npx vsce package --out bin", - "compile": "npm run check-types && npm run lint && node esbuild.js", "watch": "npm-run-all -p watch:*", "watch:esbuild": "node esbuild.js --watch", "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", - "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production", - "compile-tests": "tsc -p . --outDir out", - "watch-tests": "tsc -p . -w --outDir out", - "pretest": "npm run compile-tests && npm run compile && npm run lint", - "check-types": "tsc --noEmit", - "lint": "eslint src --ext ts", - "test": "vscode-test", - "install:all": "npm install && cd webview-ui && npm install", - "start:webview": "cd webview-ui && npm run start", - "build:webview": "cd webview-ui && npm run build", - "test:webview": "cd webview-ui && npm run test", - "publish:marketplace": "vsce publish && ovsx publish", - "co:login": "scripts/codeartifact-login.sh", - "install:cline": "scripts/install-cline-latest.sh" + "watch-tests": "tsc -p . -w --outDir out" }, "devDependencies": { "@types/diff": "^5.2.1",