Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repo maintenance #454

Merged
merged 4 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,569 changes: 564 additions & 1,005 deletions package-lock.json

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,24 @@
"testEnvironment": "node"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/jest": "^29.5.2",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.23.0",
"eslint": "^8.54.0",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"lint-staged": "^15.1.0",
"lodash": "^4.17.15",
"prettier": "^3.1.0",
"ts-jest": "^29.1.0",
"tsup": "^8.2.2",
"turbo": "^2.0.0",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.2",
"typescript": "^5.5.4"
"@changesets/cli": "^2.27.11",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"esbuild": "^0.24.0",
"eslint": "^8",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lint-staged": "^15.2.11",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.2",
"typescript": "^5.7.2"
},
"packageManager": "npm@10.2.3"
"packageManager": "npm@11.0.0"
}
2 changes: 1 addition & 1 deletion packages/chord/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Chord.getChord("maj7", "C", "B") === Chord.get("Cmaj7/B");
Print the notes of the given chord at the given tonic:

```js
Chord.notes("maj4", "C4"); // => ["C4", "E4", "G4", "B4"]
Chord.notes("maj7", "C4"); // => ["C4", "E4", "G4", "B4"]
```

### `Chord.degrees(chordType: string, tonic?: string) => (degree: number) => string`
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/tonal/browser/tonal.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion site/content/docs/groups/chords.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Chord.getChord("maj7", "C", "B") === Chord.get("Cmaj7/B");
Print the notes of the given chord at the given tonic:

```js
Chord.notes("maj4", "C4"); // => ["C4", "E4", "G4", "B4"]
Chord.notes("maj7", "C4"); // => ["C4", "E4", "G4", "B4"]
```

### `Chord.degrees`
Expand Down
Loading