@utoo/pack 0.0.1-alpha.54 → 0.0.1-alpha.55

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/binding.d.ts CHANGED
@@ -9,12 +9,6 @@ export declare class ExternalObject<T> {
9
9
  [K: symbol]: T
10
10
  }
11
11
  }
12
- export interface TransformOutput {
13
- code: string
14
- map?: string
15
- output?: string
16
- diagnostics: Array<string>
17
- }
18
12
  export interface NapiEndpointConfig {
19
13
 
20
14
  }
package/cjs/types.d.ts CHANGED
@@ -114,6 +114,7 @@ export interface ConfigComplete {
114
114
  from: string;
115
115
  to: string;
116
116
  }>;
117
+ publicPath?: string;
117
118
  };
118
119
  target?: string;
119
120
  sourceMaps?: boolean;
@@ -141,6 +142,7 @@ export interface ConfigComplete {
141
142
  exclude?: string[];
142
143
  };
143
144
  concatenateModules?: boolean;
145
+ removeUnusedExports?: boolean;
144
146
  };
145
147
  styles?: {
146
148
  less?: {
package/esm/binding.d.ts CHANGED
@@ -9,12 +9,6 @@ export declare class ExternalObject<T> {
9
9
  [K: symbol]: T
10
10
  }
11
11
  }
12
- export interface TransformOutput {
13
- code: string
14
- map?: string
15
- output?: string
16
- diagnostics: Array<string>
17
- }
18
12
  export interface NapiEndpointConfig {
19
13
 
20
14
  }
package/esm/types.d.ts CHANGED
@@ -114,6 +114,7 @@ export interface ConfigComplete {
114
114
  from: string;
115
115
  to: string;
116
116
  }>;
117
+ publicPath?: string;
117
118
  };
118
119
  target?: string;
119
120
  sourceMaps?: boolean;
@@ -141,6 +142,7 @@ export interface ConfigComplete {
141
142
  exclude?: string[];
142
143
  };
143
144
  concatenateModules?: boolean;
145
+ removeUnusedExports?: boolean;
144
146
  };
145
147
  styles?: {
146
148
  less?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack",
3
- "version": "0.0.1-alpha.54",
3
+ "version": "0.0.1-alpha.55",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "exports": {
@@ -85,12 +85,12 @@
85
85
  },
86
86
  "repository": "git@github.com:utooland/utoo.git",
87
87
  "optionalDependencies": {
88
- "@utoo/pack-darwin-arm64": "0.0.1-alpha.54",
89
- "@utoo/pack-darwin-x64": "0.0.1-alpha.54",
90
- "@utoo/pack-linux-arm64-gnu": "0.0.1-alpha.54",
91
- "@utoo/pack-linux-arm64-musl": "0.0.1-alpha.54",
92
- "@utoo/pack-linux-x64-gnu": "0.0.1-alpha.54",
93
- "@utoo/pack-linux-x64-musl": "0.0.1-alpha.54",
94
- "@utoo/pack-win32-x64-msvc": "0.0.1-alpha.54"
88
+ "@utoo/pack-darwin-arm64": "0.0.1-alpha.55",
89
+ "@utoo/pack-darwin-x64": "0.0.1-alpha.55",
90
+ "@utoo/pack-linux-arm64-gnu": "0.0.1-alpha.55",
91
+ "@utoo/pack-linux-arm64-musl": "0.0.1-alpha.55",
92
+ "@utoo/pack-linux-x64-gnu": "0.0.1-alpha.55",
93
+ "@utoo/pack-linux-x64-musl": "0.0.1-alpha.55",
94
+ "@utoo/pack-win32-x64-msvc": "0.0.1-alpha.55"
95
95
  }
96
96
  }