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

Feat/fix versions #410

Merged
merged 10 commits into from
Feb 3, 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
8 changes: 8 additions & 0 deletions packages/abc-notation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tonaljs/abc-notation

## 4.8.x

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]

## 4.8.1

### Patch Changes
Expand Down
3 changes: 2 additions & 1 deletion packages/abc-notation/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { distance as dist, note, transpose as tr } from "@tonaljs/core";
import { distance as dist, transpose as tr } from "@tonaljs/pitch-distance";
import { note } from "@tonaljs/pitch-note";

const fillStr = (character: string, times: number) =>
Array(times + 1).join(character);
Expand Down
12 changes: 9 additions & 3 deletions packages/abc-notation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/abc-notation",
"version": "4.8.1",
"version": "4.8.2",
"description": "Parse musical notes in abc notation",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,7 +9,8 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.10.3"
"@tonaljs/pitch-distance": "5.0.2",
"@tonaljs/pitch-note": "5.0.1"
},
"keywords": [
"note",
Expand All @@ -24,7 +25,12 @@
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs"
"build": "tsup index.ts --sourcemap --dts --format esm,cjs",
"test": "jest --coverage"
}
}
8 changes: 8 additions & 0 deletions packages/array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tonaljs/array

## 4.8.2

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]

## 4.8.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/array/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { note, Note } from "@tonaljs/core";
import { note, Note } from "@tonaljs/pitch-note";

// ascending range
function ascR(b: number, n: number) {
Expand Down
13 changes: 9 additions & 4 deletions packages/array/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@tonaljs/array",
"version": "4.8.1",
"version": "4.8.2",
"description": "Functions to work with arrays of tonal objects",
"keywords": [
"array",
"music",
"theory",
"@tonaljs/core"
"tonal"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -15,14 +15,19 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.10.3"
"@tonaljs/pitch-note": "5.0.1"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs"
"build": "tsup index.ts --sourcemap --dts --format esm,cjs",
"test": "jest --coverage"
}
}
10 changes: 10 additions & 0 deletions packages/chord-detect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @tonaljs/chord-detect

## 4.8.4

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]

## 4.8.3

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/chord-detect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-detect",
"version": "4.8.3",
"version": "4.8.4",
"description": "Detect chord name based on note names",
"keywords": [
"chord-detect",
Expand All @@ -15,9 +15,9 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-type": "^5.0.3",
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
"@tonaljs/chord-type": "5.0.4",
"@tonaljs/core": "4.10.4",
"@tonaljs/pcset": "4.9.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/chord-dictionary/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tonaljs/chord-dictionary

## 4.8.3

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]

## 4.8.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/chord-dictionary/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-dictionary",
"version": "4.8.2",
"version": "4.8.3",
"description": "A dictionary of musical chords",
"keywords": [],
"main": "dist/index.js",
Expand All @@ -10,7 +10,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-type": "^5.0.3"
"@tonaljs/chord-type": "5.0.4"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/chord-type/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tonaljs/chord-type

## 5.0.4

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]
- @tonaljs/[email protected]

## 5.0.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/chord-type/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-type",
"version": "5.0.3",
"version": "5.0.4",
"description": "A dictionary of musical chords",
"keywords": [
"chord",
Expand All @@ -17,8 +17,8 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
"@tonaljs/core": "4.10.4",
"@tonaljs/pcset": "4.9.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
13 changes: 13 additions & 0 deletions packages/chord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @tonaljs/chord

## 5.0.3

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]

## 5.0.x

- Update dependencies to fix an exception. See #407
Expand Down
16 changes: 8 additions & 8 deletions packages/chord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord",
"version": "5.0.2",
"version": "5.0.3",
"description": "Musical chords and its relations",
"keywords": [
"chord",
Expand All @@ -16,13 +16,13 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-detect": "^4.8.3",
"@tonaljs/chord-type": "^5.0.3",
"@tonaljs/collection": "^4.8.1",
"@tonaljs/pitch-note": "^5.0.2",
"@tonaljs/pitch-distance": "^5.0.1",
"@tonaljs/pcset": "^4.8.3",
"@tonaljs/scale-type": "^4.8.3"
"@tonaljs/chord-detect": "4.8.4",
"@tonaljs/chord-type": "5.0.4",
"@tonaljs/collection": "4.8.1",
"@tonaljs/pitch-note": "5.0.3",
"@tonaljs/pitch-distance": "5.0.2",
"@tonaljs/pcset": "4.9.1",
"@tonaljs/scale-type": "4.8.4"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @tonaljs/core

## 4.10.4

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]

## 4.10.3

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/core",
"version": "4.10.3",
"version": "4.10.4",
"description": "Music theory library",
"keywords": [
"music",
Expand All @@ -18,10 +18,10 @@
"access": "public"
},
"dependencies": {
"@tonaljs/pitch": "^5.0.1",
"@tonaljs/pitch-interval": "^5.0.1",
"@tonaljs/pitch-distance": "^5.0.1",
"@tonaljs/pitch-note": "^5.0.1"
"@tonaljs/pitch": "5.0.1",
"@tonaljs/pitch-interval": "5.0.2",
"@tonaljs/pitch-distance": "5.0.2",
"@tonaljs/pitch-note": "5.0.3"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs"
Expand Down
8 changes: 8 additions & 0 deletions packages/interval/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tonaljs/interval

## 4.8.2

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]

## 4.8.1

### Patch Changes
Expand Down
7 changes: 3 additions & 4 deletions packages/interval/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { IntervalCoordinates, NoteCoordinates } from "@tonaljs/pitch";
import { distance as dist } from "@tonaljs/pitch-distance";
import {
IntervalCoordinates,
IntervalName,
NoteCoordinates,
coordToInterval,
distance as dist,
interval as props,
} from "@tonaljs/core";
} from "@tonaljs/pitch-interval";

/**
* Get the natural list of names
Expand Down
15 changes: 11 additions & 4 deletions packages/interval/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@tonaljs/interval",
"version": "4.8.1",
"version": "4.8.2",
"description": "Parse and manipulate music intervals",
"keywords": [
"interval",
"music",
"theory",
"@tonaljs/core"
"tonal"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -15,14 +15,21 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.10.3"
"@tonaljs/pitch": "^5.0.1",
"@tonaljs/pitch-distance": "^5.0.2",
"@tonaljs/pitch-interval": "^5.0.2"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs"
"build": "tsup index.ts --sourcemap --dts --format esm,cjs",
"test": "jest --coverage"
}
}
10 changes: 10 additions & 0 deletions packages/key/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @tonaljs/key

## 4.9.3

### Patch Changes

- Dependencies between packages are now fixed
- Updated dependencies
- @tonaljs/[email protected]
- @tonaljs/[email protected]
- @tonaljs/[email protected]

## 4.9.2

### Patch Changes
Expand Down
Loading
Loading