@rsdoctor/rspack-plugin 0.2.4 → 0.2.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.
@@ -0,0 +1,5 @@
1
+ import { type Compiler } from '@rspack/core';
2
+ export declare class BundleTagPlugin {
3
+ apply(compiler: Compiler): void;
4
+ }
5
+ //# sourceMappingURL=bundleTagPlugin.d.ts.map
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdoctor/rspack-plugin",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
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
- "@rsdoctor/core": "0.2.4",
19
- "@rsdoctor/graph": "0.2.4",
20
- "@rsdoctor/utils": "0.2.4",
21
- "@rsdoctor/sdk": "0.2.4"
18
+ "webpack-sources": "^3.2.3",
19
+ "@rsdoctor/core": "0.2.5",
20
+ "@rsdoctor/graph": "0.2.5",
21
+ "@rsdoctor/sdk": "0.2.5",
22
+ "@rsdoctor/utils": "0.2.5",
23
+ "@rsdoctor/types": "0.2.5"
22
24
  },
23
25
  "devDependencies": {
24
- "@rspack/core": "0.5.1",
26
+ "@rspack/core": "0.6.5",
25
27
  "@types/loader-utils": "^2.0.5",
26
28
  "@types/lodash": "^4.17.0",
27
29
  "@types/node": "^16",
28
30
  "@types/tapable": "2.2.2",
31
+ "@types/webpack-sources": "^3.2.3",
29
32
  "tslib": "2.4.1",
30
- "typescript": "^5.2.2",
31
- "@rsdoctor/types": "0.2.4"
33
+ "typescript": "^5.2.2"
32
34
  },
33
35
  "peerDependencies": {
34
- "@rspack/core": "^0.5.1"
36
+ "@rspack/core": "^0.6.5"
35
37
  },
36
38
  "publishConfig": {
37
39
  "access": "public",