zephyr-rspack-plugin 1.1.1 → 1.1.2-next.1
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.d.ts +2 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export { withZephyr } from './rspack-plugin/with-zephyr';
|
|
2
|
+
export { ZeRspackPlugin } from './rspack-plugin/ze-rspack-plugin';
|
|
2
3
|
export type { ZephyrRspackPluginOptions } from './types';
|
|
4
|
+
export type { ZephyrRspackInternalPluginOptions } from './rspack-plugin/ze-rspack-plugin';
|
|
3
5
|
export type { ZephyrBuildHooks, DeploymentInfo } from 'zephyr-agent';
|
|
4
6
|
export { onDeploymentDone } from 'zephyr-xpack-internal';
|
|
5
7
|
export { resolveIndexHtml } from 'zephyr-agent';
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolveIndexHtml = exports.onDeploymentDone = exports.withZephyr = void 0;
|
|
3
|
+
exports.resolveIndexHtml = exports.onDeploymentDone = exports.ZeRspackPlugin = exports.withZephyr = void 0;
|
|
4
4
|
var with_zephyr_1 = require("./rspack-plugin/with-zephyr");
|
|
5
5
|
Object.defineProperty(exports, "withZephyr", { enumerable: true, get: function () { return with_zephyr_1.withZephyr; } });
|
|
6
|
+
var ze_rspack_plugin_1 = require("./rspack-plugin/ze-rspack-plugin");
|
|
7
|
+
Object.defineProperty(exports, "ZeRspackPlugin", { enumerable: true, get: function () { return ze_rspack_plugin_1.ZeRspackPlugin; } });
|
|
6
8
|
// hacks
|
|
7
9
|
var zephyr_xpack_internal_1 = require("zephyr-xpack-internal");
|
|
8
10
|
Object.defineProperty(exports, "onDeploymentDone", { enumerable: true, get: function () { return zephyr_xpack_internal_1.onDeploymentDone; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,2DAAyD;AAAhD,yGAAA,UAAU,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,2DAAyD;AAAhD,yGAAA,UAAU,OAAA;AACnB,qEAAkE;AAAzD,kHAAA,cAAc,OAAA;AAKvB,QAAQ;AACR,+DAAyD;AAAhD,yHAAA,gBAAgB,OAAA;AACzB,6CAAgD;AAAvC,gHAAA,gBAAgB,OAAA"}
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zephyr-rspack-plugin",
|
|
3
|
-
"version": "1.1.1",
|
|
3
|
+
"version": "1.1.2-next.1",
|
|
4
4
|
"description": "Repack plugin for Zephyr",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"types": "dist/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.8.1",
|
|
20
|
-
"zephyr-
|
|
21
|
-
"zephyr-
|
|
20
|
+
"zephyr-agent": "1.1.2-next.1",
|
|
21
|
+
"zephyr-xpack-internal": "1.1.2-next.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@rspack/core": "^1.7.0",
|