@modern-js/plugin-garfish 1.4.13-alpha.1 → 1.4.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @modern-js/plugin-garfish
2
2
 
3
+ ## 1.4.13
4
+
5
+ ### Patch Changes
6
+
7
+ - a37960018: fix: default config \_SERVER_DATA to insulationVariable and set disableCssExtract to be true
8
+ - Updated dependencies [b8cfc42cd]
9
+ - Updated dependencies [804a5bb8a]
10
+ - @modern-js/utils@1.7.4
11
+ - @modern-js/plugin-router@1.2.14
12
+
3
13
  ## 1.4.11
4
14
 
5
15
  ### Patch Changes
@@ -150,8 +150,7 @@ export default (({
150
150
 
151
151
  if (!enableHtmlEntry) {
152
152
  chain.output.filename('index.js');
153
- chain.plugins.delete('html-main'); // chain.plugins.delete('mini-css-extract');
154
-
153
+ chain.plugins.delete('html-main');
155
154
  chain.optimization.runtimeChunk(false);
156
155
  chain.optimization.splitChunks({
157
156
  chunks: 'async'
@@ -167,8 +167,7 @@ var _default = ({
167
167
 
168
168
  if (!enableHtmlEntry) {
169
169
  chain.output.filename('index.js');
170
- chain.plugins.delete('html-main'); // chain.plugins.delete('mini-css-extract');
171
-
170
+ chain.plugins.delete('html-main');
172
171
  chain.optimization.runtimeChunk(false);
173
172
  chain.optimization.splitChunks({
174
173
  chunks: 'async'
@@ -162,8 +162,7 @@ export default (function () {
162
162
 
163
163
  if (!_enableHtmlEntry) {
164
164
  chain.output.filename('index.js');
165
- chain.plugins["delete"]('html-main'); // chain.plugins.delete('mini-css-extract');
166
-
165
+ chain.plugins["delete"]('html-main');
167
166
  chain.optimization.runtimeChunk(false);
168
167
  chain.optimization.splitChunks({
169
168
  chunks: 'async'
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.4.13-alpha.1",
14
+ "version": "1.4.13",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/runtime/index.d.ts",
17
17
  "typesVersions": {
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@babel/runtime": "^7",
53
- "@modern-js/utils": "^1.7.3",
53
+ "@modern-js/utils": "^1.7.4",
54
54
  "@types/debug": "^4.1.7",
55
55
  "@types/react-loadable": "^5.5.6",
56
56
  "debug": "^4.3.2",
@@ -59,7 +59,7 @@
59
59
  "react-loadable": "^5.5.0"
60
60
  },
61
61
  "devDependencies": {
62
- "@modern-js/core": "1.10.2",
62
+ "@modern-js/core": "1.10.3",
63
63
  "@modern-js/plugin-router": "1.2.14",
64
64
  "@modern-js/runtime-core": "1.4.6",
65
65
  "@modern-js/types": "1.5.3",
@@ -111,7 +111,8 @@
111
111
  "files": [
112
112
  "src/**/*",
113
113
  "tsconfig.json",
114
- "package.json"
114
+ "package.json",
115
+ "tests/**/*"
115
116
  ],
116
117
  "output": []
117
118
  }