@opendaw/studio-core 0.0.35 → 0.0.36

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.
Files changed (2) hide show
  1. package/dist/Workers.js +2 -2
  2. package/package.json +6 -8
package/dist/Workers.js CHANGED
@@ -28,7 +28,7 @@ export class Workers {
28
28
  static messenger = Option.None;
29
29
  static get Peak() {
30
30
  return Communicator
31
- .sender(this.messenger.unwrap("WorkerAgents are not installed").channel("peaks"), router => new class {
31
+ .sender(this.messenger.unwrap("Workers are not installed").channel("peaks"), router => new class {
32
32
  async generateAsync(progress, shifts, frames, numFrames, numChannels) {
33
33
  return router.dispatchAndReturn(this.generateAsync, progress, shifts, frames, numFrames, numChannels);
34
34
  }
@@ -36,7 +36,7 @@ export class Workers {
36
36
  }
37
37
  static get Opfs() {
38
38
  return Communicator
39
- .sender(this.messenger.unwrap("WorkerAgents are not installed").channel("opfs"), router => new class {
39
+ .sender(this.messenger.unwrap("Workers are not installed").channel("opfs"), router => new class {
40
40
  write(path, data) { return router.dispatchAndReturn(this.write, path, data); }
41
41
  read(path) { return router.dispatchAndReturn(this.read, path); }
42
42
  delete(path) { return router.dispatchAndReturn(this.delete, path); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/studio-core",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,9 +16,7 @@
16
16
  "./processors.js": "./dist/processors.js"
17
17
  },
18
18
  "files": [
19
- "dist/**"
20
- ],
21
- "sideEffects": [
19
+ "dist/**",
22
20
  "dist/workers-main.js",
23
21
  "dist/processors.js"
24
22
  ],
@@ -35,17 +33,17 @@
35
33
  "@opendaw/lib-fusion": "^0.0.27",
36
34
  "@opendaw/lib-runtime": "^0.0.27",
37
35
  "@opendaw/lib-std": "^0.0.27",
38
- "@opendaw/studio-adapters": "^0.0.27",
36
+ "@opendaw/studio-adapters": "^0.0.28",
39
37
  "@opendaw/studio-boxes": "^0.0.27",
40
38
  "@opendaw/studio-enums": "^0.0.21",
41
39
  "dropbox": "^10.34.0"
42
40
  },
43
41
  "devDependencies": {
44
42
  "@opendaw/eslint-config": "^0.0.19",
45
- "@opendaw/studio-core-processors": "^0.0.27",
46
- "@opendaw/studio-core-workers": "^0.0.22",
43
+ "@opendaw/studio-core-processors": "^0.0.28",
44
+ "@opendaw/studio-core-workers": "^0.0.23",
47
45
  "@opendaw/studio-forge-boxes": "^0.0.27",
48
46
  "@opendaw/typescript-config": "^0.0.20"
49
47
  },
50
- "gitHead": "7a27ff488be7d4bb68642319d8281362a96c8bb2"
48
+ "gitHead": "c6fb8e19e2be39d6ae0f533b649b25e29c1716c0"
51
49
  }