@datapos/datapos-development 0.3.330 → 0.3.345

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.
@@ -13,6 +13,7 @@ declare function readJSONFile<T>(path: string): Promise<T>;
13
13
  declare function readTextFile(path: string): Promise<string>;
14
14
  declare function removeFile(path: string): Promise<void>;
15
15
  declare function spawnCommand(label: string, command: string, arguments_?: string[], ignoreErrors?: boolean): Promise<void>;
16
+ declare function syncEditorConfig(): Promise<void>;
16
17
  declare function writeJSONFile(path: string, data: object): Promise<void>;
17
18
  declare function writeTextFile(path: string, data: string): Promise<void>;
18
- export { clearDirectory, execCommand, extractOperationsFromSource, getDirectoryEntries, getStatsForPath, loadEnvironmentVariables, logOperationHeader, logOperationSuccess, logStepHeader, readJSONFile, readTextFile, removeFile, spawnCommand, writeJSONFile, writeTextFile };
19
+ export { clearDirectory, execCommand, extractOperationsFromSource, getDirectoryEntries, getStatsForPath, loadEnvironmentVariables, logOperationHeader, logOperationSuccess, logStepHeader, readJSONFile, readTextFile, removeFile, spawnCommand, syncEditorConfig, writeJSONFile, writeTextFile };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.330",
4
- "description": "A library of utilities used to manage Data Positioning repositories.",
3
+ "version": "0.3.345",
4
+ "description": "A collection of utilities for managing Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
7
7
  "private": false,
@@ -27,7 +27,8 @@
27
27
  "files": [
28
28
  "dist",
29
29
  ".prettierrc.json",
30
- "licenses/license-report-config.json"
30
+ "licenses/license-report-config.json",
31
+ "default.editorconfig"
31
32
  ],
32
33
  "dependencies": {
33
34
  "@datapos/datapos-shared": "^0.3.298",
@@ -35,6 +36,7 @@
35
36
  "acorn-typescript": "^1.4.13",
36
37
  "acorn-walk": "^8.3.4",
37
38
  "dotenv": "^17.2.3",
39
+ "nanoid": "^5.1.6",
38
40
  "zod": "^4.1.13"
39
41
  },
40
42
  "devDependencies": {
@@ -54,7 +56,6 @@
54
56
  "license-report": "^6.8.1",
55
57
  "license-report-check": "^0.1.2",
56
58
  "license-report-recursive": "^6.8.2",
57
- "nanoid": "^5.1.6",
58
59
  "npm-check-updates": "^19.1.2",
59
60
  "owasp-dependency-check": "^1.0.0",
60
61
  "prettier": "^3.7.4",
@@ -71,7 +72,7 @@
71
72
  "audit": "op run --env-file=.env -- node -e \"import('./dist/datapos-development.es.js').then(m => m.auditDependencies())\"",
72
73
  "build": "node -e \"import('./dist/datapos-development.es.js').then(m => m.buildProject())\"",
73
74
  "check": "node -e \"import('./dist/datapos-development.es.js').then(m => m.checkDependencies())\"",
74
- "document": "op run --env-file=.env -- node -e \"import('./dist/datapos-development.es.js').then(m => m.documentDependencies(['BSD-2-Clause','MIT']))\"",
75
+ "document": "op run --env-file=.env -- node -e \"import('./dist/datapos-development.es.js').then(m => m.documentDependencies(['BSD-2-Clause', 'MIT']))\"",
75
76
  "format": "node -e \"import('./dist/datapos-development.es.js').then(m => m.formatCode())\"",
76
77
  "lint": "node -e \"import('./dist/datapos-development.es.js').then(m => m.lintCode())\"",
77
78
  "release": "op run --env-file=.env -- node -e \"import('./dist/datapos-development.es.js').then(m => m.releaseProject())\"",