Skip to content

Commit

Permalink
chore: update deno scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
markthree committed Jan 18, 2024
1 parent a67b979 commit c75017d
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ npx deno-npx install --allow-read --allow-env --allow-run --allow-write --unstab

### nodejs

you can use `npm install ndeno -g` to install `ndeno` globally. (In a pure nodejs environment)
you can use `npm install ndeno -g` to install `ndeno` globally. (In a pure
nodejs environment)

### daily

Expand Down
7 changes: 4 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"tasks": {
"start": "deno run -A mod.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/easy_std@v0.6.1/scripts/release.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/easy_std@v0.7.0/scripts/release.ts",
"install": "deno install --allow-read --allow-env --allow-run --allow-write --unstable -rfn n mod.ts",
"hello": "deno eval 'console.log(`hello`)'"
"release-npm": "deno run -A release-npm.ts"
},
"fmt": {
"semiColons": false
},
"lock": true
"lock": true,
"exclude": ["npm"]
}
43 changes: 43 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export function execa(cmd: string[]) {
return denoExeca(cmd)
}
return nodeExeca(cmd.shift() as string, cmd, {
stdio: 'inherit'
stdio: "inherit",
})
}

0 comments on commit c75017d

Please sign in to comment.