@open-audio-stack/core 0.0.11 → 0.0.13
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/build/helpers/file.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PackageInterface } from '../types/Package.js';
|
|
1
|
+
import { PackageInterface, PackageValidationError } from '../types/Package.js';
|
|
2
2
|
import { PluginFile } from '../types/Plugin.js';
|
|
3
3
|
import { PresetFile } from '../types/Preset.js';
|
|
4
4
|
import { ProjectFile } from '../types/Project.js';
|
|
@@ -30,6 +30,6 @@ export declare function fileReadJson(filePath: string): any;
|
|
|
30
30
|
export declare function fileReadString(filePath: string): string;
|
|
31
31
|
export declare function fileReadYaml(filePath: string): unknown;
|
|
32
32
|
export declare function fileSize(filePath: string): number;
|
|
33
|
-
export declare function fileValidateMetadata(filePath: string, fileMetadata: PluginFile | PresetFile | ProjectFile):
|
|
33
|
+
export declare function fileValidateMetadata(filePath: string, fileMetadata: PluginFile | PresetFile | ProjectFile): PackageValidationError[];
|
|
34
34
|
export declare function zipCreate(filesPath: string, zipPath: string): void;
|
|
35
35
|
export declare function zipExtract(content: any, dirPath: string): void;
|
package/build/helpers/file.js
CHANGED
package/build/helpers/utils.js
CHANGED