tonal 4.6.10 → 4.7.1
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/README.md +7 -4
- package/package.json +20 -20
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ Although the final bundle it is small, you can
|
|
|
76
76
|
reduce bundle sizes even more by installing the modules individually, and
|
|
77
77
|
importing only the functions you need.
|
|
78
78
|
|
|
79
|
-
Note that individual modules are prefixed with `@tonaljs
|
|
79
|
+
Note that individual modules are prefixed with `@tonaljs/`. For example:
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
82
|
npm i @tonaljs/note
|
|
@@ -91,8 +91,6 @@ transpose("A4", "P5");
|
|
|
91
91
|
|
|
92
92
|
Generally, you just need to install `tonal` package (before it was called `@tonaljs/tonal`).
|
|
93
93
|
|
|
94
|
-
- [tonal](/packages/tonal): All modules bundled in one package
|
|
95
|
-
|
|
96
94
|
The API documentation is inside README.md of each module 👇
|
|
97
95
|
|
|
98
96
|
#### Notes and intervals
|
|
@@ -136,7 +134,12 @@ The API documentation is inside README.md of each module 👇
|
|
|
136
134
|
|
|
137
135
|
## Contributing
|
|
138
136
|
|
|
139
|
-
Read [contributing document](/docs/CONTRIBUTING.md)
|
|
137
|
+
Read [contributing document](/docs/CONTRIBUTING.md). To contribute open a PR and ensure:
|
|
138
|
+
|
|
139
|
+
- If is a music theory change (like the name of a scale) link to reliable references.
|
|
140
|
+
- If is a new feature, add documentation: changes to README of the affected module(s) are expected.
|
|
141
|
+
- Ad tests: changes to the test.ts file of the affected module(s) are expected.
|
|
142
|
+
- All tests are green
|
|
140
143
|
|
|
141
144
|
## Inspiration
|
|
142
145
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tonal",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.1",
|
|
4
4
|
"description": "tonaljs music theory library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"music",
|
|
@@ -15,25 +15,25 @@
|
|
|
15
15
|
],
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@tonaljs/abc-notation": "^4.
|
|
19
|
-
"@tonaljs/array": "^4.6.
|
|
20
|
-
"@tonaljs/chord": "^4.
|
|
21
|
-
"@tonaljs/chord-type": "^4.
|
|
22
|
-
"@tonaljs/collection": "^4.
|
|
23
|
-
"@tonaljs/core": "^4.6.
|
|
24
|
-
"@tonaljs/duration-value": "^4.
|
|
25
|
-
"@tonaljs/interval": "^4.
|
|
26
|
-
"@tonaljs/key": "^4.
|
|
27
|
-
"@tonaljs/midi": "^4.
|
|
28
|
-
"@tonaljs/mode": "^4.
|
|
29
|
-
"@tonaljs/note": "^4.
|
|
30
|
-
"@tonaljs/pcset": "^4.
|
|
31
|
-
"@tonaljs/progression": "^4.
|
|
32
|
-
"@tonaljs/range": "^4.
|
|
33
|
-
"@tonaljs/roman-numeral": "^4.
|
|
34
|
-
"@tonaljs/scale": "^4.
|
|
35
|
-
"@tonaljs/scale-type": "^4.
|
|
36
|
-
"@tonaljs/time-signature": "^4.
|
|
18
|
+
"@tonaljs/abc-notation": "^4.7.1",
|
|
19
|
+
"@tonaljs/array": "^4.6.12",
|
|
20
|
+
"@tonaljs/chord": "^4.7.1",
|
|
21
|
+
"@tonaljs/chord-type": "^4.7.1",
|
|
22
|
+
"@tonaljs/collection": "^4.7.1",
|
|
23
|
+
"@tonaljs/core": "^4.6.12",
|
|
24
|
+
"@tonaljs/duration-value": "^4.7.1",
|
|
25
|
+
"@tonaljs/interval": "^4.7.1",
|
|
26
|
+
"@tonaljs/key": "^4.7.1",
|
|
27
|
+
"@tonaljs/midi": "^4.7.1",
|
|
28
|
+
"@tonaljs/mode": "^4.7.1",
|
|
29
|
+
"@tonaljs/note": "^4.7.1",
|
|
30
|
+
"@tonaljs/pcset": "^4.7.1",
|
|
31
|
+
"@tonaljs/progression": "^4.7.1",
|
|
32
|
+
"@tonaljs/range": "^4.7.1",
|
|
33
|
+
"@tonaljs/roman-numeral": "^4.7.1",
|
|
34
|
+
"@tonaljs/scale": "^4.7.1",
|
|
35
|
+
"@tonaljs/scale-type": "^4.7.1",
|
|
36
|
+
"@tonaljs/time-signature": "^4.7.1"
|
|
37
37
|
},
|
|
38
38
|
"author": "danigb@gmail.com",
|
|
39
39
|
"license": "MIT",
|