@opendaw/studio-core 0.0.7 → 0.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/studio-core",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,17 +12,13 @@
12
12
  "types": "./dist/index.d.ts",
13
13
  "default": "./dist/index.js"
14
14
  },
15
- "./engine-processor.js": "./dist/engine-processor.js",
16
- "./meter-processor.js": "./dist/meter-processor.js",
17
- "./recording-processor.js": "./dist/recording-processor.js",
18
- "./workers.js": "./dist/workers.js"
15
+ "./workers.js": "./dist/workers.js",
16
+ "./processors.js": "./dist/processors.js"
19
17
  },
20
18
  "files": [
21
19
  "dist/**/*",
22
- "dist/engine-processor.js",
23
- "dist/meter-processor.js",
24
- "dist/recording-processor.js",
25
- "dist/workers.js"
20
+ "dist/workers.js",
21
+ "dist/processors.js"
26
22
  ],
27
23
  "scripts": {
28
24
  "build": "tsc",
@@ -30,22 +26,22 @@
30
26
  "test": "echo \"No tests to run\""
31
27
  },
32
28
  "dependencies": {
33
- "@opendaw/lib-box": "^0.0.7",
34
- "@opendaw/lib-dom": "^0.0.7",
35
- "@opendaw/lib-dsp": "^0.0.7",
36
- "@opendaw/lib-fusion": "^0.0.7",
37
- "@opendaw/lib-runtime": "^0.0.7",
38
- "@opendaw/lib-std": "^0.0.7",
39
- "@opendaw/studio-adapters": "^0.0.7",
40
- "@opendaw/studio-boxes": "^0.0.7",
41
- "@opendaw/studio-enums": "^0.0.7"
29
+ "@opendaw/lib-box": "^0.0.8",
30
+ "@opendaw/lib-dom": "^0.0.8",
31
+ "@opendaw/lib-dsp": "^0.0.8",
32
+ "@opendaw/lib-fusion": "^0.0.8",
33
+ "@opendaw/lib-runtime": "^0.0.8",
34
+ "@opendaw/lib-std": "^0.0.8",
35
+ "@opendaw/studio-adapters": "^0.0.8",
36
+ "@opendaw/studio-boxes": "^0.0.8",
37
+ "@opendaw/studio-enums": "^0.0.8"
42
38
  },
43
39
  "devDependencies": {
44
- "@opendaw/eslint-config": "^0.0.7",
45
- "@opendaw/studio-core-processors": "^0.0.7",
46
- "@opendaw/studio-core-workers": "^0.0.1",
47
- "@opendaw/studio-forge-boxes": "^0.0.7",
48
- "@opendaw/typescript-config": "^0.0.7"
40
+ "@opendaw/eslint-config": "^0.0.8",
41
+ "@opendaw/studio-core-processors": "^0.0.8",
42
+ "@opendaw/studio-core-workers": "^0.0.2",
43
+ "@opendaw/studio-forge-boxes": "^0.0.8",
44
+ "@opendaw/typescript-config": "^0.0.8"
49
45
  },
50
- "gitHead": "45c4c65fb885e4438d30ded61ada693cc4272b66"
46
+ "gitHead": "752dd75794d8c9bbd0202a906b23e14113909085"
51
47
  }
@@ -1,8 +0,0 @@
1
- import { Func } from "@opendaw/lib-std";
2
- export declare class WorkletFactory<W extends AudioWorkletNode> {
3
- #private;
4
- static boot<W extends AudioWorkletNode>(context: BaseAudioContext, moduleURL: string): Promise<WorkletFactory<W>>;
5
- constructor(context: BaseAudioContext);
6
- create(factory: Func<BaseAudioContext, W>): W;
7
- }
8
- //# sourceMappingURL=WorkletFactory.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WorkletFactory.d.ts","sourceRoot":"","sources":["../src/WorkletFactory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAA;AAGrC,qBAAa,cAAc,CAAC,CAAC,SAAS,gBAAgB;;IAClD,MAAM,CAAC,IAAI,CAAC,CAAC,SAAS,gBAAgB,EAAE,OAAO,EAAE,gBAAgB,EACzB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;gBAM1E,OAAO,EAAE,gBAAgB;IAErC,MAAM,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,CAAC,CAAC,GAAG,CAAC;CAChD"}
@@ -1,9 +0,0 @@
1
- import { Promises } from "@opendaw/lib-runtime";
2
- export class WorkletFactory {
3
- static boot(context, moduleURL) {
4
- return Promises.retry(() => context.audioWorklet.addModule(moduleURL).then(() => new WorkletFactory(context)));
5
- }
6
- #context;
7
- constructor(context) { this.#context = context; }
8
- create(factory) { return factory(this.#context); }
9
- }