mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-22 21:52:31 -05:00
chore(deps): add missing dependencies used in webpack.makeConfig.js
This was meant as a step toward supporting "npm ln scratch-gui" but it turns out that's pretty far away. Still, it's better to be honest about the dependencies.
This commit is contained in:
parent
f988b813b5
commit
01ae8ad2e8
3 changed files with 11 additions and 3 deletions
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -19,6 +19,7 @@
|
|||
"@babel/preset-env": "^7.9.6",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"async": "^3.2.0",
|
||||
"autoprefixer": "9.8.8",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"babel-loader": "^8.1.0",
|
||||
"babel-plugin-react-intl": "^7.5.7",
|
||||
|
@ -41,6 +42,8 @@
|
|||
"minimist": "^1.2.5",
|
||||
"mkdirp": "^1.0.4",
|
||||
"nets": "^3.2.0",
|
||||
"postcss-import": "12.0.1",
|
||||
"postcss-simple-vars": "5.0.2",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
"react-intl": "2.9.0",
|
||||
|
@ -49,7 +52,8 @@
|
|||
"rimraf": "^3.0.2",
|
||||
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop-v3.29.0",
|
||||
"uuid": "^8.0.0",
|
||||
"webpack": "^4.43.0"
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-merge": "4.2.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@ampproject/remapping": {
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
"@babel/preset-env": "^7.9.6",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"async": "^3.2.0",
|
||||
"autoprefixer": "9.8.8",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"babel-loader": "^8.1.0",
|
||||
"babel-plugin-react-intl": "^7.5.7",
|
||||
|
@ -57,6 +58,8 @@
|
|||
"minimist": "^1.2.5",
|
||||
"mkdirp": "^1.0.4",
|
||||
"nets": "^3.2.0",
|
||||
"postcss-import": "12.0.1",
|
||||
"postcss-simple-vars": "5.0.2",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
"react-intl": "2.9.0",
|
||||
|
@ -65,7 +68,8 @@
|
|||
"rimraf": "^3.0.2",
|
||||
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop-v3.29.0",
|
||||
"uuid": "^8.0.0",
|
||||
"webpack": "^4.43.0"
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-merge": "4.2.2"
|
||||
},
|
||||
"resolutions": {
|
||||
"upath": "^1.0.5"
|
||||
|
|
|
@ -9,8 +9,8 @@ const merge = require('webpack-merge');
|
|||
|
||||
// PostCss
|
||||
const autoprefixer = require('autoprefixer');
|
||||
const postcssVars = require('postcss-simple-vars');
|
||||
const postcssImport = require('postcss-import');
|
||||
const postcssVars = require('postcss-simple-vars');
|
||||
|
||||
const isProduction = (process.env.NODE_ENV === 'production');
|
||||
|
||||
|
|
Loading…
Reference in a new issue