@fuzdev/fuz_gitops 0.67.0 → 0.68.0
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.
- package/dist/ReposTreeNav.svelte +1 -1
- package/dist/repo_ops.d.ts +1 -1
- package/dist/repo_ops.js +1 -1
- package/package.json +13 -11
- package/src/lib/repo_ops.ts +1 -1
package/dist/ReposTreeNav.svelte
CHANGED
package/dist/repo_ops.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export interface RepoPath {
|
|
|
35
35
|
* Get repo paths from gitops config without full git sync.
|
|
36
36
|
* Lighter weight than `get_gitops_ready()` - just resolves paths.
|
|
37
37
|
*
|
|
38
|
-
* @param config_path Path to gitops.config.ts (defaults to
|
|
38
|
+
* @param config_path Path to gitops.config.ts (defaults to `./gitops.config.ts`)
|
|
39
39
|
* @returns Array of repo info with name, path, and url
|
|
40
40
|
*/
|
|
41
41
|
export declare const get_repo_paths: (config_path?: string) => Promise<Array<RepoPath>>;
|
package/dist/repo_ops.js
CHANGED
|
@@ -59,7 +59,7 @@ export const DEFAULT_EXCLUDE_EXTENSIONS = [
|
|
|
59
59
|
* Get repo paths from gitops config without full git sync.
|
|
60
60
|
* Lighter weight than `get_gitops_ready()` - just resolves paths.
|
|
61
61
|
*
|
|
62
|
-
* @param config_path Path to gitops.config.ts (defaults to
|
|
62
|
+
* @param config_path Path to gitops.config.ts (defaults to `./gitops.config.ts`)
|
|
63
63
|
* @returns Array of repo info with name, path, and url
|
|
64
64
|
*/
|
|
65
65
|
export const get_repo_paths = async (config_path) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fuzdev/fuz_gitops",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "a tool for managing many repos",
|
|
5
5
|
"glyph": "🪄",
|
|
6
6
|
"logo": "logo.svg",
|
|
@@ -29,23 +29,24 @@
|
|
|
29
29
|
"node": ">=22.15"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@fuzdev/fuz_css": ">=0.
|
|
33
|
-
"@fuzdev/fuz_ui": ">=0.
|
|
34
|
-
"@fuzdev/fuz_util": ">=0.
|
|
35
|
-
"@fuzdev/gro": ">=0.
|
|
32
|
+
"@fuzdev/fuz_css": ">=0.56.0",
|
|
33
|
+
"@fuzdev/fuz_ui": ">=0.190.0",
|
|
34
|
+
"@fuzdev/fuz_util": ">=0.54.0",
|
|
35
|
+
"@fuzdev/gro": ">=0.197.0",
|
|
36
36
|
"@sveltejs/kit": "^2",
|
|
37
37
|
"svelte": "^5",
|
|
38
|
-
"zod": "^4.
|
|
38
|
+
"zod": "^4.3.6"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@changesets/changelog-git": "^0.2.1",
|
|
42
42
|
"@fuzdev/fuz_code": "^0.45.1",
|
|
43
|
-
"@fuzdev/fuz_css": "^0.
|
|
44
|
-
"@fuzdev/fuz_ui": "^0.
|
|
45
|
-
"@fuzdev/fuz_util": "^0.
|
|
46
|
-
"@fuzdev/gro": "^0.
|
|
43
|
+
"@fuzdev/fuz_css": "^0.56.0",
|
|
44
|
+
"@fuzdev/fuz_ui": "^0.190.0",
|
|
45
|
+
"@fuzdev/fuz_util": "^0.54.0",
|
|
46
|
+
"@fuzdev/gro": "^0.197.0",
|
|
47
47
|
"@jridgewell/trace-mapping": "^0.3.31",
|
|
48
|
-
"@ryanatkn/eslint-config": "^0.
|
|
48
|
+
"@ryanatkn/eslint-config": "^0.10.1",
|
|
49
|
+
"@sveltejs/acorn-typescript": "^1.0.9",
|
|
49
50
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
50
51
|
"@sveltejs/kit": "^2.50.1",
|
|
51
52
|
"@sveltejs/package": "^2.5.7",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"tslib": "^2.8.1",
|
|
66
67
|
"typescript": "^5.9.3",
|
|
67
68
|
"typescript-eslint": "^8.48.1",
|
|
69
|
+
"vite": "^7.3.1",
|
|
68
70
|
"vitest": "^4.0.15",
|
|
69
71
|
"zimmerframe": "^1.1.4",
|
|
70
72
|
"zod": "^4.3.6"
|
package/src/lib/repo_ops.ts
CHANGED
|
@@ -83,7 +83,7 @@ export interface RepoPath {
|
|
|
83
83
|
* Get repo paths from gitops config without full git sync.
|
|
84
84
|
* Lighter weight than `get_gitops_ready()` - just resolves paths.
|
|
85
85
|
*
|
|
86
|
-
* @param config_path Path to gitops.config.ts (defaults to
|
|
86
|
+
* @param config_path Path to gitops.config.ts (defaults to `./gitops.config.ts`)
|
|
87
87
|
* @returns Array of repo info with name, path, and url
|
|
88
88
|
*/
|
|
89
89
|
export const get_repo_paths = async (config_path?: string): Promise<Array<RepoPath>> => {
|