@rsbuild/core 1.6.5 → 1.6.7
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/compiled/css-loader/index.js +18 -20
- package/compiled/html-rspack-plugin/index.js +15 -15
- package/compiled/html-rspack-plugin/package.json +1 -1
- package/compiled/memfs/index.d.ts +1 -0
- package/compiled/memfs/index.js +135 -121
- package/compiled/memfs/package.json +1 -1
- package/compiled/postcss-loader/index.js +6 -6
- package/compiled/rspack-manifest-plugin/index.js +4 -4
- package/dist/0~open.js +335 -345
- package/dist/0~range-parser.js +3 -6
- package/dist/476.mjs +8 -0
- package/dist/58.js +9800 -0
- package/dist/client/overlay.js +3 -3
- package/dist/ignoreCssLoader.mjs +2 -3
- package/dist/index.cjs +51 -70
- package/dist/index.js +1 -9899
- package/dist/rslib-runtime.js +44 -0
- package/dist/transformLoader.mjs +3 -9
- package/dist/transformRawLoader.mjs +4 -9
- package/dist-types/hooks.d.ts +2 -2
- package/dist-types/types/config.d.ts +25 -4
- package/package.json +7 -7
- /package/dist/{index.js.LICENSE.txt → 58.js.LICENSE.txt} +0 -0
package/dist/0~range-parser.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
/*! For license information please see 0~range-parser.js.LICENSE.txt */
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
"603"
|
|
5
|
-
];
|
|
6
|
-
export const __webpack_modules__ = {
|
|
2
|
+
import { __webpack_require__ } from "./rslib-runtime.js";
|
|
3
|
+
__webpack_require__.add({
|
|
7
4
|
"../../node_modules/.pnpm/range-parser@1.2.1/node_modules/range-parser/index.js": function(module) {
|
|
8
5
|
function combineRanges(ranges) {
|
|
9
6
|
for(var ordered = ranges.map(mapWithIndex).sort(sortByRangeStart), j = 0, i = 1; i < ordered.length; i++){
|
|
@@ -49,4 +46,4 @@ export const __webpack_modules__ = {
|
|
|
49
46
|
return ranges.length < 1 ? -1 : options && options.combine ? combineRanges(ranges) : ranges;
|
|
50
47
|
};
|
|
51
48
|
}
|
|
52
|
-
};
|
|
49
|
+
});
|
package/dist/476.mjs
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { createRequire } from "node:module";
|
|
2
|
+
import { dirname, join } from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
|
+
let constants_dirname = dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
process.platform, join(constants_dirname), join(constants_dirname, '../static');
|
|
6
|
+
let COMPILED_PATH = join(constants_dirname, '../compiled'), vendors_require = createRequire(import.meta.url), requireCompiledPackage = (name)=>vendors_require(`${COMPILED_PATH}/${name}/index.js`);
|
|
7
|
+
requireCompiledPackage('picocolors');
|
|
8
|
+
export { requireCompiledPackage };
|