Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
fix: bin file is now commonjs instead of native module
Browse files Browse the repository at this point in the history
  • Loading branch information
lachrist committed Jan 28, 2022
1 parent 515d284 commit f729934
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@appland/appmap-agent-js",
"version": "9.4.3",
"bin": {
"appmap-agent-js": "bin/bin.mjs"
"appmap-agent-js": "bin/appmap-agent-js"
},
"main": "lib/node/recorder-manual.mjs",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion test/system/cli/__fixture__.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const runAsyncInner = async (_package, config, beforeAsync, afterAsync) => {
...config,
}),
);
await spawnStrictAsync("node", [joinPath(cwd(), "bin", "bin.mjs")], {
await spawnStrictAsync("node", [joinPath(cwd(), "bin", "appmap-agent-js")], {
cwd: directory,
stdio: "inherit",
});
Expand Down

0 comments on commit f729934

Please sign in to comment.