28c6086c64
## [1.0.316](https://github.com/scratchfoundation/scratch-audio/compare/v1.0.315...v1.0.316) (2024-11-14) ### Bug Fixes * **deps:** lock file maintenance ([ |
||
---|---|---|
.github | ||
.husky | ||
sound-files/drums | ||
src | ||
test | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.npmignore | ||
.nvmrc | ||
CHANGELOG.md | ||
commitlint.config.js | ||
CONTRIBUTING.md | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
release.config.js | ||
renovate.json5 | ||
TRADEMARK.txt | ||
webpack.config.js |
scratch-audio
Scratch audio engine is for playing sounds, instruments and audio effects in Scratch 3.0 projects
Please note this project is at an early stage and we are not ready for pull requests
Installation
This requires you to have Git and Node.js installed.
In your own node environment/application:
npm install https://github.com/scratchfoundation/scratch-audio.git
If you want to edit/play yourself:
git clone git@github.com:LLK/scratch-audio.git
cd scratch-audio
npm install
Testing
npm test
Donate
We provide Scratch free of charge, and want to keep it that way! Please consider making a donation to support our continued engineering, design, community, and resource development efforts. Donations of any size are appreciated. Thank you!
Committing
This project uses semantic release to ensure version bumps follow semver so that projects depending on it don't break unexpectedly.
In order to automatically determine version updates, semantic release expects commit messages to follow the conventional-changelog specification.
You can use the commitizen CLI to make commits formatted in this way:
npm install -g commitizen@latest cz-conventional-changelog@latest
Now you're ready to make commits using git cz
.