@utoo/pack-shared 1.2.8-alpha.0 → 1.2.8-alpha.2

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
@@ -151,6 +151,10 @@ export interface ConfigComplete {
151
151
  images?: {
152
152
  inlineLimit?: number;
153
153
  };
154
+ react?: {
155
+ runtime?: "automatic" | "classic";
156
+ importSource?: string;
157
+ };
154
158
  stats?: boolean;
155
159
  persistentCaching?: boolean;
156
160
  nodePolyfill?: boolean;
@@ -173,6 +177,9 @@ export interface HtmlConfig {
173
177
  meta?: Record<string, string | {
174
178
  [key: string]: string;
175
179
  }>;
180
+ output?: {
181
+ path?: string;
182
+ };
176
183
  }
177
184
  export interface StyledComponentsConfig {
178
185
  /**
package/esm/config.d.ts CHANGED
@@ -151,6 +151,10 @@ export interface ConfigComplete {
151
151
  images?: {
152
152
  inlineLimit?: number;
153
153
  };
154
+ react?: {
155
+ runtime?: "automatic" | "classic";
156
+ importSource?: string;
157
+ };
154
158
  stats?: boolean;
155
159
  persistentCaching?: boolean;
156
160
  nodePolyfill?: boolean;
@@ -173,6 +177,9 @@ export interface HtmlConfig {
173
177
  meta?: Record<string, string | {
174
178
  [key: string]: string;
175
179
  }>;
180
+ output?: {
181
+ path?: string;
182
+ };
176
183
  }
177
184
  export interface StyledComponentsConfig {
178
185
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack-shared",
3
- "version": "1.2.8-alpha.0",
3
+ "version": "1.2.8-alpha.2",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "types": "esm/index.d.ts",