We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3814594 commit ff5367eCopy full SHA for ff5367e
package.json
@@ -9,7 +9,7 @@
9
"build": "run-s 'build:tsc' 'build:esbuild' 'build:extism' 'build:pack'",
10
"build:esbuild": "node esbuild.js",
11
"build:extism": "extism-js dist/index.js -i src/index.d.ts -o dist/plugin.wasm",
12
- "build:pack": "node packbuild.js",
+ "build:pack": "node scripts/packbuild.js",
13
"build:tsc": "tsc --noEmit",
14
"prepare": "husky",
15
"prettier": "prettier",
packbuild.js renamed to scripts/packbuild.js
@@ -42,6 +42,6 @@ const template = {
42
};
43
44
writeFileSync(
45
- path.resolve(__dirname, "./dist/manifest.json"),
+ path.resolve(__dirname, "../dist/manifest.json"),
46
JSON.stringify(template, null, 2)
47
);
0 commit comments