@open-audio-stack/core 0.1.49 → 0.1.50
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/README.md
CHANGED
|
@@ -78,7 +78,9 @@ Open Audio Stack Core was built using:
|
|
|
78
78
|
- TypeScript 5.x
|
|
79
79
|
- eslint 9.x
|
|
80
80
|
- prettier 3.x
|
|
81
|
-
- vitest
|
|
81
|
+
- vitest 3.x
|
|
82
|
+
|
|
83
|
+
If using a coding agent point it at `AGENTS.md` to automate the process of making changes.
|
|
82
84
|
|
|
83
85
|
## Developer installation
|
|
84
86
|
|
package/build/helpers/package.js
CHANGED
|
@@ -59,7 +59,7 @@ export const PackageTypeObj = { ...PluginType, ...PresetType, ...ProjectType };
|
|
|
59
59
|
export const PackageVersionValidator = z.object({
|
|
60
60
|
audio: z.optional(z.string().min(8).max(256).startsWith('https://')),
|
|
61
61
|
author: z.string().min(1).max(256),
|
|
62
|
-
changes: z.string().min(1).max(
|
|
62
|
+
changes: z.string().min(1).max(512),
|
|
63
63
|
date: z.string().datetime(),
|
|
64
64
|
description: z.string().min(1).max(256),
|
|
65
65
|
donate: z.optional(z.string().min(8).max(256).startsWith('https://')),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SystemType } from '../types/SystemType.js';
|
|
2
2
|
import { Architecture } from '../types/Architecture.js';
|
|
3
|
-
export declare function getArchitecture(): Architecture;
|
|
3
|
+
export declare function getArchitecture(): Architecture.Arm32 | Architecture.Arm64 | Architecture.X32 | Architecture.X64;
|
|
4
4
|
export declare function getSystem(): SystemType;
|
|
5
5
|
export declare function isTests(): boolean;
|
|
6
6
|
export declare function commandExists(cmd: string): Promise<boolean>;
|
|
@@ -2,6 +2,7 @@ export var Architecture;
|
|
|
2
2
|
(function (Architecture) {
|
|
3
3
|
Architecture["Arm32"] = "arm32";
|
|
4
4
|
Architecture["Arm64"] = "arm64";
|
|
5
|
+
Architecture["Arm64ec"] = "arm64ec";
|
|
5
6
|
Architecture["X32"] = "x32";
|
|
6
7
|
Architecture["X64"] = "x64";
|
|
7
8
|
})(Architecture || (Architecture = {}));
|
|
@@ -16,6 +17,11 @@ export const architectures = [
|
|
|
16
17
|
value: Architecture.Arm64,
|
|
17
18
|
name: 'Advanced RISC Machine - 64-bit',
|
|
18
19
|
},
|
|
20
|
+
{
|
|
21
|
+
description: 'Windows 11 on Arm feature which allows native ARM64 and x64 code within the same process.',
|
|
22
|
+
value: Architecture.Arm64ec,
|
|
23
|
+
name: 'Advanced RISC Machine - 64-bit - Emulation Compatible',
|
|
24
|
+
},
|
|
19
25
|
{
|
|
20
26
|
description: 'X86 processors are commonly used in desktop computers and laptops.',
|
|
21
27
|
value: Architecture.X32,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-audio-stack/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.50",
|
|
4
4
|
"description": "Open-source audio plugin management software",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc -p tsconfig.json",
|
|
18
|
-
"check": "npm run format && npm run lint && npm run build",
|
|
18
|
+
"check": "npm run format && npm run lint && npm run build && npm test",
|
|
19
19
|
"dev": "tsx ./src/index.ts",
|
|
20
20
|
"format": "prettier . --write",
|
|
21
21
|
"lint": "eslint .",
|