-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df4c23b
commit 659b1e7
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
{ | ||
"tasks": { | ||
"watch": "deno run -A --watch run/build.js", | ||
"build": "deno run -A run/build.js", | ||
"archive": "deno run -A run/archive.js", | ||
"test": "deno test --allow-read" | ||
"build": { | ||
"command": "deno run -A run/build.js", | ||
"description": "Builds both Yozo's lib and dev builds, outputting them in `latest/lib.js` and `latest/dev.js`" | ||
}, | ||
"watch": { | ||
"command": "deno run -A --watch run/build.js", | ||
"description": "Runs a watcher to build the bundles whenever something changes" | ||
}, | ||
"archive": { | ||
"command": "deno run -A run/archive.js", | ||
"description": "Create a new version, archiving the bundles and updating `versions.json`" | ||
}, | ||
"test": { | ||
"command": "deno test --allow-read", | ||
"description": "A flagless alias for running the tests" | ||
} | ||
}, | ||
"imports": { | ||
"@std/cli": "jsr:@std/[email protected]", | ||
|