Skip to content

Commit

Permalink
deps: update amaro to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito authored and github-actions[bot] committed Jan 27, 2025
1 parent 50d405a commit e02c956
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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.7",
"version": "1.10.11",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion deps/amaro/dist/strip-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion deps/amaro/dist/transform-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
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",
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.3.0"
#define AMARO_VERSION "0.3.1"
#endif // SRC_AMARO_VERSION_H_

0 comments on commit e02c956

Please sign in to comment.