@datapos/datapos-development 0.3.433 → 0.3.435
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.
|
@@ -19,8 +19,6 @@ declare function getDirectoryEntries(path: string, options: ObjectEncodingOption
|
|
|
19
19
|
declare function getModuleConfig(configId: string): ModuleTypeConfig;
|
|
20
20
|
/** Utilities - Get stats for path. */
|
|
21
21
|
declare function getStatsForPath(path: string): Promise<Stats>;
|
|
22
|
-
/** Utilities - Load environment variables. */
|
|
23
|
-
declare function loadEnvironmentVariables(): Promise<void>;
|
|
24
22
|
/** Utilities - Log operation header. */
|
|
25
23
|
declare function logOperationHeader(text: string): void;
|
|
26
24
|
/** Utilities - Log operation success. */
|
|
@@ -41,4 +39,4 @@ declare function writeJSONFile(path: string, data: object): Promise<void>;
|
|
|
41
39
|
/** Utilities - Write text file. */
|
|
42
40
|
declare function writeTextFile(path: string, data: string): Promise<void>;
|
|
43
41
|
/** Exposures */
|
|
44
|
-
export { clearDirectory, execCommand, extractOperationsFromSource, getDirectoryEntries, getModuleConfig, getStatsForPath,
|
|
42
|
+
export { clearDirectory, execCommand, extractOperationsFromSource, getDirectoryEntries, getModuleConfig, getStatsForPath, logOperationHeader, logOperationSuccess, logStepHeader, readJSONFile, readTextFile, removeFile, spawnCommand, substituteContent, writeJSONFile, writeTextFile };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-development",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.435",
|
|
4
4
|
"description": "A collection of utilities for managing Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"vitest.config.ts"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@datapos/datapos-shared": "^0.3.
|
|
44
|
+
"@datapos/datapos-shared": "^0.3.396",
|
|
45
45
|
"acorn": "^8.15.0",
|
|
46
46
|
"acorn-typescript": "^1.4.13",
|
|
47
47
|
"acorn-walk": "^8.3.4",
|
package/vite.config.ts
CHANGED
|
@@ -21,7 +21,7 @@ export default defineConfig({
|
|
|
21
21
|
formats: ['es'] // Only emit native ES modules.
|
|
22
22
|
},
|
|
23
23
|
rollupOptions: {
|
|
24
|
-
external: ['
|
|
24
|
+
external: ['node:child_process', 'node:fs', 'node:path', 'node:readline', 'node:url', 'node:util'], // Keep runtime dependencies out of bundle.
|
|
25
25
|
plugins: [
|
|
26
26
|
Sonda({
|
|
27
27
|
filename: 'index', // Output file name.
|