Skip to content

Commit 248b256

Browse files
committed
move to fuzdev
1 parent eab7199 commit 248b256

62 files changed

Lines changed: 414 additions & 409 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/swift-spies-trade.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+
move to fuzdev

CLAUDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ interface LocalRepoPath {
307307
## Commands
308308

309309
```bash
310-
npm i -D @ryanatkn/fuz_gitops
310+
npm i -D @fuzdev/fuz_gitops
311311

312312
# Data management
313313
gro gitops_sync # sync repos and update local data
@@ -369,9 +369,9 @@ gro test src/test/fixtures/check # validate gitops commands against fixture
369369
## Dependencies
370370

371371
- `@ryanatkn/gro` - build tool and task runner
372-
- `@ryanatkn/fuz` - UI components and utilities
373-
- `@ryanatkn/belt` - utility functions
374-
- `@ryanatkn/moss` - CSS framework and design tokens
372+
- `@fuzdev/fuz_ui` - UI components and utilities
373+
- `@fuzdev/fuz_util` - utility functions
374+
- `@fuzdev/fuz_css` - CSS framework and design tokens
375375
- `@sveltejs/kit` - web framework
376376
- `svelte` - UI framework
377377
- `zod` - schema validation
@@ -393,7 +393,7 @@ For packages you control, use `>=` instead of `^` for peer dependencies:
393393

394394
```json
395395
"peerDependencies": {
396-
"@ryanatkn/belt": ">=0.38.0", // controlled package - use >=
396+
"@fuzdev/fuz_util": ">=0.38.0", // controlled package - use >=
397397
"@ryanatkn/gro": ">=0.174.0", // controlled package - use >=
398398
"@sveltejs/kit": "^2", // third-party - use ^
399399
"svelte": "^5" // third-party - use ^
@@ -404,7 +404,7 @@ For packages you control, use `>=` instead of `^` for peer dependencies:
404404

405405
- Eliminates npm peer dependency resolution conflicts when publishing sequentially
406406
- `^0.37.0` means `>=0.37.0 <0.38.0` in 0.x semver (excludes next minor)
407-
- When you publish `moss@0.38.0`, packages with `"@ryanatkn/moss": "^0.37.0"`
407+
- When you publish `moss@0.38.0`, packages with `"@fuzdev/fuz_css": "^0.37.0"`
408408
conflict
409409
- `>=0.37.0` allows any version `>=0.37.0`, including `0.38.0` and beyond
410410
- No need for `--legacy-peer-deps` flag

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ With fuz_gitops you can:
2424
## Usage
2525

2626
```bash
27-
npm i -D @ryanatkn/fuz_gitops
27+
npm i -D @fuzdev/fuz_gitops
2828
```
2929

3030
- configure [`gitops.config.ts`](/gitops.config.ts)
@@ -40,19 +40,19 @@ npm i -D @ryanatkn/fuz_gitops
4040

4141
```ts
4242
// gitops_sync.task.ts
43-
export * from '@ryanatkn/fuz_gitops/gitops_sync.task.js';
43+
export * from '@fuzdev/fuz_gitops/gitops_sync.task.js';
4444

4545
// gitops_analyze.task.ts
46-
export * from '@ryanatkn/fuz_gitops/gitops_analyze.task.js';
46+
export * from '@fuzdev/fuz_gitops/gitops_analyze.task.js';
4747

4848
// gitops_plan.task.ts
49-
export * from '@ryanatkn/fuz_gitops/gitops_plan.task.js';
49+
export * from '@fuzdev/fuz_gitops/gitops_plan.task.js';
5050

5151
// gitops_publish.task.ts
52-
export * from '@ryanatkn/fuz_gitops/gitops_publish.task.js';
52+
export * from '@fuzdev/fuz_gitops/gitops_publish.task.js';
5353

5454
// gitops_validate.task.ts
55-
export * from '@ryanatkn/fuz_gitops/gitops_validate.task.js';
55+
export * from '@fuzdev/fuz_gitops/gitops_validate.task.js';
5656
```
5757

5858
- run `gro gitops_sync` to sync repos and update the local data

gitops.config.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import type {CreateGitopsConfig} from './src/lib/gitops_config.js';
33
const config: CreateGitopsConfig = () => {
44
return {
55
repos: [
6-
'https://github.com/ryanatkn/moss',
7-
'https://github.com/ryanatkn/fuz',
6+
'https://github.com/fuzdev/fuz_css',
7+
'https://github.com/fuzdev/fuz_ui',
88
'https://github.com/ryanatkn/gro',
9-
'https://github.com/ryanatkn/belt',
10-
'https://github.com/ryanatkn/fuz_template',
11-
'https://github.com/ryanatkn/fuz_blog',
12-
'https://github.com/ryanatkn/fuz_mastodon',
13-
'https://github.com/ryanatkn/fuz_code',
9+
'https://github.com/fuzdev/fuz_util',
10+
'https://github.com/fuzdev/fuz_template',
11+
'https://github.com/fuzdev/fuz_blog',
12+
'https://github.com/fuzdev/fuz_mastodon',
13+
'https://github.com/fuzdev/fuz_code',
1414
{
15-
repo_url: 'https://github.com/ryanatkn/fuz_gitops',
15+
repo_url: 'https://github.com/fuzdev/fuz_gitops',
1616
branch: 'main',
1717
},
1818
],

package-lock.json

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

0 commit comments

Comments
 (0)