Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rspack/core

Package Overview
Dependencies
Maintainers
3
Versions
1104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rspack/core - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

2

dist/builtin-plugin/HtmlRspackPlugin.d.ts

@@ -50,2 +50,4 @@ import { BuiltinPluginName, type JsAfterEmitData, type JsAfterTemplateExecutionData, type JsAlterAssetTagGroupsData, type JsAlterAssetTagsData, type JsBeforeAssetTagGenerationData, type JsBeforeEmitData, type JsHtmlPluginTag } from "@rspack/binding";

excludeChunks?: string[];
/** Allows to control how chunks should be sorted before they are included to the HTML. */
chunksSortMode?: "auto" | "manual";
/** The sri hash algorithm, disabled by default. */

@@ -52,0 +54,0 @@ sri?: "sha256" | "sha384" | "sha512";

@@ -378,2 +378,4 @@ /**

__internal_getInner(): binding.JsCompilation;
get __internal__shutdown(): boolean;
set __internal__shutdown(shutdown: boolean);
seal(): void;

@@ -380,0 +382,0 @@ unseal(): void;

2

dist/config/normalization.d.ts

@@ -69,3 +69,2 @@ /**

chunkLoadTimeout?: number;
cssHeadDataCompression?: boolean;
compareBeforeEmit?: boolean;

@@ -128,3 +127,4 @@ }

profile?: Profile;
amd?: string;
bail?: Bail;
}

@@ -77,2 +77,3 @@ import type { JsCodegenerationResult, JsContextModuleFactoryAfterResolveData, JsContextModuleFactoryBeforeResolveData, JsCreateData, JsFactoryMeta } from "@rspack/binding";

readonly blocks: DependenciesBlock[];
readonly dependencies: Dependency[];
readonly useSourceMap: boolean;

@@ -79,0 +80,0 @@ static __from_binding(binding: JsModule, compilation?: Compilation): Module;

@@ -7,4 +7,4 @@ import type { Compilation } from "./Compilation";

#private;
compilation: Compilation;
constructor(compilation: Compilation);
get compilation(): Compilation;
get hash(): Readonly<string | null>;

@@ -11,0 +11,0 @@ get startTime(): number | undefined;

type CallFn<D> = (args: D[]) => void;
export default class MergeCaller<D> {
private timer;
private callArgs;
private debounceTime;
private callFn;
constructor(fn: CallFn<D>, debounceTime: number);
constructor(fn: CallFn<D>);
private finalCall;

@@ -9,0 +7,0 @@ push(...data: D[]): void;

@@ -1,7 +0,7 @@

import type { JsCompatSource } from "@rspack/binding";
import type { JsCompatSourceOwned } from "@rspack/binding";
import { Source } from "../../compiled/webpack-sources";
declare class JsSource extends Source {
static __from_binding(source: JsCompatSource): Source;
static __to_binding(source: Source): JsCompatSource;
static __from_binding(source: JsCompatSourceOwned): Source;
static __to_binding(source: Source): JsCompatSourceOwned;
}
export { JsSource };
{
"name": "@rspack/core",
"version": "1.1.4",
"version": "1.1.5",
"webpackVersion": "5.75.0",

@@ -64,3 +64,3 @@ "license": "MIT",

"caniuse-lite": "^1.0.30001616",
"@rspack/binding": "1.1.4"
"@rspack/binding": "1.1.5"
},

@@ -67,0 +67,0 @@ "peerDependencies": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc