rollup-plugin-webpack-stats 1.0.4 → 1.0.5
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/dist/index.cjs.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/plugin.d.ts +0 -8
- package/dist/transform.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/plugin.ts"],"sourcesContent":[null],"names":["bundleToWebpackStats"],"mappings":";;;;;;AAKA,MAAM,IAAI,GAAG,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/plugin.ts"],"sourcesContent":[null],"names":["bundleToWebpackStats"],"mappings":";;;;;;AAKA,MAAM,IAAI,GAAG,cAAc,CAAC;AAcf,MAAA,YAAY,GAAG,CAC1B,UAAwC,EAAE,MAC9B;AACZ,IAAA,IAAI,EAAE,IAAI;IACV,cAAc,CAAC,aAAa,EAAE,MAAM,EAAA;AAClC,QAAA,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,aAAa,CAAC,GAAG,OAAO,CAAC;QACnE,MAAM,MAAM,GAAGA,8BAAoB,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;QAE7D,IAAI,CAAC,QAAQ,CAAC;AACZ,YAAA,IAAI,EAAE,OAAO;AACb,YAAA,QAAQ,EAAE,eAAe,CAAC,QAAQ,IAAI,oBAAoB;AAC1D,YAAA,MAAM,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;AAC/B,SAAA,CAAC,CAAC;KACJ;AACF,CAAA;;;;"}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../src/plugin.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;AAKA,MAAM,IAAI,GAAG,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../src/plugin.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;AAKA,MAAM,IAAI,GAAG,cAAc,CAAC;AAcf,MAAA,YAAY,GAAG,CAC1B,UAAwC,EAAE,MAC9B;AACZ,IAAA,IAAI,EAAE,IAAI;IACV,cAAc,CAAC,aAAa,EAAE,MAAM,EAAA;AAClC,QAAA,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,aAAa,CAAC,GAAG,OAAO,CAAC;QACnE,MAAM,MAAM,GAAG,oBAAoB,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;QAE7D,IAAI,CAAC,QAAQ,CAAC;AACZ,YAAA,IAAI,EAAE,OAAO;AACb,YAAA,QAAQ,EAAE,eAAe,CAAC,QAAQ,IAAI,oBAAoB;AAC1D,YAAA,MAAM,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;AAC/B,SAAA,CAAC,CAAC;KACJ;AACF,CAAA;;;;"}
|
package/dist/plugin.d.ts
CHANGED
|
@@ -6,14 +6,6 @@ interface WebpackStatsOptions extends BundleTransformOptions {
|
|
|
6
6
|
* default: webpack-stats.json
|
|
7
7
|
*/
|
|
8
8
|
fileName?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Exclude matching assets
|
|
11
|
-
*/
|
|
12
|
-
excludeAssets?: BundleTransformOptions['excludeAssets'];
|
|
13
|
-
/**
|
|
14
|
-
* Exclude matching modules
|
|
15
|
-
*/
|
|
16
|
-
excludeModules?: BundleTransformOptions['excludeModules'];
|
|
17
9
|
}
|
|
18
10
|
type WebpackStatsOptionsOrBuilder = WebpackStatsOptions | ((outputOptions: OutputOptions) => WebpackStatsOptions);
|
|
19
11
|
export declare const webpackStats: (options?: WebpackStatsOptionsOrBuilder) => Plugin;
|
package/dist/transform.d.ts
CHANGED
|
@@ -37,11 +37,11 @@ export type BundleTransformOptions = {
|
|
|
37
37
|
*/
|
|
38
38
|
moduleOriginalSize?: boolean;
|
|
39
39
|
/**
|
|
40
|
-
* Exclude
|
|
40
|
+
* Exclude matching assets
|
|
41
41
|
*/
|
|
42
42
|
excludeAssets?: ExcludeFilepathOption;
|
|
43
43
|
/**
|
|
44
|
-
* Exclude
|
|
44
|
+
* Exclude matching modules
|
|
45
45
|
*/
|
|
46
46
|
excludeModules?: ExcludeFilepathOption;
|
|
47
47
|
};
|