File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,7 @@ node_modules
33* .vsix
44
55# output directory
6- out
6+ build
7+ web-app /build
8+ web-app /node_modules
9+
Original file line number Diff line number Diff line change 11.vscode /**
22.vscode-test /**
3- out /test /**
3+ build /test /**
44src /**
55.gitignore
66vsc-extension-quickstart.md
Original file line number Diff line number Diff line change 1313 "activationEvents" : [
1414 " onCommand:coderoad.start"
1515 ],
16- "main" : " ./out /extension.js" ,
16+ "main" : " ./build /extension.js" ,
1717 "contributes" : {
1818 "commands" : [
1919 {
2727 "vscode:prepublish" : " npm run build" ,
2828 "machine" : " node ./out/state/index.js" ,
2929 "build" : " npm run compile && npm run build:web" ,
30- "build:web" : " tsc -p web-app/tsconfig.json && cp -R web-app/build/ out /" ,
30+ "build:web" : " tsc -p web-app/tsconfig.json && cp -R web-app/build/ build /" ,
3131 "compile" : " tsc -p ./" ,
3232 "watch" : " tsc -watch -p ./" ,
3333 "postinstall" : " node ./node_modules/vscode/bin/install" ,
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "module" : " commonjs" ,
44 "target" : " es6" ,
5- "outDir" : " out " ,
5+ "outDir" : " build " ,
66 "lib" : [
77 " es6" ,
88 " dom"
2828 "exclude" : [
2929 " node_modules" ,
3030 " .vscode-test" ,
31- " out " ,
31+ " build " ,
3232 " resources" ,
3333 " web-app"
3434 ]
Original file line number Diff line number Diff line change 1414 },
1515 "scripts" : {
1616 "start" : " react-scripts start" ,
17- "build" : " react-scripts build && cp -R ./build/ ../out /" ,
17+ "build" : " react-scripts build && cp -R ./build/ ../build /" ,
1818 "test" : " react-scripts test" ,
1919 "eject" : " react-scripts eject"
2020 },
You can’t perform that action at this time.
0 commit comments