@modern-js/utils 1.7.9 → 1.7.12

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @modern-js/utils
2
2
 
3
+ ## 1.7.12
4
+
5
+ ### Patch Changes
6
+
7
+ - dc4676b: chore(webpack): refactor webpack config, split modules
8
+
9
+ ## 1.7.11
10
+
11
+ ### Patch Changes
12
+
13
+ - nothing happen, only bump
14
+
15
+ ## 1.7.10
16
+
17
+ ### Patch Changes
18
+
19
+ - b82869d: export ExecaError type
20
+
3
21
  ## 1.7.9
4
22
 
5
23
  ### Patch Changes
@@ -31,6 +31,8 @@ export type { SignaleOptions } from '../compiled/signale';
31
31
  export type { IOptions as GlobOptions } from '../compiled/glob';
32
32
  export type { GlobbyOptions } from '../compiled/globby';
33
33
  export type { FSWatcher, WatchOptions } from '../compiled/chokidar';
34
+ export type { ExecaError } from '../compiled/execa';
35
+ export type { default as WebpackChain } from '../compiled/webpack-chain';
34
36
  /**
35
37
  * Lazy import some expensive modules that will slow down startup speed.
36
38
  * Notice that `csmith-tools build` can not bundle lazy imported modules.
@@ -175,12 +175,6 @@ export declare const PLUGIN_SCHEMAS: {
175
175
  })[];
176
176
  };
177
177
  }[];
178
- '@modern-js/plugin-ssr': {
179
- target: string;
180
- schema: {
181
- type: string[];
182
- };
183
- }[];
184
178
  '@modern-js/plugin-state': {
185
179
  target: string;
186
180
  schema: {
package/dist/constants.js CHANGED
@@ -220,12 +220,6 @@ exports.PLUGIN_SCHEMAS = {
220
220
  },
221
221
  },
222
222
  ],
223
- '@modern-js/plugin-ssr': [
224
- {
225
- target: 'runtime.ssr',
226
- schema: { type: ['boolean', 'object'] },
227
- },
228
- ],
229
223
  '@modern-js/plugin-state': [
230
224
  {
231
225
  target: 'runtime.state',
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.7.9",
14
+ "version": "1.7.12",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/index.d.ts",
17
17
  "main": "./dist/index.js",
@@ -98,7 +98,7 @@
98
98
  "lodash": "^4.17.21"
99
99
  },
100
100
  "devDependencies": {
101
- "@modern-js/types": "1.5.5",
101
+ "@modern-js/types": "1.5.6",
102
102
  "@scripts/build": "0.0.0",
103
103
  "@scripts/jest-config": "0.0.0",
104
104
  "@types/jest": "^27",