@rspack/plugin-react-refresh 1.3.0 → 1.3.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 +1 -2
- package/dist/index.js +1 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.ReactRefreshRspackPlugin = void 0;
|
7
5
|
const node_path_1 = __importDefault(require("node:path"));
|
8
6
|
const options_1 = require("./options");
|
9
7
|
const paths_1 = require("./paths");
|
@@ -103,7 +101,6 @@ class ReactRefreshRspackPlugin {
|
|
103
101
|
});
|
104
102
|
}
|
105
103
|
}
|
106
|
-
exports.ReactRefreshRspackPlugin = ReactRefreshRspackPlugin;
|
107
104
|
ReactRefreshRspackPlugin.deprecated_runtimePaths = paths_1.runtimePaths;
|
108
105
|
ReactRefreshRspackPlugin.loader = 'builtin:react-refresh-loader';
|
109
|
-
exports
|
106
|
+
module.exports = ReactRefreshRspackPlugin;
|
package/package.json
CHANGED