@rspack/browser 1.5.1 → 1.5.2
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.mjs
CHANGED
|
@@ -47047,7 +47047,7 @@ const applyExperimentsDefaults = (experiments, { production, development })=>{
|
|
|
47047
47047
|
D(experiments.incremental, "providedExports", true);
|
|
47048
47048
|
D(experiments.incremental, "dependenciesDiagnostics", true);
|
|
47049
47049
|
D(experiments.incremental, "sideEffects", true);
|
|
47050
|
-
D(experiments.incremental, "buildChunkGraph",
|
|
47050
|
+
D(experiments.incremental, "buildChunkGraph", false);
|
|
47051
47051
|
D(experiments.incremental, "moduleIds", true);
|
|
47052
47052
|
D(experiments.incremental, "chunkIds", true);
|
|
47053
47053
|
D(experiments.incremental, "modulesHashes", true);
|
|
@@ -47071,7 +47071,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
|
|
|
47071
47071
|
if ("object" == typeof rspackFuture) {
|
|
47072
47072
|
D(rspackFuture, "bundlerInfo", {});
|
|
47073
47073
|
if ("object" == typeof rspackFuture.bundlerInfo) {
|
|
47074
|
-
D(rspackFuture.bundlerInfo, "version", "1.5.
|
|
47074
|
+
D(rspackFuture.bundlerInfo, "version", "1.5.2");
|
|
47075
47075
|
D(rspackFuture.bundlerInfo, "bundler", "rspack");
|
|
47076
47076
|
D(rspackFuture.bundlerInfo, "force", !library);
|
|
47077
47077
|
}
|
|
@@ -51166,7 +51166,7 @@ class MultiStats {
|
|
|
51166
51166
|
return obj;
|
|
51167
51167
|
});
|
|
51168
51168
|
if (childOptions.version) {
|
|
51169
|
-
obj.rspackVersion = "1.5.
|
|
51169
|
+
obj.rspackVersion = "1.5.2";
|
|
51170
51170
|
obj.version = "5.75.0";
|
|
51171
51171
|
}
|
|
51172
51172
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
|
|
@@ -52476,7 +52476,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
52476
52476
|
},
|
|
52477
52477
|
version: (object)=>{
|
|
52478
52478
|
object.version = "5.75.0";
|
|
52479
|
-
object.rspackVersion = "1.5.
|
|
52479
|
+
object.rspackVersion = "1.5.2";
|
|
52480
52480
|
},
|
|
52481
52481
|
env: (object, _compilation, _context, { _env })=>{
|
|
52482
52482
|
object.env = _env;
|
|
@@ -56271,6 +56271,7 @@ const getRspackOptionsSchema = memoize(()=>{
|
|
|
56271
56271
|
prefix: schemas_string()
|
|
56272
56272
|
}).partial();
|
|
56273
56273
|
const incremental = strictObject({
|
|
56274
|
+
silent: schemas_boolean(),
|
|
56274
56275
|
make: schemas_boolean(),
|
|
56275
56276
|
inferAsyncModules: schemas_boolean(),
|
|
56276
56277
|
providedExports: schemas_boolean(),
|
|
@@ -56935,7 +56936,7 @@ function transformSync(source, options) {
|
|
|
56935
56936
|
const _options = JSON.stringify(options || {});
|
|
56936
56937
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
56937
56938
|
}
|
|
56938
|
-
const exports_rspackVersion = "1.5.
|
|
56939
|
+
const exports_rspackVersion = "1.5.2";
|
|
56939
56940
|
const exports_version = "5.75.0";
|
|
56940
56941
|
const exports_WebpackError = Error;
|
|
56941
56942
|
const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
|
|
Binary file
|
package/dist/schema/config.d.ts
CHANGED
|
@@ -362,6 +362,7 @@ export declare const getRspackOptionsSchema: () => z.ZodObject<{
|
|
|
362
362
|
css: z.ZodOptional<z.ZodBoolean>;
|
|
363
363
|
layers: z.ZodOptional<z.ZodBoolean>;
|
|
364
364
|
incremental: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"safe">]>, z.ZodLiteral<"advance">]>, z.ZodLiteral<"advance-silent">]>, z.ZodObject<{
|
|
365
|
+
silent: z.ZodOptional<z.ZodBoolean>;
|
|
365
366
|
make: z.ZodOptional<z.ZodBoolean>;
|
|
366
367
|
inferAsyncModules: z.ZodOptional<z.ZodBoolean>;
|
|
367
368
|
providedExports: z.ZodOptional<z.ZodBoolean>;
|
package/package.json
CHANGED