@dpuse/dpuse-development 0.3.509 → 0.3.511
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.
|
@@ -10,6 +10,7 @@ export declare function getDirectoryEntries(path: string): Promise<string[]>;
|
|
|
10
10
|
export declare function getDirectoryEntries(path: string, options: ObjectEncodingOptions): Promise<Dirent[]>;
|
|
11
11
|
export declare function execCommand(label: string | undefined, command_: string, arguments_?: string[], outputFilePath?: string): Promise<void>;
|
|
12
12
|
export declare function spawnCommand(label: string, command: string, arguments_?: string[], ignoreErrors?: boolean, useShell?: boolean): Promise<void>;
|
|
13
|
+
export declare function spawnCommandToFile(label: string, command: string, arguments_: string[] | undefined, outputPath: string, ignoreErrors?: boolean): Promise<void>;
|
|
13
14
|
export declare function readJSONFile<T>(path: string): Promise<T>;
|
|
14
15
|
export declare function readTextFile(path: string): Promise<string>;
|
|
15
16
|
export declare function removeFile(path: string): Promise<void>;
|
package/eslint.config.ts
CHANGED
|
@@ -10,7 +10,7 @@ import skipFormatting from 'eslint-config-prettier';
|
|
|
10
10
|
import tseslint from 'typescript-eslint';
|
|
11
11
|
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
12
12
|
|
|
13
|
-
// ── Configuration
|
|
13
|
+
// ── ESLint Configuration ─────────────────────────────────────────────────────────────────────────────────────────────
|
|
14
14
|
|
|
15
15
|
export default defineConfig(
|
|
16
16
|
// Linting scope, strict TypeScript type-checking, and module resolver.
|