@rspack/binding
Advanced tools
Comparing version 0.0.0-9a4458fd17-20221109070840 to 0.0.0-cee6624d89-20221111073501
@@ -19,2 +19,7 @@ /* tslint:disable */ | ||
} | ||
export interface RawDecoratorOptions { | ||
legacy: boolean | ||
emitMetadata: boolean | ||
useDefineForClassFields: boolean | ||
} | ||
/** | ||
@@ -81,2 +86,3 @@ * It seems napi not support enum well | ||
react?: RawReactOptions | ||
decorator?: RawDecoratorOptions | ||
} | ||
@@ -275,2 +281,12 @@ /** | ||
} | ||
export interface StatsEntrypointAsset { | ||
name: string | ||
size: number | ||
} | ||
export interface StatsEntrypoint { | ||
name: string | ||
assets: Array<StatsEntrypointAsset> | ||
chunks: Array<string> | ||
assetsSize: number | ||
} | ||
export interface StatsCompilation { | ||
@@ -280,2 +296,3 @@ assets: Array<StatsAsset> | ||
chunks: Array<StatsChunk> | ||
entrypoints: Array<StatsEntrypoint> | ||
errors: Array<StatsError> | ||
@@ -282,0 +299,0 @@ errorsCount: number |
{ | ||
"name": "@rspack/binding", | ||
"version": "0.0.0-9a4458fd17-20221109070840", | ||
"version": "0.0.0-cee6624d89-20221111073501", | ||
"description": "Node binding for rspack", | ||
@@ -24,4 +24,5 @@ "main": "binding.js", | ||
"build": "napi build --platform --js false --dts binding.d.ts --config napirs.rc.json", | ||
"build:release": "napi build --release --platform --js false --dts binding.d.ts --config napirs.rc.json" | ||
"build:release": "napi build --release --platform --js false --dts binding.d.ts --config napirs.rc.json", | ||
"build_linux:release": "napi build --release --platform --js false --dts binding.d.ts --config napirs.rc.json --zig --target x86_64-unknown-linux-gnu --zig-abi-suffix=2.17" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32881420
556