Move html sources into /src/

This commit is contained in:
Alex Dima 2021-11-13 19:40:20 +01:00
parent d2a70a52f5
commit a8df4018f1
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
23 changed files with 80 additions and 304 deletions

View file

@ -9,17 +9,15 @@
"simpleserver": "gulp simpleserver",
"import-typescript": "node ./monaco-typescript/importTypescript",
"watch-src": "tsc -w -p ./src",
"watch-html": "tsc -w -p ./monaco-html/src",
"watch-json": "tsc -w -p ./monaco-json/src",
"watch-languages": "tsc -w -p ./monaco-languages/src",
"watch-typescript": "tsc -w -p ./monaco-typescript/src",
"watch": "npm-run-all -lp watch-src watch-html watch-json watch-languages watch-typescript",
"watch": "npm-run-all -lp watch-src watch-json watch-languages watch-typescript",
"release-src": "node ./build/build",
"release-html": "node ./monaco-html/build",
"release-json": "node ./monaco-json/build",
"release-languages": "node ./monaco-languages/build",
"release-typescript": "node ./monaco-typescript/build",
"release-plugins": "npm-run-all -lp release-src release-html release-json release-languages release-typescript",
"release-plugins": "npm-run-all -lp release-src release-json release-languages release-typescript",
"test": "node ./monaco-languages/test/all.js",
"gulp-release": "gulp release",
"release": "npm-run-all -ls release-plugins gulp-release",