@datapos/datapos-development 0.3.251 → 0.3.253

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Document dependencies operation.
3
3
  */
4
- declare function documentDependencies(licenses: string[]): Promise<void>;
4
+ declare function documentDependencies(licenses?: string[], checkRecursive?: boolean): Promise<void>;
5
5
  export { documentDependencies };
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Update datapos dependencies operation.
3
3
  */
4
- declare function updateDataPosDependencies(dependencies: string[]): Promise<void>;
4
+ declare function updateDataPosDependencies(dependencies?: string[]): Promise<void>;
5
5
  export { updateDataPosDependencies };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.251",
3
+ "version": "0.3.253",
4
4
  "description": "A library of utilities for managing the Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -69,7 +69,7 @@
69
69
  "release": "node -e \"import('./dist/datapos-development.es.js').then(m => m.releaseProject())\"",
70
70
  "sync": "node -e \"import('./dist/datapos-development.es.js').then(m => m.syncProjectWithGitHub())\"",
71
71
  "test": "node -e \"import('./dist/datapos-development.es.js').then(m => m.testProject())\"",
72
- "update:dataPosDeps": "node -e \"import('./dist/datapos-development.es.js').then(m => m.updateDataPosDependencies(['shared']))\""
72
+ "update": "node -e \"import('./dist/datapos-development.es.js').then(m => m.updateDataPosDependencies(['shared']))\""
73
73
  },
74
74
  "engines": {
75
75
  "node": ">=22.0.0",