Skip to content

Commit bb3f90c

Browse files
committed
fix: Set correct permissions for npm bin
1 parent 1559644 commit bb3f90c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@denosaurs/typefetch",
3-
"version": "0.0.25",
3+
"version": "0.0.26",
44
"exports": {
55
".": "./main.ts"
66
},

scripts/npm.ts

+1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ await build({
5353
postBuild() {
5454
Deno.copyFileSync("LICENSE", "npm/LICENSE");
5555
Deno.copyFileSync("README.md", "npm/README.md");
56+
Deno.chmod("npm/esm/main.js", 0o711);
5657
},
5758
});

0 commit comments

Comments
 (0)