-
Notifications
You must be signed in to change notification settings - Fork 12
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
Showing
3 changed files
with
61 additions
and
15 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
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 |
---|---|---|
|
@@ -9,9 +9,11 @@ | |
"check": "deno check studio_pack_generator.ts", | ||
"lint": "deno lint --ignore=gui/assets_bundle.json,gui/frontend,tmp,dist,.cov_profile,vendor", | ||
"pre-commit": "deno task fmt --check && deno task lint && deno task test && deno task check", | ||
"publish-dry-run": "deno publish --dry-run", | ||
"start": "deno run -A --unstable studio_pack_generator.ts", | ||
"test": "deno test -A --ignore=gui/assets_bundle.json,gui/frontend,tmp,dist,.cov_profile,vendor", | ||
"test-watch": "deno test -A --watch --unstable --ignore=gui/assets_bundle.json,gui/frontend,tmp,dist,.cov_profile,vendor", | ||
"update-changelog": "conventional-changelog -p conventionalcommits --same-file -i CHANGELOG.md -k deno.json && deno task fmt", | ||
"update-frontend-assets": "cd gui/frontend && npm run build && ../gui.ts updateAssets" | ||
}, | ||
"imports": { | ||
|
@@ -33,5 +35,11 @@ | |
"https://deno.land/std/": "./vendor/deno.land/[email protected]/" | ||
}, | ||
"exports": "./studio_pack_generator.ts", | ||
"publish": { "exclude": ["tools", "gui/frontend/src", "test_data/"] } | ||
"publish": { | ||
"exclude": [ | ||
"tools", | ||
"gui/frontend/src", | ||
"test_data/" | ||
] | ||
} | ||
} |
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