Fixing package scripts

This commit is contained in:
a8trejo 2024-11-27 19:17:43 -08:00
parent b0e48c5489
commit 3ad3bdcf81
4 changed files with 2148 additions and 4002 deletions

2
.gitignore vendored
View file

@ -5,7 +5,5 @@ node_modules
.DS_Store
.npmrc
# Builds
bin

1
.npmrc Normal file
View file

@ -0,0 +1 @@
registry=https://registry.npmjs.org/

6142
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -132,12 +132,9 @@
"build:webview": "cd webview-ui && npm run build",
"changeset": "changeset",
"check-types": "tsc --noEmit",
"co:login": "scripts/codeartifact-login.sh",
"co:install": "npm run co:login && npm i",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"compile-tests": "tsc -p . --outDir out",
"install:all": "npm run co:install && cd webview-ui && npm install",
"install:cline": "scripts/install-cline-latest.sh",
"install:all": "npm install && cd webview-ui && npm install",
"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",