mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
Improve scripts such that they work also on Windows
This commit is contained in:
parent
c8755ac4cd
commit
86ee17e305
5 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "browser-esm-webpack-monaco-plugin",
|
||||
"scripts": {
|
||||
"build": "../node_modules/.bin/webpack --progress"
|
||||
"build": "node ../node_modules/webpack/bin/webpack.js --progress"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "browser-esm-webpack-small",
|
||||
"scripts": {
|
||||
"build": "../node_modules/.bin/webpack --progress",
|
||||
"build": "node ../node_modules/webpack/bin/webpack.js --progress",
|
||||
"generate-imports": "node generate-imports.js"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "monaco-esm-webpack-typescript",
|
||||
"scripts": {
|
||||
"start": "../node_modules/.bin/webpack-dev-server",
|
||||
"build": "NODE_ENV='production' ../node_modules/.bin/webpack --progress"
|
||||
"start": "node ../node_modules/webpack-dev-server/bin/webpack-dev-server.js",
|
||||
"build": "NODE_ENV='production' node ../node_modules/webpack/bin/webpack.js --progress"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "monaco-esm-webpack-typescript",
|
||||
"scripts": {
|
||||
"start": "../node_modules/.bin/webpack-dev-server",
|
||||
"build": "../node_modules/.bin/webpack --progress"
|
||||
"start": "node ../node_modules/webpack-dev-server/bin/webpack-dev-server.js",
|
||||
"build": "node ../node_modules/webpack/bin/webpack.js --progress"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "browser-esm-webpack",
|
||||
"scripts": {
|
||||
"build": "../node_modules/.bin/webpack --progress"
|
||||
"build": "node ../node_modules/webpack/bin/webpack.js --progress"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue