@rsdoctor/rspack-plugin 0.2.3 → 0.2.5-beta.0
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/bundleTagPlugin.d.ts +5 -0
- package/dist/bundleTagPlugin.d.ts.map +1 -0
- package/dist/bundleTagPlugin.js +65 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/multiple.d.ts +1 -0
- package/dist/multiple.d.ts.map +1 -0
- package/dist/plugin.d.ts +3 -2
- package/dist/plugin.d.ts.map +1 -0
- package/dist/plugin.js +4 -2
- package/dist/probeLoader.d.ts +1 -0
- package/dist/probeLoader.d.ts.map +1 -0
- package/dist/probeLoaderPlugin.d.ts +1 -0
- package/dist/probeLoaderPlugin.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +10 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundleTagPlugin.d.ts","sourceRoot":"","sources":["../src/bundleTagPlugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,cAAc,CAAC;AAI7C,qBAAa,eAAe;IAC1B,KAAK,CAAC,QAAQ,EAAE,QAAQ;CAoCzB"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var bundleTagPlugin_exports = {};
|
|
20
|
+
__export(bundleTagPlugin_exports, {
|
|
21
|
+
BundleTagPlugin: () => BundleTagPlugin
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(bundleTagPlugin_exports);
|
|
24
|
+
var import_path = require("path");
|
|
25
|
+
var import_webpack_sources = require("webpack-sources");
|
|
26
|
+
class BundleTagPlugin {
|
|
27
|
+
apply(compiler) {
|
|
28
|
+
compiler.hooks.compilation.tap("RsdoctorTagBannerPlugin", (compilation) => {
|
|
29
|
+
compilation.hooks.processAssets.tapPromise(
|
|
30
|
+
{
|
|
31
|
+
name: "RsdoctorTagBannerPlugin",
|
|
32
|
+
stage: -2e3
|
|
33
|
+
},
|
|
34
|
+
async () => {
|
|
35
|
+
const chunks = compilation.chunks;
|
|
36
|
+
for (let chunk of chunks) {
|
|
37
|
+
for (const file of chunk.files) {
|
|
38
|
+
if (!file || (0, import_path.extname)(file) !== ".js") {
|
|
39
|
+
continue;
|
|
40
|
+
}
|
|
41
|
+
compilation.updateAsset(
|
|
42
|
+
file,
|
|
43
|
+
(old) => {
|
|
44
|
+
const concatSource = new import_webpack_sources.ConcatSource();
|
|
45
|
+
let header = "\n console.log('RSDOCTOR_START::');\n";
|
|
46
|
+
let footer = "\n console.log('RSDOCTOR_END::');\n";
|
|
47
|
+
concatSource.add(header);
|
|
48
|
+
concatSource.add(old);
|
|
49
|
+
concatSource.add(footer);
|
|
50
|
+
return concatSource;
|
|
51
|
+
},
|
|
52
|
+
() => {
|
|
53
|
+
}
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
63
|
+
0 && (module.exports = {
|
|
64
|
+
BundleTagPlugin
|
|
65
|
+
});
|
package/dist/constants.d.ts
CHANGED
|
@@ -5,3 +5,4 @@ export declare const pluginTapPreOptions: Tap;
|
|
|
5
5
|
export declare const internalPluginTapPreOptions: (namespace: string) => Tap;
|
|
6
6
|
export declare const internalPluginTapPostOptions: (namespace: string) => Tap;
|
|
7
7
|
export declare const pkg: any;
|
|
8
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,SAAS,CAAC;AAEnC,eAAO,MAAM,aAAa,yBAAyB,CAAC;AAEpD,eAAO,MAAM,oBAAoB,EAAE,GAGlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,GAGjC,CAAC;AAEF,eAAO,MAAM,2BAA2B,cAAe,MAAM,KAAG,GAG9D,CAAC;AAEH,eAAO,MAAM,4BAA4B,cAAe,MAAM,KAAG,GAG/D,CAAC;AAEH,eAAO,MAAM,GAAG,KAA6B,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC"}
|
package/dist/multiple.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multiple.d.ts","sourceRoot":"","sources":["../src/multiple.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gBAAgB,CAAC;AAEpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAIhD,qBAAa,4BAA4B,CACvC,KAAK,SAAS,MAAM,CAAC,cAAc,EAAE,CACrC,SAAQ,oBAAoB,CAAC,KAAK,CAAC;IAEnC,OAAO,CAAC,UAAU,CAAwB;gBAE9B,OAAO,GAAE,6BAA6B,CAAC,KAAK,CAAM;CAuB/D"}
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Compiler } from '@rspack/core';
|
|
1
|
+
import type { Compiler, Stats } from '@rspack/core';
|
|
2
2
|
import { ModuleGraph } from '@rsdoctor/graph';
|
|
3
3
|
import { RsdoctorSlaveSDK, RsdoctorWebpackSDK } from '@rsdoctor/sdk';
|
|
4
4
|
import type { RsdoctorPluginInstance, RsdoctorPluginOptionsNormalized, RsdoctorRspackPluginOptions } from '@rsdoctor/core';
|
|
@@ -20,6 +20,7 @@ export declare class RsdoctorRspackPlugin<Rules extends Linter.ExtendRuleData[]>
|
|
|
20
20
|
* @memberof RsdoctorWebpackPlugin
|
|
21
21
|
*/
|
|
22
22
|
ensureModulesChunksGraphApplied(compiler: Compiler): void;
|
|
23
|
-
done: (compiler: Compiler) => Promise<void>;
|
|
23
|
+
done: (compiler: Compiler, stats: Stats) => Promise<void>;
|
|
24
24
|
getRspackConfig(compiler: Compiler, version: string): void;
|
|
25
25
|
}
|
|
26
|
+
//# sourceMappingURL=plugin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAA8B,KAAK,EAAE,MAAM,cAAc,CAAC;AAChF,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAarE,OAAO,KAAK,EACV,sBAAsB,EACtB,+BAA+B,EAC/B,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAEL,MAAM,EAIP,MAAM,iBAAiB,CAAC;AAQzB,qBAAa,oBAAoB,CAAC,KAAK,SAAS,MAAM,CAAC,cAAc,EAAE,CACrE,YAAW,sBAAsB,CAAC,QAAQ,EAAE,KAAK,CAAC;IAElD,SAAgB,IAAI,0BAAiB;IAErC,SAAgB,GAAG,EAAE,kBAAkB,GAAG,gBAAgB,CAAC;IAEpD,cAAc,EAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEzC,SAAS,CAAC,eAAe,UAAS;IAE3B,YAAY,EAAE,WAAW,CAAC;IAE1B,OAAO,EAAE,+BAA+B,CAAC,KAAK,CAAC,CAAC;IAEhD,eAAe,EAAE,OAAO,CAAC;gBAEpB,OAAO,CAAC,EAAE,2BAA2B,CAAC,KAAK,CAAC;IAgBxD,KAAK,CAAC,QAAQ,EAAE,OAAO,GAAG,OAAO;IA+CjC;;;;;OAKG;IACI,+BAA+B,CAAC,QAAQ,EAAE,QAAQ;IAIlD,IAAI,aAAoB,QAAQ,SAAS,KAAK,KAAG,QAAQ,IAAI,CAAC,CAwCnE;IAEK,eAAe,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM;CAwB3D"}
|
package/dist/plugin.js
CHANGED
|
@@ -40,12 +40,13 @@ var import_constants = require("./constants");
|
|
|
40
40
|
var import_lodash = require("lodash");
|
|
41
41
|
var import_probeLoaderPlugin = require("./probeLoaderPlugin");
|
|
42
42
|
var import_common = require("@rsdoctor/utils/common");
|
|
43
|
+
var import_bundleTagPlugin = require("./bundleTagPlugin");
|
|
43
44
|
class RsdoctorRspackPlugin {
|
|
44
45
|
constructor(options) {
|
|
45
46
|
this.name = import_constants.pluginTapName;
|
|
46
47
|
this.browserIsOpened = false;
|
|
47
|
-
this.done = async (compiler) => {
|
|
48
|
-
const json =
|
|
48
|
+
this.done = async (compiler, stats) => {
|
|
49
|
+
const json = stats.toJson({
|
|
49
50
|
all: false,
|
|
50
51
|
version: true,
|
|
51
52
|
chunks: true,
|
|
@@ -115,6 +116,7 @@ class RsdoctorRspackPlugin {
|
|
|
115
116
|
}
|
|
116
117
|
if (this.options.features.bundle) {
|
|
117
118
|
new import_plugins.InternalBundlePlugin(this).apply(compiler);
|
|
119
|
+
new import_bundleTagPlugin.BundleTagPlugin().apply(compiler);
|
|
118
120
|
}
|
|
119
121
|
new import_plugins.InternalRulesPlugin(this).apply(compiler);
|
|
120
122
|
new import_plugins.InternalErrorReporterPlugin(this).apply(compiler);
|
package/dist/probeLoader.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ import { Plugin } from '@rsdoctor/types';
|
|
|
2
2
|
import type { LoaderDefinitionFunction } from '@rspack/core';
|
|
3
3
|
declare const loaderModule: Plugin.LoaderDefinition<Parameters<LoaderDefinitionFunction>, {}>;
|
|
4
4
|
export default loaderModule;
|
|
5
|
+
//# sourceMappingURL=probeLoader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"probeLoader.d.ts","sourceRoot":"","sources":["../src/probeLoader.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAO,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAK7D,QAAA,MAAM,YAAY,EAAE,MAAM,CAAC,gBAAgB,CACzC,UAAU,CAAC,wBAAwB,CAAC,EACpC,EAAE,CAwCH,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"probeLoaderPlugin.d.ts","sourceRoot":"","sources":["../src/probeLoaderPlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAS7C,qBAAa,iBAAiB;IAC5B,KAAK,CAAC,QAAQ,EAAE,QAAQ;IAoBxB,OAAO,CAAC,cAAc;CA0CvB"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,sBAAsB,CAAC;AAEzE,MAAM,WAAW,2BAA2B;IAC1C;;;OAGG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,4BAA4B,CAAC,EAAE,CAAC,CAAC,UAAU,CAAC,CAAC;IACxD;;;OAGG;IACH,wBAAwB,CAAC,EAAE,4BAA4B,CACrD;KAAE,CACH,CAAC,0BAA0B,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,4BACf,SAAQ,oBAAoB;IAC5B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdoctor/rspack-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5-beta.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/web-infra-dev/rsdoctor",
|
|
@@ -15,23 +15,25 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"loader-utils": "^2.0.4",
|
|
17
17
|
"lodash": "^4.17.21",
|
|
18
|
-
"
|
|
19
|
-
"@rsdoctor/
|
|
20
|
-
"@rsdoctor/
|
|
21
|
-
"@rsdoctor/sdk": "0.2.
|
|
18
|
+
"webpack-sources": "^3.2.3",
|
|
19
|
+
"@rsdoctor/core": "0.2.5-beta.0",
|
|
20
|
+
"@rsdoctor/graph": "0.2.5-beta.0",
|
|
21
|
+
"@rsdoctor/sdk": "0.2.5-beta.0",
|
|
22
|
+
"@rsdoctor/utils": "0.2.5-beta.0"
|
|
22
23
|
},
|
|
23
24
|
"devDependencies": {
|
|
24
|
-
"@rspack/core": "0.5
|
|
25
|
+
"@rspack/core": "0.6.5",
|
|
25
26
|
"@types/loader-utils": "^2.0.5",
|
|
26
27
|
"@types/lodash": "^4.17.0",
|
|
27
28
|
"@types/node": "^16",
|
|
28
29
|
"@types/tapable": "2.2.2",
|
|
30
|
+
"@types/webpack-sources": "^3.2.3",
|
|
29
31
|
"tslib": "2.4.1",
|
|
30
32
|
"typescript": "^5.2.2",
|
|
31
|
-
"@rsdoctor/types": "0.2.
|
|
33
|
+
"@rsdoctor/types": "0.2.5-beta.0"
|
|
32
34
|
},
|
|
33
35
|
"peerDependencies": {
|
|
34
|
-
"@rspack/core": "^0.5
|
|
36
|
+
"@rspack/core": "^0.6.5"
|
|
35
37
|
},
|
|
36
38
|
"publishConfig": {
|
|
37
39
|
"access": "public",
|