@rspack/core
Advanced tools
Comparing version 1.0.0-alpha.1 to 1.0.0-alpha.2
@@ -1,176 +0,10 @@ | ||
declare type Primitive = string | number | symbol | bigint | boolean | null | undefined; | ||
import * as zod from 'zod'; | ||
declare const ZodParsedType: { | ||
function: "function"; | ||
number: "number"; | ||
string: "string"; | ||
nan: "nan"; | ||
integer: "integer"; | ||
float: "float"; | ||
boolean: "boolean"; | ||
date: "date"; | ||
bigint: "bigint"; | ||
symbol: "symbol"; | ||
undefined: "undefined"; | ||
null: "null"; | ||
array: "array"; | ||
object: "object"; | ||
unknown: "unknown"; | ||
promise: "promise"; | ||
void: "void"; | ||
never: "never"; | ||
map: "map"; | ||
set: "set"; | ||
}; | ||
declare type ZodParsedType = keyof typeof ZodParsedType; | ||
declare type allKeys<T> = T extends any ? keyof T : never; | ||
declare type typeToFlattenedError<T, U = string> = { | ||
formErrors: U[]; | ||
fieldErrors: { | ||
[P in allKeys<T>]?: U[]; | ||
}; | ||
}; | ||
declare const ZodIssueCode: { | ||
invalid_type: "invalid_type"; | ||
invalid_literal: "invalid_literal"; | ||
custom: "custom"; | ||
invalid_union: "invalid_union"; | ||
invalid_union_discriminator: "invalid_union_discriminator"; | ||
invalid_enum_value: "invalid_enum_value"; | ||
unrecognized_keys: "unrecognized_keys"; | ||
invalid_arguments: "invalid_arguments"; | ||
invalid_return_type: "invalid_return_type"; | ||
invalid_date: "invalid_date"; | ||
invalid_string: "invalid_string"; | ||
too_small: "too_small"; | ||
too_big: "too_big"; | ||
invalid_intersection_types: "invalid_intersection_types"; | ||
not_multiple_of: "not_multiple_of"; | ||
not_finite: "not_finite"; | ||
}; | ||
declare type ZodIssueCode = keyof typeof ZodIssueCode; | ||
declare type ZodIssueBase = { | ||
path: (string | number)[]; | ||
message?: string; | ||
}; | ||
interface ZodInvalidTypeIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_type; | ||
expected: ZodParsedType; | ||
received: ZodParsedType; | ||
} | ||
interface ZodInvalidLiteralIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_literal; | ||
expected: unknown; | ||
received: unknown; | ||
} | ||
interface ZodUnrecognizedKeysIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.unrecognized_keys; | ||
keys: string[]; | ||
} | ||
interface ZodInvalidUnionIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_union; | ||
unionErrors: ZodError$1[]; | ||
} | ||
interface ZodInvalidUnionDiscriminatorIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_union_discriminator; | ||
options: Primitive[]; | ||
} | ||
interface ZodInvalidEnumValueIssue extends ZodIssueBase { | ||
received: string | number; | ||
code: typeof ZodIssueCode.invalid_enum_value; | ||
options: (string | number)[]; | ||
} | ||
interface ZodInvalidArgumentsIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_arguments; | ||
argumentsError: ZodError$1; | ||
} | ||
interface ZodInvalidReturnTypeIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_return_type; | ||
returnTypeError: ZodError$1; | ||
} | ||
interface ZodInvalidDateIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_date; | ||
} | ||
declare type StringValidation = "email" | "url" | "emoji" | "uuid" | "regex" | "cuid" | "cuid2" | "ulid" | "datetime" | "ip" | { | ||
includes: string; | ||
position?: number; | ||
} | { | ||
startsWith: string; | ||
} | { | ||
endsWith: string; | ||
}; | ||
interface ZodInvalidStringIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_string; | ||
validation: StringValidation; | ||
} | ||
interface ZodTooSmallIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.too_small; | ||
minimum: number | bigint; | ||
inclusive: boolean; | ||
exact?: boolean; | ||
type: "array" | "string" | "number" | "set" | "date" | "bigint"; | ||
} | ||
interface ZodTooBigIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.too_big; | ||
maximum: number | bigint; | ||
inclusive: boolean; | ||
exact?: boolean; | ||
type: "array" | "string" | "number" | "set" | "date" | "bigint"; | ||
} | ||
interface ZodInvalidIntersectionTypesIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.invalid_intersection_types; | ||
} | ||
interface ZodNotMultipleOfIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.not_multiple_of; | ||
multipleOf: number | bigint; | ||
} | ||
interface ZodNotFiniteIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.not_finite; | ||
} | ||
interface ZodCustomIssue extends ZodIssueBase { | ||
code: typeof ZodIssueCode.custom; | ||
params?: { | ||
[k: string]: any; | ||
}; | ||
} | ||
declare type ZodIssueOptionalMessage = ZodInvalidTypeIssue | ZodInvalidLiteralIssue | ZodUnrecognizedKeysIssue | ZodInvalidUnionIssue | ZodInvalidUnionDiscriminatorIssue | ZodInvalidEnumValueIssue | ZodInvalidArgumentsIssue | ZodInvalidReturnTypeIssue | ZodInvalidDateIssue | ZodInvalidStringIssue | ZodTooSmallIssue | ZodTooBigIssue | ZodInvalidIntersectionTypesIssue | ZodNotMultipleOfIssue | ZodNotFiniteIssue | ZodCustomIssue; | ||
declare type ZodIssue = ZodIssueOptionalMessage & { | ||
fatal?: boolean; | ||
message: string; | ||
}; | ||
declare type recursiveZodFormattedError<T> = T extends [any, ...any[]] ? { | ||
[K in keyof T]?: ZodFormattedError<T[K]>; | ||
} : T extends any[] ? { | ||
[k: number]: ZodFormattedError<T[number]>; | ||
} : T extends object ? { | ||
[K in keyof T]?: ZodFormattedError<T[K]>; | ||
} : unknown; | ||
declare type ZodFormattedError<T, U = string> = { | ||
_errors: U[]; | ||
} & recursiveZodFormattedError<NonNullable<T>>; | ||
declare class ZodError$1<T = any> extends Error { | ||
issues: ZodIssue[]; | ||
get errors(): ZodIssue[]; | ||
constructor(issues: ZodIssue[]); | ||
format(): ZodFormattedError<T>; | ||
format<U>(mapper: (issue: ZodIssue) => U): ZodFormattedError<T, U>; | ||
static create: (issues: ZodIssue[]) => ZodError$1<any>; | ||
toString(): string; | ||
get message(): string; | ||
get isEmpty(): boolean; | ||
addIssue: (sub: ZodIssue) => void; | ||
addIssues: (subs?: ZodIssue[]) => void; | ||
flatten(): typeToFlattenedError<T>; | ||
flatten<U>(mapper?: (issue: ZodIssue) => U): typeToFlattenedError<T, U>; | ||
get formErrors(): typeToFlattenedError<T, string>; | ||
} | ||
declare class ValidationError extends Error { | ||
details: Array<ZodIssue>; | ||
details: Array<zod.ZodIssue>; | ||
name: 'ZodValidationError'; | ||
constructor(message: string, details?: Array<ZodIssue> | undefined); | ||
constructor(message: string, details?: Array<zod.ZodIssue> | undefined); | ||
toString(): string; | ||
} | ||
type ZodError = ZodError$1; | ||
type ZodError = zod.ZodError; | ||
type FromZodErrorOptions = { | ||
@@ -177,0 +11,0 @@ maxIssuesInMessage?: number; |
@@ -5,4 +5,2 @@ export { resolvePluginImport } from "./pluginImport"; | ||
export { resolveReact } from "./react"; | ||
export { resolvePreact } from "./preact"; | ||
export type { PreactOptions } from "./preact"; | ||
export type { SwcLoaderEnvConfig, SwcLoaderEsParserConfig, SwcLoaderJscConfig, SwcLoaderModuleConfig, SwcLoaderOptions, SwcLoaderParserConfig, SwcLoaderTransformConfig, SwcLoaderTsParserConfig } from "./types"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.resolvePreact = exports.resolveReact = exports.resolvePluginImport = void 0; | ||
exports.resolveReact = exports.resolvePluginImport = void 0; | ||
var pluginImport_1 = require("./pluginImport"); | ||
@@ -8,3 +8,1 @@ Object.defineProperty(exports, "resolvePluginImport", { enumerable: true, get: function () { return pluginImport_1.resolvePluginImport; } }); | ||
Object.defineProperty(exports, "resolveReact", { enumerable: true, get: function () { return react_1.resolveReact; } }); | ||
var preact_1 = require("./preact"); | ||
Object.defineProperty(exports, "resolvePreact", { enumerable: true, get: function () { return preact_1.resolvePreact; } }); |
@@ -6,3 +6,2 @@ /** | ||
import type { PluginImportOptions } from "./pluginImport"; | ||
import type { PreactOptions } from "./preact"; | ||
import type { ReactOptions } from "./react"; | ||
@@ -446,4 +445,3 @@ export type JscTarget = "es3" | "es5" | "es2015" | "es2016" | "es2017" | "es2018" | "es2019" | "es2020" | "es2021" | "es2022" | "esnext"; | ||
import?: PluginImportOptions; | ||
preact?: PreactOptions; | ||
}; | ||
}; |
@@ -22,5 +22,2 @@ "use strict"; | ||
} | ||
if (expr.preact) { | ||
expr.preact = (0, builtin_loader_1.resolvePreact)(expr.preact); | ||
} | ||
} | ||
@@ -27,0 +24,0 @@ return o; |
@@ -11,4 +11,27 @@ "use strict"; | ||
*/ | ||
const util = require("util"); | ||
const truncateArgs = require("../logging/truncateArgs"); | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
const util = __importStar(require("util")); | ||
const truncateArgs_1 = require("../logging/truncateArgs"); | ||
module.exports = ({ colors, appendOnly, stream }) => { | ||
@@ -47,3 +70,3 @@ // @ts-expect-error | ||
const args = l | ||
? truncateArgs(currentStatusMessage, l - 1) | ||
? (0, truncateArgs_1.truncateArgs)(currentStatusMessage, l - 1) | ||
: currentStatusMessage; | ||
@@ -50,0 +73,0 @@ const str = args.join(" "); |
{ | ||
"name": "@rspack/core", | ||
"version": "1.0.0-alpha.1", | ||
"version": "1.0.0-alpha.2", | ||
"webpackVersion": "5.75.0", | ||
@@ -82,4 +82,4 @@ "license": "MIT", | ||
"zod-validation-error": "1.3.1", | ||
"@rspack/core": "1.0.0-alpha.1", | ||
"@rspack/plugin-minify": "^1.0.0-alpha.1" | ||
"@rspack/core": "1.0.0-alpha.2", | ||
"@rspack/plugin-minify": "^1.0.0-alpha.2" | ||
}, | ||
@@ -89,4 +89,4 @@ "dependencies": { | ||
"caniuse-lite": "^1.0.30001616", | ||
"@rspack/binding": "1.0.0-alpha.1", | ||
"@rspack/lite-tapable": "1.0.0-alpha.1" | ||
"@rspack/binding": "1.0.0-alpha.2", | ||
"@rspack/lite-tapable": "1.0.0-alpha.2" | ||
}, | ||
@@ -93,0 +93,0 @@ "peerDependencies": { |
Sorry, the diff of this file is too big to display
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
2536242
420
64905
+ Added@rspack/binding@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-darwin-arm64@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-darwin-x64@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-linux-arm64-gnu@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-linux-arm64-musl@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-linux-x64-gnu@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-linux-x64-musl@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-win32-arm64-msvc@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-win32-ia32-msvc@1.0.0-alpha.2(transitive)
+ Added@rspack/binding-win32-x64-msvc@1.0.0-alpha.2(transitive)
+ Added@rspack/lite-tapable@1.0.0-alpha.2(transitive)
- Removed@rspack/binding@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-darwin-arm64@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-darwin-x64@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-linux-arm64-gnu@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-linux-arm64-musl@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-linux-x64-gnu@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-linux-x64-musl@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-win32-arm64-msvc@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-win32-ia32-msvc@1.0.0-alpha.1(transitive)
- Removed@rspack/binding-win32-x64-msvc@1.0.0-alpha.1(transitive)
- Removed@rspack/lite-tapable@1.0.0-alpha.1(transitive)