Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update amaro to 0.3.1 #56785

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Changes from all 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
@@ -4,7 +4,7 @@
"강동윤 <[email protected]>"
],
"description": "wasm module for swc",
"version": "1.10.7",
"version": "1.10.11",
"license": "Apache-2.0",
"repository": {
"type": "git",
2 changes: 1 addition & 1 deletion deps/amaro/dist/strip-loader.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { isSwcError, wrapAndReThrowSwcError } from "./errors.js";
import { transformSync } from "./index.js";
export async function load(url, context, nextLoad) {
const { format } = context;
if (format.endsWith("-typescript")) {
if (format?.endsWith("-typescript")) {
try {
const { source } = await nextLoad(url, {
...context,
2 changes: 1 addition & 1 deletion deps/amaro/dist/transform-loader.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { isSwcError, wrapAndReThrowSwcError } from "./errors.js";
import { transformSync } from "./index.js";
export async function load(url, context, nextLoad) {
const { format } = context;
if (format.endsWith("-typescript")) {
if (format?.endsWith("-typescript")) {
try {
const { source } = await nextLoad(url, {
...context,
2 changes: 1 addition & 1 deletion deps/amaro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amaro",
"version": "0.3.0",
"version": "0.3.1",
"description": "Node.js TypeScript wrapper",
"license": "MIT",
"type": "commonjs",
2 changes: 1 addition & 1 deletion src/amaro_version.h
Original file line number Diff line number Diff line change
@@ -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.3.0"
#define AMARO_VERSION "0.3.1"
#endif // SRC_AMARO_VERSION_H_