|
9 | 9 | }, |
10 | 10 | "icon": "media/lightningflow.png", |
11 | 11 | "description": "A VS Code Extension for analysis and optimization of Salesforce Flows. Scans metadata for 20+ issues such as hardcoded IDs, unsafe contexts, inefficient SOQL/DML operations, recursion risks, and missing fault handling. Supports auto-fixes, rule configurations, and tests integration.", |
12 | | - "version": "1.8.2", |
| 12 | + "version": "1.8.3", |
13 | 13 | "engines": { |
14 | 14 | "vscode": "^1.99.1" |
15 | 15 | }, |
|
90 | 90 | "scripts": { |
91 | 91 | "vscode:prepublish": "npm run package", |
92 | 92 | "compile": "webpack --config ./build/node-extension.webpack.config.js", |
93 | | - "watch": "npm run v:update && concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\"", |
| 93 | + "watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\"", |
94 | 94 | "build-webapp": "rollup -c", |
95 | | - "build": "npm run v:update && rollup -c && vsce package", |
96 | | - "build:beta": "npm run v:update && rollup -c && vsce package --pre-release", |
| 95 | + "build": "rollup -c && vsce package", |
| 96 | + "build:beta": "rollup -c && vsce package --pre-release", |
97 | 97 | "package": "webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js", |
98 | 98 | "test-compile": "tsc -p ./", |
99 | 99 | "test-watch": "tsc -watch -p ./", |
|
105 | 105 | "________": "scripts for reactive-vscode", |
106 | 106 | "v:dev": "run-p v:dev:*", |
107 | 107 | "v:build:reactive": "tsup --env.NODE_ENV production --treeshake", |
108 | | - "v:build:vite": "npm run v:update && vue-tsc --noEmit -p beta-vscode.tsconfig.json && vite build", |
| 108 | + "v:build:vite": "vue-tsc --noEmit -p beta-vscode.tsconfig.json && vite build", |
109 | 109 | "v:dev:reactive": "tsup --watch ./src --env.NODE_ENV development", |
110 | 110 | "v:dev:vite": "vite", |
111 | 111 | "v:vite:preview": "vite preview", |
112 | 112 | "v:typecheck:reactive": "tsc --noEmit -p reactive-vscode.tsconfig.json", |
113 | 113 | "v:vscode:prepublish:reactive": "pnpm run build", |
114 | 114 | "v:test:reactive": "jest", |
115 | | - "v:test": "vitest", |
116 | | - "v:update": "vscode-ext-gen --output src/generated/meta.ts" |
| 115 | + "v:test": "vitest" |
117 | 116 | }, |
118 | 117 | "devDependencies": { |
119 | 118 | "@rollup/plugin-commonjs": "^28.0.2", |
|
166 | 165 | "vite": "^6.3.5", |
167 | 166 | "vite-plugin-vue-devtools": "^7.7.6", |
168 | 167 | "vitest": "^3.1.3", |
169 | | - "vscode-ext-gen": "^1.0.2", |
170 | 168 | "vue": "3.5.14", |
171 | 169 | "vue-tsc": "2.2.10", |
172 | 170 | "wdio-vscode-service": "^6.1.2", |
|
175 | 173 | }, |
176 | 174 | "dependencies": { |
177 | 175 | "convert-array-to-csv": "^2.0.0", |
178 | | - "lightning-flow-scanner-core": "^5.9.4", |
| 176 | + "lightning-flow-scanner-core": "^5.9.7", |
179 | 177 | "tabulator-tables": "^6.3.1", |
180 | 178 | "uuid": "^11.0.5", |
181 | 179 | "xml2js": "^0.6.2", |
|
192 | 190 | "best practices", |
193 | 191 | "code quality", |
194 | 192 | "salesforce automation" |
195 | | - ] |
| 193 | + ], |
| 194 | + "volta": { |
| 195 | + "node": "20.13.1" |
| 196 | + } |
196 | 197 | } |
0 commit comments