scratch-audio 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/pack/scratch-audio-1.0.7.tgz +0 -0
- package/package.json +4 -4
- package/pack/scratch-audio-1.0.6.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.7](https://github.com/scratchfoundation/scratch-audio/compare/v1.0.6...v1.0.7) (2024-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency scratch-semantic-release-config to v1.0.14 ([d4d40af](https://github.com/scratchfoundation/scratch-audio/commit/d4d40af30872fe09fcb8170d3dfea7dc6190d5e3))
|
|
12
|
+
|
|
6
13
|
## [1.0.6](https://github.com/scratchfoundation/scratch-audio/compare/v1.0.5...v1.0.6) (2024-02-22)
|
|
7
14
|
|
|
8
15
|
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ This requires you to have Git and Node.js installed.
|
|
|
12
12
|
|
|
13
13
|
In your own node environment/application:
|
|
14
14
|
```bash
|
|
15
|
-
npm install https://github.com/
|
|
15
|
+
npm install https://github.com/scratchfoundation/scratch-audio.git
|
|
16
16
|
```
|
|
17
17
|
If you want to edit/play yourself:
|
|
18
18
|
```bash
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scratch-audio",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "audio engine for scratch 3.0",
|
|
5
5
|
"main": "dist.js",
|
|
6
6
|
"browser": "./src/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"author": "Massachusetts Institute of Technology",
|
|
20
20
|
"license": "BSD-3-Clause",
|
|
21
21
|
"bugs": {
|
|
22
|
-
"url": "https://github.com/
|
|
22
|
+
"url": "https://github.com/scratchfoundation/scratch-audio/issues"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://github.com/scratchfoundation/scratch-audio#readme",
|
|
25
25
|
"dependencies": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"babel-loader": "7.1.5",
|
|
36
36
|
"babel-preset-env": "1.7.0",
|
|
37
37
|
"eslint": "8.56.0",
|
|
38
|
-
"eslint-config-scratch": "9.0.
|
|
38
|
+
"eslint-config-scratch": "9.0.7",
|
|
39
39
|
"husky": "8.0.3",
|
|
40
40
|
"json": "9.0.6",
|
|
41
|
-
"scratch-semantic-release-config": "1.0.
|
|
41
|
+
"scratch-semantic-release-config": "1.0.14",
|
|
42
42
|
"semantic-release": "19.0.5",
|
|
43
43
|
"tap": "12.7.0",
|
|
44
44
|
"web-audio-test-api": "0.5.2",
|
|
Binary file
|