Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8335312a16 |
@@ -52,8 +52,8 @@
|
|||||||
"react-dom": "0.0.0-experimental-4beb1fd8-20241118",
|
"react-dom": "0.0.0-experimental-4beb1fd8-20241118",
|
||||||
"ts-jest": "^29.1.1",
|
"ts-jest": "^29.1.1",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"zod": "^3.22.4",
|
"zod": "^3.22.4 || ^4.0.0",
|
||||||
"zod-validation-error": "^2.1.0"
|
"zod-validation-error": "^3.0.3 || ^4.0.0"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"./**/@babel/parser": "7.7.4",
|
"./**/@babel/parser": "7.7.4",
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ export const EnvironmentConfigSchema = z.object({
|
|||||||
* A function that, given the name of a module, can optionally return a description
|
* A function that, given the name of a module, can optionally return a description
|
||||||
* of that module's type signature.
|
* of that module's type signature.
|
||||||
*/
|
*/
|
||||||
moduleTypeProvider: z.nullable(z.function().args(z.string())).default(null),
|
moduleTypeProvider: z.nullable(z.any()).default(null),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A list of functions which the application compiles as macros, where
|
* A list of functions which the application compiles as macros, where
|
||||||
@@ -249,7 +249,7 @@ export const EnvironmentConfigSchema = z.object({
|
|||||||
* Allows specifying a function that can populate HIR with type information from
|
* Allows specifying a function that can populate HIR with type information from
|
||||||
* Flow
|
* Flow
|
||||||
*/
|
*/
|
||||||
flowTypeProvider: z.nullable(z.function().args(z.string())).default(null),
|
flowTypeProvider: z.nullable(z.any()).default(null),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enables inference of optional dependency chains. Without this flag
|
* Enables inference of optional dependency chains. Without this flag
|
||||||
@@ -906,6 +906,12 @@ export class Environment {
|
|||||||
if (moduleTypeProvider == null) {
|
if (moduleTypeProvider == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
if (typeof moduleTypeProvider !== 'function') {
|
||||||
|
CompilerError.throwInvalidConfig({
|
||||||
|
reason: `Expected a function for \`moduleTypeProvider\``,
|
||||||
|
loc,
|
||||||
|
});
|
||||||
|
}
|
||||||
const unparsedModuleConfig = moduleTypeProvider(moduleName);
|
const unparsedModuleConfig = moduleTypeProvider(moduleName);
|
||||||
if (unparsedModuleConfig != null) {
|
if (unparsedModuleConfig != null) {
|
||||||
const parsedModuleConfig = TypeSchema.safeParse(unparsedModuleConfig);
|
const parsedModuleConfig = TypeSchema.safeParse(unparsedModuleConfig);
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ describe('parseConfigPragma()', () => {
|
|||||||
validateHooksUsage: 1,
|
validateHooksUsage: 1,
|
||||||
} as any);
|
} as any);
|
||||||
}).toThrowErrorMatchingInlineSnapshot(
|
}).toThrowErrorMatchingInlineSnapshot(
|
||||||
`"Error: Could not validate environment config. Update React Compiler config to fix the error. Validation error: Expected boolean, received number at "validateHooksUsage"."`,
|
`"Error: Could not validate environment config. Update React Compiler config to fix the error. Validation error: Invalid input: expected boolean, received number at "validateHooksUsage"."`,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ describe('parseConfigPragma()', () => {
|
|||||||
],
|
],
|
||||||
} as any);
|
} as any);
|
||||||
}).toThrowErrorMatchingInlineSnapshot(
|
}).toThrowErrorMatchingInlineSnapshot(
|
||||||
`"Error: Could not validate environment config. Update React Compiler config to fix the error. Validation error: autodepsIndex must be > 0 at "inferEffectDependencies[0].autodepsIndex"."`,
|
`"Error: Could not validate environment config. Update React Compiler config to fix the error. Validation error: AutodepsIndex must be > 0 at "inferEffectDependencies[0].autodepsIndex"."`,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,8 @@
|
|||||||
"@babel/core": "^7.24.4",
|
"@babel/core": "^7.24.4",
|
||||||
"@babel/parser": "^7.24.4",
|
"@babel/parser": "^7.24.4",
|
||||||
"hermes-parser": "^0.25.1",
|
"hermes-parser": "^0.25.1",
|
||||||
"zod": "^3.22.4",
|
"zod": "^3.22.4 || ^4.0.0",
|
||||||
"zod-validation-error": "^3.0.3"
|
"zod-validation-error": "^3.0.3 || ^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/preset-env": "^7.22.4",
|
"@babel/preset-env": "^7.22.4",
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
"fast-glob": "^3.3.2",
|
"fast-glob": "^3.3.2",
|
||||||
"ora": "5.4.1",
|
"ora": "5.4.1",
|
||||||
"yargs": "^17.7.2",
|
"yargs": "^17.7.2",
|
||||||
"zod": "^3.22.4",
|
"zod": "^3.22.4 || ^4.0.0",
|
||||||
"zod-validation-error": "^3.0.3"
|
"zod-validation-error": "^3.0.3 || ^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
"html-to-text": "^9.0.5",
|
"html-to-text": "^9.0.5",
|
||||||
"prettier": "^3.3.3",
|
"prettier": "^3.3.3",
|
||||||
"puppeteer": "^24.7.2",
|
"puppeteer": "^24.7.2",
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.22.4 || ^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/html-to-text": "^9.0.4",
|
"@types/html-to-text": "^9.0.4",
|
||||||
|
|||||||
@@ -10486,16 +10486,7 @@ string-length@^4.0.1:
|
|||||||
char-regex "^1.0.2"
|
char-regex "^1.0.2"
|
||||||
strip-ansi "^6.0.0"
|
strip-ansi "^6.0.0"
|
||||||
|
|
||||||
"string-width-cjs@npm:string-width@^4.2.0":
|
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
|
||||||
version "4.2.3"
|
|
||||||
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
|
|
||||||
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
|
||||||
dependencies:
|
|
||||||
emoji-regex "^8.0.0"
|
|
||||||
is-fullwidth-code-point "^3.0.0"
|
|
||||||
strip-ansi "^6.0.1"
|
|
||||||
|
|
||||||
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
|
|
||||||
version "4.2.3"
|
version "4.2.3"
|
||||||
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
|
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
|
||||||
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
||||||
@@ -10568,14 +10559,7 @@ string_decoder@~1.1.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
safe-buffer "~5.1.0"
|
safe-buffer "~5.1.0"
|
||||||
|
|
||||||
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
|
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
||||||
version "6.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
|
|
||||||
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
|
||||||
dependencies:
|
|
||||||
ansi-regex "^5.0.1"
|
|
||||||
|
|
||||||
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
|
||||||
version "6.0.1"
|
version "6.0.1"
|
||||||
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
|
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
|
||||||
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
||||||
@@ -11352,7 +11336,7 @@ workerpool@^6.5.1:
|
|||||||
resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz"
|
resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz"
|
||||||
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
|
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
|
||||||
|
|
||||||
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
|
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
|
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
|
||||||
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
||||||
@@ -11370,15 +11354,6 @@ wrap-ansi@^6.2.0:
|
|||||||
string-width "^4.1.0"
|
string-width "^4.1.0"
|
||||||
strip-ansi "^6.0.0"
|
strip-ansi "^6.0.0"
|
||||||
|
|
||||||
wrap-ansi@^7.0.0:
|
|
||||||
version "7.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
|
|
||||||
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
|
||||||
dependencies:
|
|
||||||
ansi-styles "^4.0.0"
|
|
||||||
string-width "^4.1.0"
|
|
||||||
strip-ansi "^6.0.0"
|
|
||||||
|
|
||||||
wrap-ansi@^8.1.0:
|
wrap-ansi@^8.1.0:
|
||||||
version "8.1.0"
|
version "8.1.0"
|
||||||
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"
|
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"
|
||||||
@@ -11530,17 +11505,17 @@ zod-to-json-schema@^3.24.1:
|
|||||||
resolved "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.5.tgz"
|
resolved "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.5.tgz"
|
||||||
integrity sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==
|
integrity sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==
|
||||||
|
|
||||||
zod-validation-error@^2.1.0:
|
"zod-validation-error@^3.0.3 || ^4.0.0":
|
||||||
version "2.1.0"
|
version "4.0.2"
|
||||||
resolved "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz"
|
resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-4.0.2.tgz#bc605eba49ce0fcd598c127fee1c236be3f22918"
|
||||||
integrity sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==
|
integrity sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==
|
||||||
|
|
||||||
zod-validation-error@^3.0.3:
|
"zod@^3.22.4 || ^4.0.0":
|
||||||
version "3.0.3"
|
version "4.1.11"
|
||||||
resolved "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-3.0.3.tgz"
|
resolved "https://registry.yarnpkg.com/zod/-/zod-4.1.11.tgz#4aab62f76cfd45e6c6166519ba31b2ea019f75f5"
|
||||||
integrity sha512-cETTrcMq3Ze58vhdR0zD37uJm/694I6mAxcf/ei5bl89cC++fBNxrC2z8lkFze/8hVMPwrbtrwXHR2LB50fpHw==
|
integrity sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==
|
||||||
|
|
||||||
zod@^3.22.4, zod@^3.23.8, zod@^3.24.1:
|
zod@^3.23.8, zod@^3.24.1:
|
||||||
version "3.24.3"
|
version "3.24.3"
|
||||||
resolved "https://registry.npmjs.org/zod/-/zod-3.24.3.tgz"
|
resolved "https://registry.npmjs.org/zod/-/zod-3.24.3.tgz"
|
||||||
integrity sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==
|
integrity sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==
|
||||||
|
|||||||
@@ -41,8 +41,8 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.24.4",
|
"@babel/core": "^7.24.4",
|
||||||
"@babel/parser": "^7.24.4",
|
"@babel/parser": "^7.24.4",
|
||||||
"zod": "^3.22.4",
|
"zod": "^3.22.4 || ^4.0.0",
|
||||||
"zod-validation-error": "^3.0.3"
|
"zod-validation-error": "^3.0.3 || ^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/eslint-parser": "^7.11.4",
|
"@babel/eslint-parser": "^7.11.4",
|
||||||
|
|||||||
Reference in New Issue
Block a user