File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3636 main-branch-name : ' master'
3737 - name : publish
3838 run : |
39- yarn package
39+ node ./tools/scripts/clear-dist.js
40+ npx nx run vscode:package --skip-nx-cache
4041 yarn vsce publish --packagePath dist/apps/vscode/nx-console.vsix -p ${{ secrets.VSCE_PAT }}
4142 yarn ovsx publish dist/apps/vscode/nx-console.vsix -p ${{ secrets.OVSX_PAT }}
4243 - name : release
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ export class FormValuesService {
111111 if ( ! schema ) return { } ;
112112 const options = schema . options ;
113113 const errors : Record < string , boolean | string > = { } ;
114+
114115 Object . entries ( formValues ) . forEach ( ( [ key , value ] ) => {
115116 const option = options . find ( ( option ) => option . name === key ) ;
116117 if ( ! option ) return ;
Original file line number Diff line number Diff line change 1111 "scripts" : {
1212 "nx" : " NODE_OPTIONS=--max-old-space-size=4096 && nx" ,
1313 "watch" : " nx watch-all vscode" ,
14- "package" : " node ./tools/scripts/clear-dist.js && nx package vscode" ,
1514 "e2e" : " nx e2e vscode-e2e" ,
1615 "update" : " nx migrate latest"
1716 },
150149 "nx" : {
151150 "includedScripts" : []
152151 }
153- }
152+ }
You can’t perform that action at this time.
0 commit comments