@utoo/pack-shared 1.3.2 → 1.3.3

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/cjs/config.d.ts CHANGED
@@ -18,10 +18,6 @@ export type RustifiedEnv = {
18
18
  name: string;
19
19
  value: string;
20
20
  }[];
21
- export interface ExperimentalConfig {
22
- swcPlugins?: [string, any][];
23
- reactCompiler?: boolean | any;
24
- }
25
21
  export type JSONValue = string | number | boolean | JSONValue[] | {
26
22
  [k: string]: JSONValue;
27
23
  };
@@ -186,12 +182,11 @@ export interface ConfigComplete {
186
182
  importSource?: string;
187
183
  };
188
184
  stats?: boolean;
185
+ swcPlugins?: [string, any][];
189
186
  pluginRuntimeStrategy?: "workerThreads" | "childProcesses";
190
187
  persistentCaching?: boolean;
191
188
  nodePolyfill?: boolean;
192
189
  devServer?: DevServerConfig;
193
- cacheHandler?: string;
194
- experimental?: ExperimentalConfig;
195
190
  }
196
191
  export interface HtmlConfig {
197
192
  template?: string;
package/esm/config.d.ts CHANGED
@@ -18,10 +18,6 @@ export type RustifiedEnv = {
18
18
  name: string;
19
19
  value: string;
20
20
  }[];
21
- export interface ExperimentalConfig {
22
- swcPlugins?: [string, any][];
23
- reactCompiler?: boolean | any;
24
- }
25
21
  export type JSONValue = string | number | boolean | JSONValue[] | {
26
22
  [k: string]: JSONValue;
27
23
  };
@@ -186,12 +182,11 @@ export interface ConfigComplete {
186
182
  importSource?: string;
187
183
  };
188
184
  stats?: boolean;
185
+ swcPlugins?: [string, any][];
189
186
  pluginRuntimeStrategy?: "workerThreads" | "childProcesses";
190
187
  persistentCaching?: boolean;
191
188
  nodePolyfill?: boolean;
192
189
  devServer?: DevServerConfig;
193
- cacheHandler?: string;
194
- experimental?: ExperimentalConfig;
195
190
  }
196
191
  export interface HtmlConfig {
197
192
  template?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack-shared",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "types": "esm/index.d.ts",