deps: update amaro to 1.1.1

PR-URL: https://github.com/nodejs/node/pull/59141
Fixes: https://github.com/nodejs/node/issues/59102
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
This commit is contained in:
Node.js GitHub Bot 2025-07-23 08:59:19 -04:00 committed by GitHub
parent 5fe16bc6bf
commit 5e70d836d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 94 additions and 16 deletions

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@
"강동윤 <kdy1997.dev@gmail.com>" "강동윤 <kdy1997.dev@gmail.com>"
], ],
"description": "wasm module for swc", "description": "wasm module for swc",
"version": "1.12.1", "version": "1.13.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -43,6 +43,20 @@ interface TransformConfig {
* Defaults to false. * Defaults to false.
*/ */
tsEnumIsMutable?: boolean; tsEnumIsMutable?: boolean;
/**
* Available only on nightly builds.
*/
jsx?: JsxConfig;
}
interface JsxConfig {
/**
* How to transform JSX.
*
* @default "react-jsx"
*/
transform?: "react-jsx" | "react-jsxdev";
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "amaro", "name": "amaro",
"version": "1.1.0", "version": "1.1.1",
"description": "Node.js TypeScript wrapper", "description": "Node.js TypeScript wrapper",
"license": "MIT", "license": "MIT",
"type": "commonjs", "type": "commonjs",

View file

@ -2,5 +2,5 @@
// Refer to tools/dep_updaters/update-amaro.sh // Refer to tools/dep_updaters/update-amaro.sh
#ifndef SRC_AMARO_VERSION_H_ #ifndef SRC_AMARO_VERSION_H_
#define SRC_AMARO_VERSION_H_ #define SRC_AMARO_VERSION_H_
#define AMARO_VERSION "1.1.0" #define AMARO_VERSION "1.1.1"
#endif // SRC_AMARO_VERSION_H_ #endif // SRC_AMARO_VERSION_H_