@fuzdev/fuz_gitops 0.59.0 → 0.61.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.
@@ -5,7 +5,7 @@ import { format_file } from '@ryanatkn/gro/format_file.js';
5
5
  import { basename, resolve } from 'node:path';
6
6
  import { print_path } from '@ryanatkn/gro/paths.js';
7
7
  import { load_from_env } from '@ryanatkn/gro/env.js';
8
- import { load_package_json } from '@ryanatkn/gro/package_json.js';
8
+ import { package_json_load } from '@ryanatkn/gro/package_json.js';
9
9
  import { existsSync } from 'node:fs';
10
10
  import { fetch_repo_data } from './fetch_repo_data.js';
11
11
  import { create_fs_fetch_value_cache } from './fs_fetch_value_cache.js';
@@ -58,7 +58,7 @@ export const task = {
58
58
  log.info('fetching remote repo data');
59
59
  const repos_json = await fetch_repo_data(local_repos, token, cache.data, log);
60
60
  // TODO should package_json be provided in the Gro task/gen contexts? check if it's always loaded
61
- const package_json = await load_package_json();
61
+ const package_json = await package_json_load();
62
62
  const repo_specifier = package_json.name === '@fuzdev/fuz_gitops'
63
63
  ? '$lib/repo.svelte.js'
64
64
  : '@fuzdev/fuz_gitops/repo.svelte.js';
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@fuzdev/fuz_gitops",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "description": "a tool for managing many repos",
5
5
  "glyph": "🪄",
6
6
  "logo": "logo.svg",
7
7
  "logo_alt": "a friendly blue spider facing you",
8
- "public": true,
9
8
  "license": "MIT",
10
9
  "homepage": "https://gitops.fuz.dev/",
11
10
  "repository": "https://github.com/fuzdev/fuz_gitops",
@@ -30,10 +29,10 @@
30
29
  "node": ">=22.15"
31
30
  },
32
31
  "peerDependencies": {
33
- "@fuzdev/fuz_css": ">=0.40.0",
34
- "@fuzdev/fuz_ui": ">=0.169.0",
35
- "@fuzdev/fuz_util": ">=0.42.0",
36
- "@ryanatkn/gro": ">=0.181.0",
32
+ "@fuzdev/fuz_css": ">=0.42.1",
33
+ "@fuzdev/fuz_ui": ">=0.174.0",
34
+ "@fuzdev/fuz_util": ">=0.45.0",
35
+ "@ryanatkn/gro": ">=0.184.0",
37
36
  "@sveltejs/kit": "^2",
38
37
  "svelte": "^5",
39
38
  "zod": "^4.1.13"
@@ -42,10 +41,10 @@
42
41
  "@changesets/changelog-git": "^0.2.1",
43
42
  "@fuzdev/fuz_code": "^0.38.0",
44
43
  "@fuzdev/fuz_css": "^0.42.1",
45
- "@fuzdev/fuz_ui": "^0.172.0",
46
- "@fuzdev/fuz_util": "^0.44.1",
44
+ "@fuzdev/fuz_ui": "^0.174.0",
45
+ "@fuzdev/fuz_util": "^0.45.0",
47
46
  "@ryanatkn/eslint-config": "^0.9.0",
48
- "@ryanatkn/gro": "^0.182.0",
47
+ "@ryanatkn/gro": "^0.184.0",
49
48
  "@sveltejs/adapter-static": "^3.0.10",
50
49
  "@sveltejs/kit": "^2.49.1",
51
50
  "@sveltejs/package": "^2.5.7",
@@ -5,7 +5,7 @@ import {format_file} from '@ryanatkn/gro/format_file.js';
5
5
  import {basename, resolve} from 'node:path';
6
6
  import {print_path} from '@ryanatkn/gro/paths.js';
7
7
  import {load_from_env} from '@ryanatkn/gro/env.js';
8
- import {load_package_json} from '@ryanatkn/gro/package_json.js';
8
+ import {package_json_load} from '@ryanatkn/gro/package_json.js';
9
9
  import {existsSync} from 'node:fs';
10
10
 
11
11
  import {fetch_repo_data} from './fetch_repo_data.js';
@@ -70,7 +70,7 @@ export const task: Task<Args> = {
70
70
  const repos_json = await fetch_repo_data(local_repos, token, cache.data, log);
71
71
 
72
72
  // TODO should package_json be provided in the Gro task/gen contexts? check if it's always loaded
73
- const package_json = await load_package_json();
73
+ const package_json = await package_json_load();
74
74
  const repo_specifier =
75
75
  package_json.name === '@fuzdev/fuz_gitops'
76
76
  ? '$lib/repo.svelte.js'