Skip to content

Commit 7d3bd02

Browse files
committed
migrate to @fuzdev/gro from @ryanatkn/gro
1 parent 32338b1 commit 7d3bd02

27 files changed

Lines changed: 163 additions & 124 deletions

.changeset/long-worms-itch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@fuzdev/fuz_gitops': minor
3+
---
4+
5+
migrate to @fuzdev/gro from @ryanatkn/gro

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
- run: npm ci
27-
- run: npx @ryanatkn/gro check --workspace --build
27+
- run: npx @fuzdev/gro check --workspace --build

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297

298298
### Minor Changes
299299

300-
- upgrade `node@22.3` and `@ryanatkn/gro@0.120.0` ([eca969a](https://github.com/ryanatkn/fuz_gitops/commit/eca969a))
300+
- upgrade `node@22.3` and `@fuzdev/gro@0.120.0` ([eca969a](https://github.com/ryanatkn/fuz_gitops/commit/eca969a))
301301

302302
## 0.27.0
303303

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ gro test src/test/fixtures/check # validate gitops commands against fixture
386386

387387
## Dependencies
388388

389-
- `@ryanatkn/gro` - build tool and task runner
389+
- `@fuzdev/gro` - build tool and task runner
390390
- `@fuzdev/fuz_ui` - UI components and utilities
391391
- `@fuzdev/fuz_util` - utility functions
392392
- `@fuzdev/fuz_css` - CSS framework and design tokens
@@ -412,7 +412,7 @@ For packages you control, use `>=` instead of `^` for peer dependencies:
412412
```json
413413
"peerDependencies": {
414414
"@fuzdev/fuz_util": ">=0.38.0", // controlled package - use >=
415-
"@ryanatkn/gro": ">=0.174.0", // controlled package - use >=
415+
"@fuzdev/gro": ">=0.174.0", // controlled package - use >=
416416
"@sveltejs/kit": "^2", // third-party - use ^
417417
"svelte": "^5" // third-party - use ^
418418
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ With fuz_gitops you can:
1515

1616
- dynamically compose repos
1717
- fetch metadata about collections of repos and import it as typesafe JSON (using
18-
[Gro's public package patterns](https://github.com/ryanatkn/gro/blob/main/src/docs/gro_plugin_sveltekit_app.md#well_known_package_json))
18+
[Gro's public package patterns](https://github.com/fuzdev/gro/blob/main/src/docs/gro_plugin_sveltekit_app.md#well_known_package_json))
1919
- publish a generated docs website for your collections of repos
2020
- import its components to view and interact with repo collection metadata
2121
- publish metadata about your collections of repos to the web for other users and tools

gitops.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config: CreateGitopsConfig = () => {
55
repos: [
66
'https://github.com/fuzdev/fuz_css',
77
'https://github.com/fuzdev/fuz_ui',
8-
'https://github.com/ryanatkn/gro',
8+
'https://github.com/fuzdev/gro',
99
'https://github.com/fuzdev/fuz_util',
1010
'https://github.com/fuzdev/fuz_template',
1111
'https://github.com/fuzdev/fuz_blog',

package-lock.json

Lines changed: 74 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@
3232
"@fuzdev/fuz_css": ">=0.44.1",
3333
"@fuzdev/fuz_ui": ">=0.179.0",
3434
"@fuzdev/fuz_util": ">=0.45.3",
35-
"@ryanatkn/gro": ">=0.186.0",
35+
"@fuzdev/gro": "^0.192.1",
3636
"@sveltejs/kit": "^2",
3737
"svelte": "^5",
3838
"zod": "^4.1.13"
3939
},
4040
"devDependencies": {
4141
"@changesets/changelog-git": "^0.2.1",
42-
"@fuzdev/fuz_code": "^0.44.1",
43-
"@fuzdev/fuz_css": "^0.47.0",
44-
"@fuzdev/fuz_ui": "^0.182.0",
42+
"@fuzdev/fuz_code": "^0.45.0",
43+
"@fuzdev/fuz_css": "^0.49.0",
44+
"@fuzdev/fuz_ui": "^0.183.0",
4545
"@fuzdev/fuz_util": "^0.50.1",
46+
"@fuzdev/gro": "^0.192.1",
4647
"@jridgewell/trace-mapping": "^0.3.31",
4748
"@ryanatkn/eslint-config": "^0.9.0",
48-
"@ryanatkn/gro": "^0.191.0",
4949
"@sveltejs/adapter-static": "^3.0.10",
5050
"@sveltejs/kit": "^2.50.1",
5151
"@sveltejs/package": "^2.5.7",

src/lib/ReposTable.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
const {
1010
repos,
11-
deps = ['@fuzdev/fuz_ui', '@ryanatkn/gro'],
11+
deps = ['@fuzdev/fuz_ui', '@fuzdev/gro'],
1212
}: {
1313
repos: Array<Repo>;
1414
deps?: Array<string>;

src/lib/fs_fetch_value_cache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {mkdir, readFile, rm, writeFile} from 'node:fs/promises';
22
import {dirname, join} from 'node:path';
3-
import {paths} from '@ryanatkn/gro/paths.js';
4-
import {format_file} from '@ryanatkn/gro/format_file.js';
3+
import {paths} from '@fuzdev/gro/paths.js';
4+
import {format_file} from '@fuzdev/gro/format_file.js';
55
import {deserialize_cache, serialize_cache, type FetchValueCache} from '@fuzdev/fuz_util/fetch.js';
66
import {existsSync} from 'node:fs';
77

0 commit comments

Comments
 (0)