ableton-js 4.0.0 → 4.0.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/CHANGELOG.md +7 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/midi-script/version.py +1 -1
- package/package.json +17 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
-
#### [v4.0.
|
|
7
|
+
#### [v4.0.1](https://github.com/leolabs/ableton.js/compare/v4.0.0...v4.0.1)
|
|
8
|
+
|
|
9
|
+
- :wrench: Properly make ns and util files available for importing [`c68cf19`](https://github.com/leolabs/ableton.js/commit/c68cf19d0f7a0bafbde08203b548128c1ee2f324)
|
|
10
|
+
|
|
11
|
+
### [v4.0.0](https://github.com/leolabs/ableton.js/compare/v3.7.3...v4.0.0)
|
|
12
|
+
|
|
13
|
+
> 9 December 2025
|
|
8
14
|
|
|
9
15
|
- :bug: Fix Vitest not working with new ESM import syntax [`405bd76`](https://github.com/leolabs/ableton.js/commit/405bd76df064e3f085824b3e48098adbde6f1b88)
|
|
10
16
|
- :truck: Switch the library to ESM [`cf382ff`](https://github.com/leolabs/ableton.js/commit/cf382ff905fcde275ae805e0ca93f55d29aa7679)
|
package/index.d.ts
CHANGED
|
@@ -161,4 +161,4 @@ export declare class Ableton extends EventEmitter<EventMap> {
|
|
|
161
161
|
sendRaw(msg: string, messageId: number): Promise<void>;
|
|
162
162
|
isConnected(): boolean;
|
|
163
163
|
}
|
|
164
|
-
export
|
|
164
|
+
export * from "./util/package-version.js";
|
package/index.js
CHANGED
package/midi-script/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "4.0.
|
|
1
|
+
version = "4.0.1"
|
package/package.json
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ableton-js",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Control Ableton Live from Node",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
|
-
"
|
|
8
|
-
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"default": "./index.js"
|
|
10
|
+
},
|
|
11
|
+
"./ns/*": "./ns/*.js",
|
|
12
|
+
"./util/*": "./util/*.js"
|
|
13
|
+
},
|
|
14
|
+
"typesVersions": {
|
|
15
|
+
"*": {
|
|
16
|
+
"ns/*": [
|
|
17
|
+
"ns/*.d.ts"
|
|
18
|
+
],
|
|
19
|
+
"util/*": [
|
|
20
|
+
"util/*.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
9
23
|
},
|
|
10
24
|
"author": "Leo Bernard <admin@leolabs.org>",
|
|
11
25
|
"license": "MIT",
|