Skip to content

Commit 01ae8ad

Browse files
committed
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.
1 parent f988b81 commit 01ae8ad

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

package-lock.json

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"@babel/preset-env": "^7.9.6",
3636
"@babel/preset-react": "^7.9.4",
3737
"async": "^3.2.0",
38+
"autoprefixer": "9.8.8",
3839
"babel-eslint": "^10.1.0",
3940
"babel-loader": "^8.1.0",
4041
"babel-plugin-react-intl": "^7.5.7",
@@ -57,6 +58,8 @@
5758
"minimist": "^1.2.5",
5859
"mkdirp": "^1.0.4",
5960
"nets": "^3.2.0",
61+
"postcss-import": "12.0.1",
62+
"postcss-simple-vars": "5.0.2",
6063
"react": "16.14.0",
6164
"react-dom": "16.14.0",
6265
"react-intl": "2.9.0",
@@ -65,7 +68,8 @@
6568
"rimraf": "^3.0.2",
6669
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop-v3.29.0",
6770
"uuid": "^8.0.0",
68-
"webpack": "^4.43.0"
71+
"webpack": "^4.43.0",
72+
"webpack-merge": "4.2.2"
6973
},
7074
"resolutions": {
7175
"upath": "^1.0.5"

webpack.makeConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ const merge = require('webpack-merge');
99

1010
// PostCss
1111
const autoprefixer = require('autoprefixer');
12-
const postcssVars = require('postcss-simple-vars');
1312
const postcssImport = require('postcss-import');
13+
const postcssVars = require('postcss-simple-vars');
1414

1515
const isProduction = (process.env.NODE_ENV === 'production');
1616

0 commit comments

Comments
 (0)