@datapos/datapos-development 0.3.307 → 0.3.310

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,8 +1,8 @@
1
1
  /**
2
- * Development operations.
2
+ * Development utilities.
3
3
  */
4
- declare function buildPublicDirectoryIndex(id: string): Promise<void>;
5
- export { buildPublicDirectoryIndex };
4
+ declare function buildDirectoryIndex(id: string): Promise<void>;
5
+ export { buildDirectoryIndex };
6
6
  export { buildProject, releaseProject, syncProjectWithGitHub, testProject } from './operations/manageProject';
7
7
  export { auditDependencies } from './operations/auditDependencies';
8
8
  export { checkDependencies } from './operations/checkDependencies';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Audit dependencies operations
2
+ * Audit dependencies utilities.
3
3
  */
4
4
  export interface SeverityCounts {
5
5
  critical: number;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Check dependencies operation.
2
+ * Check dependencies utilities.
3
3
  */
4
4
  declare function checkDependencies(): Promise<void>;
5
5
  export { checkDependencies };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Document dependencies operation.
2
+ * Document dependencies utilities.
3
3
  */
4
4
  declare function documentDependencies(licenses?: string[], checkRecursive?: boolean): Promise<void>;
5
5
  export { documentDependencies };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Format code operation.
2
+ * Format code utilities.
3
3
  */
4
4
  declare function formatCode(): Promise<void>;
5
5
  export { formatCode };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Lint code operation.
2
+ * Lint code utilities.
3
3
  */
4
4
  declare function lintCode(): Promise<void>;
5
5
  export { lintCode };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Manage project operation.
2
+ * Manage project utilities.
3
3
  */
4
4
  declare function buildProject(): Promise<void>;
5
5
  declare function releaseProject(): Promise<void>;
@@ -1,2 +1,5 @@
1
+ /**
2
+ * Manage project utilities.
3
+ */
1
4
  declare function test(): void;
2
5
  export { test };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Update datapos dependencies operation.
2
+ * Update datapos dependencies utilities.
3
3
  */
4
4
  declare function updateDataPosDependencies(dependencies?: string[]): Promise<void>;
5
5
  export { updateDataPosDependencies };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Utilities.
2
+ * Cloudflare utilities.
3
3
  */
4
4
  declare function putState(): Promise<void>;
5
5
  declare function uploadDirectoryToR2(sourceDirectory: string, uploadDirectory: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.307",
3
+ "version": "0.3.310",
4
4
  "description": "A library of utilities used to manage Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "licenses/license-report-config.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@datapos/datapos-shared": "^0.3.296",
33
+ "@datapos/datapos-shared": "^0.3.298",
34
34
  "acorn": "^8.15.0",
35
35
  "acorn-typescript": "^1.4.13",
36
36
  "acorn-walk": "^8.3.4",
@@ -38,9 +38,9 @@
38
38
  "zod": "^4.1.13"
39
39
  },
40
40
  "devDependencies": {
41
- "@datapos/eslint-config-datapos": "^1.0.5",
41
+ "@datapos/eslint-config-datapos": "^1.0.12",
42
42
  "@types/eslint-plugin-security": "^3.0.0",
43
- "@types/node": "^24.10.1",
43
+ "@types/node": "^24.10.2",
44
44
  "@typescript-eslint/eslint-plugin": "^8.49.0",
45
45
  "@typescript-eslint/parser": "^8.49.0",
46
46
  "eslint": "^9.39.1",