-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!: generate script to use with
loadScript()
This seems to be the preferred way to work with libraries in hydra. The chrome extension is in the `chrome-extension-deprecated` branch and won't receive any more updates.
- Loading branch information
Showing
18 changed files
with
270 additions
and
3,614 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- run: corepack enable | ||
|
||
- name: Install | ||
run: pnpm i | ||
|
||
- name: Build | ||
run: pnpm run build | ||
|
||
- run: npx changelogithub | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,17 +1,16 @@ | ||
{ | ||
"type": "module", | ||
"scripts": { | ||
"cleanup": "shx rm -rf ./dist", | ||
"build": "npm run cleanup && rollup -c", | ||
"dev": "rollup -c -w" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-node-resolve": "^13.0.0", | ||
"@tonaljs/tonal": "^4.6.0", | ||
"@types/webmidi": "^2.0.4", | ||
"rollup": "^2.52.3", | ||
"rollup-plugin-chrome-extension": "^3.5.7", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-terser": "^0.2.0", | ||
"@types/webmidi": "^2.0.6", | ||
"rollup": "^3.7.3", | ||
"rollup-plugin-string": "^3.0.0", | ||
"shx": "^0.3.3", | ||
"web-ext": "^6.2.0" | ||
"shx": "^0.3.4" | ||
} | ||
} |
Oops, something went wrong.