scratch-gui 4.0.10 → 4.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-gui",
3
- "version": "4.0.10",
3
+ "version": "4.0.12",
4
4
  "description": "Graphical User Interface for creating and running Scratch 3.0 projects",
5
5
  "author": "Massachusetts Institute of Technology",
6
6
  "license": "BSD-3-Clause",
@@ -110,12 +110,13 @@
110
110
  "@babel/plugin-proposal-object-rest-spread": "7.20.7",
111
111
  "@babel/plugin-syntax-dynamic-import": "7.8.3",
112
112
  "@babel/plugin-transform-async-to-generator": "7.24.7",
113
- "@babel/preset-env": "7.25.3",
113
+ "@babel/preset-env": "7.25.4",
114
114
  "@babel/preset-react": "7.24.7",
115
115
  "@commitlint/cli": "17.8.1",
116
116
  "@commitlint/config-conventional": "17.8.1",
117
117
  "babel-core": "7.0.0-bridge.0",
118
118
  "babel-loader": "9.1.3",
119
+ "cheerio": "1.0.0-rc.3",
119
120
  "enzyme": "3.11.0",
120
121
  "enzyme-adapter-react-16": "1.15.8",
121
122
  "eslint": "8.57.0",
@@ -141,7 +142,7 @@
141
142
  "stream-browserify": "3.0.0",
142
143
  "url-loader": "4.1.1",
143
144
  "web-audio-test-api": "0.5.2",
144
- "webpack": "5.93.0",
145
+ "webpack": "5.94.0",
145
146
  "webpack-cli": "5.1.4",
146
147
  "webpack-dev-server": "5.0.4",
147
148
  "yauzl": "2.10.0"
package/webpack.config.js CHANGED
@@ -95,7 +95,7 @@ const distConfig = baseConfig.clone()
95
95
 
96
96
  // build the examples and debugging tools in `build/`
97
97
  const buildConfig = baseConfig.clone()
98
- .enableDevServer(process.env.PORT || 8602)
98
+ .enableDevServer(process.env.PORT || 8601)
99
99
  .merge({
100
100
  entry: {
101
101
  gui: './src/playground/index.jsx',