Comparing version 0.14.0-snapshot-18ee4d3-20241107003320 to 0.14.0-snapshot-beec3a9-20241107221705
@@ -237,2 +237,3 @@ type MaybePromise<T> = T | Promise<T> | ||
define?: Array<[string, string]> | ||
dropLabels?: Array<string> | ||
inject?: Array<BindingInjectImportNamed | BindingInjectImportNamespace> | ||
@@ -290,5 +291,7 @@ experimental?: BindingExperimentalOptions | ||
name?: string | ||
assetFileNames?: string | ||
entryFileNames?: string | ((chunk: PreRenderedChunk) => string) | ||
chunkFileNames?: string | ((chunk: PreRenderedChunk) => string) | ||
assetFileNames?: string | ||
cssEntryFileNames?: string | ((chunk: PreRenderedChunk) => string) | ||
cssChunkFileNames?: string | ((chunk: PreRenderedChunk) => string) | ||
banner?: (chunk: RenderedChunk) => MaybePromise<VoidNullable<string>> | ||
@@ -397,2 +400,3 @@ dir?: string | ||
objectGuards?: boolean | ||
sourcemap?: boolean | ||
} | ||
@@ -399,0 +403,0 @@ |
@@ -132,2 +132,3 @@ import type { ObjectSchema } from './types'; | ||
}>, z.ZodLiteral<false>]>>; | ||
dropLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
}, { | ||
@@ -151,5 +152,7 @@ external: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
esModule: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"if-default-prop">, z.ZodBoolean]>>; | ||
assetFileNames: z.ZodOptional<z.ZodString>; | ||
entryFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<import("../..").PreRenderedChunk, z.ZodTypeDef, import("../..").PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
chunkFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<import("../..").PreRenderedChunk, z.ZodTypeDef, import("../..").PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
assetFileNames: z.ZodOptional<z.ZodString>; | ||
cssEntryFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<import("../..").PreRenderedChunk, z.ZodTypeDef, import("../..").PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
cssChunkFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<import("../..").PreRenderedChunk, z.ZodTypeDef, import("../..").PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
minify: z.ZodOptional<z.ZodBoolean>; | ||
@@ -239,2 +242,3 @@ name: z.ZodOptional<z.ZodString>; | ||
watch?: boolean | undefined; | ||
dropLabels?: string[] | undefined; | ||
footer?: string | undefined; | ||
@@ -256,5 +260,7 @@ banner?: string | undefined; | ||
extend?: boolean | undefined; | ||
assetFileNames?: string | undefined; | ||
entryFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
chunkFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
assetFileNames?: string | undefined; | ||
cssEntryFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
cssChunkFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
minify?: boolean | undefined; | ||
@@ -287,2 +293,3 @@ globals?: Record<string, string> | undefined; | ||
watch?: boolean | undefined; | ||
dropLabels?: string[] | undefined; | ||
footer?: string | undefined; | ||
@@ -304,5 +311,7 @@ banner?: string | undefined; | ||
extend?: boolean | undefined; | ||
assetFileNames?: string | undefined; | ||
entryFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
chunkFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
assetFileNames?: string | undefined; | ||
cssEntryFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
cssChunkFileNames?: string | ((args_0: import("../..").PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
minify?: boolean | undefined; | ||
@@ -309,0 +318,0 @@ globals?: Record<string, string> | undefined; |
@@ -128,2 +128,3 @@ import { z } from 'zod'; | ||
}>, z.ZodLiteral<false>]>>; | ||
dropLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
}, "strict", z.ZodTypeAny, { | ||
@@ -181,2 +182,3 @@ treeshake?: boolean | TreeshakingOptions | undefined; | ||
} | undefined; | ||
dropLabels?: string[] | undefined; | ||
}, { | ||
@@ -234,2 +236,3 @@ treeshake?: boolean | TreeshakingOptions | undefined; | ||
} | undefined; | ||
dropLabels?: string[] | undefined; | ||
}>; | ||
@@ -360,2 +363,3 @@ export declare const inputCliOptionsSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{ | ||
}>, z.ZodLiteral<false>]>>; | ||
dropLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
}, { | ||
@@ -384,2 +388,3 @@ external: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
} | undefined; | ||
dropLabels?: string[] | undefined; | ||
}, { | ||
@@ -404,2 +409,3 @@ treeshake?: boolean | undefined; | ||
} | undefined; | ||
dropLabels?: string[] | undefined; | ||
}>; |
@@ -18,5 +18,7 @@ import { z } from 'zod'; | ||
esModule: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"if-default-prop">, z.ZodBoolean]>>; | ||
assetFileNames: z.ZodOptional<z.ZodString>; | ||
entryFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PreRenderedChunk, z.ZodTypeDef, PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
chunkFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PreRenderedChunk, z.ZodTypeDef, PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
assetFileNames: z.ZodOptional<z.ZodString>; | ||
cssEntryFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PreRenderedChunk, z.ZodTypeDef, PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
cssChunkFileNames: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PreRenderedChunk, z.ZodTypeDef, PreRenderedChunk>], z.ZodUnknown>, z.ZodString>]>>; | ||
minify: z.ZodOptional<z.ZodBoolean>; | ||
@@ -103,5 +105,7 @@ name: z.ZodOptional<z.ZodString>; | ||
extend?: boolean | undefined; | ||
assetFileNames?: string | undefined; | ||
entryFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
chunkFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
assetFileNames?: string | undefined; | ||
cssEntryFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
cssChunkFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
minify?: boolean | undefined; | ||
@@ -128,5 +132,7 @@ globals?: Record<string, string> | undefined; | ||
extend?: boolean | undefined; | ||
assetFileNames?: string | undefined; | ||
entryFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
chunkFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
assetFileNames?: string | undefined; | ||
cssEntryFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
cssChunkFileNames?: string | ((args_0: PreRenderedChunk, ...args: unknown[]) => string) | undefined; | ||
minify?: boolean | undefined; | ||
@@ -133,0 +139,0 @@ globals?: Record<string, string> | undefined; |
@@ -85,2 +85,3 @@ import { RolldownPluginRec } from '../plugin'; | ||
watch?: WatchOptions | false; | ||
dropLabels?: string[]; | ||
} | ||
@@ -87,0 +88,0 @@ interface OverwriteInputOptionsForCli { |
@@ -21,5 +21,7 @@ import type { StringOrRegExp } from './utils'; | ||
esModule?: boolean | 'if-default-prop'; | ||
assetFileNames?: string; | ||
entryFileNames?: string | ChunkFileNamesFunction; | ||
chunkFileNames?: string | ChunkFileNamesFunction; | ||
assetFileNames?: string; | ||
cssEntryFileNames?: string | ChunkFileNamesFunction; | ||
cssChunkFileNames?: string | ChunkFileNamesFunction; | ||
minify?: boolean; | ||
@@ -26,0 +28,0 @@ name?: string; |
{ | ||
"name": "rolldown", | ||
"version": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"version": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.", | ||
@@ -47,3 +47,2 @@ "homepage": "https://rolldown.rs/", | ||
}, | ||
"./watcher-worker": "./dist/shared/watcher-worker.js", | ||
"./package.json": "./package.json" | ||
@@ -109,17 +108,17 @@ }, | ||
"@rolldown/testing": "0.0.1", | ||
"rolldown": "0.14.0-snapshot-18ee4d3-20241107003320" | ||
"rolldown": "0.14.0-snapshot-beec3a9-20241107221705" | ||
}, | ||
"optionalDependencies": { | ||
"@rolldown/binding-darwin-x64": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-darwin-arm64": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-linux-arm-gnueabihf": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-freebsd-x64": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-linux-arm64-gnu": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-linux-arm64-musl": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-linux-x64-gnu": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-linux-x64-musl": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-win32-arm64-msvc": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-wasm32-wasi": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-win32-ia32-msvc": "0.14.0-snapshot-18ee4d3-20241107003320", | ||
"@rolldown/binding-win32-x64-msvc": "0.14.0-snapshot-18ee4d3-20241107003320" | ||
"@rolldown/binding-darwin-x64": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-darwin-arm64": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-linux-arm64-gnu": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-linux-arm-gnueabihf": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-linux-arm64-musl": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-linux-x64-gnu": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-freebsd-x64": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-linux-x64-musl": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-wasm32-wasi": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-win32-arm64-msvc": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-win32-ia32-msvc": "0.14.0-snapshot-beec3a9-20241107221705", | ||
"@rolldown/binding-win32-x64-msvc": "0.14.0-snapshot-beec3a9-20241107221705" | ||
}, | ||
@@ -126,0 +125,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
687873
17221
1
107