Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deps/amaro/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deps/amaro/dist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"강동윤 <[email protected]>"
],
"description": "wasm module for swc",
"version": "1.10.3",
"version": "1.10.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
7 changes: 5 additions & 2 deletions deps/amaro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amaro",
"version": "0.2.1",
"version": "0.2.2",
"description": "Node.js TypeScript wrapper",
"license": "MIT",
"type": "commonjs",
Expand Down Expand Up @@ -41,7 +41,10 @@
"./strip": "./dist/register-strip.mjs",
"./transform": "./dist/register-transform.mjs"
},
"files": ["dist", "LICENSE.md"],
"files": [
"dist",
"LICENSE.md"
],
"engines": {
"node": ">=22"
}
Expand Down
2 changes: 1 addition & 1 deletion src/amaro_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
// Refer to tools/dep_updaters/update-amaro.sh
#ifndef SRC_AMARO_VERSION_H_
#define SRC_AMARO_VERSION_H_
#define AMARO_VERSION "0.2.1"
#define AMARO_VERSION "0.2.2"
#endif // SRC_AMARO_VERSION_H_
3 changes: 0 additions & 3 deletions test/fixtures/eval/eval_messages.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ with(this){__filename}
: ^^^^
`----

Caused by:
failed to parse

SyntaxError: Strict mode code may not include a with statement

Node.js *
Expand Down
3 changes: 0 additions & 3 deletions test/fixtures/eval/eval_typescript.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ function foo(){ await Promise.resolve(1)};
: ^^^^^^^
`----

Caused by:
failed to parse

SyntaxError: await is only valid in async functions and the top level bodies of modules

Node.js *
3 changes: 0 additions & 3 deletions test/fixtures/eval/stdin_messages.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ with(this){__filename}
: ^^^^
`----

Caused by:
failed to parse

SyntaxError: Strict mode code may not include a with statement

Node.js *
Expand Down
6 changes: 0 additions & 6 deletions test/fixtures/eval/stdin_typescript.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ function foo(){ await Promise.resolve(1)};
: ^^^^^^^
`----

Caused by:
failed to parse

SyntaxError: await is only valid in async functions and the top level bodies of modules

Node.js *
Expand All @@ -94,9 +91,6 @@ function foo(){ await Promise.resolve(1)};
: ^^^^^^^
`----

Caused by:
failed to parse

SyntaxError: await is only valid in async functions and the top level bodies of modules

Node.js *
Expand Down
Loading