deps: update amaro to 0.0.6

PR-URL: https://github.com/nodejs/node/pull/54199
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
Node.js GitHub Bot 2024-08-04 05:30:26 +00:00 committed by Marco Ippolito
parent ec7ee6c95e
commit b95eac5061
No known key found for this signature in database
GPG Key ID: 27F5E38D5B0A215F
3 changed files with 13 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "amaro",
"version": "0.0.5",
"version": "0.0.6",
"description": "Node.js TypeScript wrapper",
"license": "MIT",
"type": "commonjs",
@ -17,11 +17,14 @@
"clean": "rimraf dist",
"lint": "biome lint --write",
"format": "biome format --write",
"ci": "biome ci",
"ci:fix": "biome check --write",
"prepack": "npm run build",
"postpack": "npm run clean",
"build": "rspack build",
"typecheck": "tsc --noEmit",
"test": "node --test ./test"
"test": "node --test --experimental-test-snapshots **/*.test.js",
"test:regenerate": "node --test --experimental-test-snapshots --test-update-snapshots **/*.test.js"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",

View File

@ -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.0.5"
#define AMARO_VERSION "0.0.6"
#endif // SRC_AMARO_VERSION_H_