Skip to content

Commit ea74464

Browse files
committed
name changes
1 parent 8fd9620 commit ea74464

44 files changed

Lines changed: 147 additions & 115 deletions

Some content is hidden

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

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"access": "public",
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
10-
"ignore": ["@epoch/demo"]
10+
"ignore": ["@epochflow/demo"]
1111
}

.cursor/rules/architecture.mdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Architecture rules for the Epoch monorepo
2+
description: Architecture rules for the Epoch Flow monorepo
33
globs: "**/*"
44
alwaysApply: true
55
---
@@ -13,7 +13,7 @@ alwaysApply: true
1313
- Never create circular dependencies between packages.
1414

1515
## Headless Library
16-
- Epoch is headless. **Never** add UI components, CSS, or styling to `packages/core/` or `packages/react/`.
16+
- Epoch Flow is headless. **Never** add UI components, CSS, or styling to `packages/core/` or `packages/react/`.
1717
- The demo app (`apps/demo/`) is the only place for UI and styling.
1818

1919
## Peer Dependencies

.cursor/rules/documentation.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Documentation rules for the Epoch project
2+
description: Documentation rules for the Epoch Flow project
33
globs: "**/*"
44
alwaysApply: true
55
---

.cursor/rules/testing.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Testing rules for the Epoch project
2+
description: Testing rules for the Epoch Flow project
33
globs: "**/*"
44
alwaysApply: true
55
---

.cursor/rules/typescript-standards.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: TypeScript quality standards for the Epoch project
2+
description: TypeScript quality standards for the Epoch Flow project
33
globs: "**/*.ts,**/*.tsx"
44
alwaysApply: true
55
---

.cursor/rules/workflow.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Workflow rules for the Epoch project
2+
description: Workflow rules for the Epoch Flow project
33
globs: "**/*"
44
alwaysApply: true
55
---

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ body:
3131
id: version
3232
attributes:
3333
label: Package version
34-
description: Which version of `@epoch/core` or `@epoch/react` are you using?
34+
description: Which version of `@epochflow/core` or `@epochflow/react` are you using?
3535
validations:
3636
required: true
3737
- type: input

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Feature Request
2-
description: Suggest an idea or improvement for Epoch.
2+
description: Suggest an idea or improvement for Epoch Flow.
33
labels: [enhancement]
44
body:
55
- type: textarea

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ jobs:
2121
registry-url: https://registry.npmjs.org
2222
- run: pnpm install
2323
- run: pnpm build
24+
# Requires repo secret NPM_TOKEN (token whose user can publish @epochflow/* on npm).
25+
# setup-node writes .npmrc using NODE_AUTH_TOKEN; changesets/action reads NPM_TOKEN — set both.
26+
# E404 on PUT .../@epochflow%2f... usually means scope permission (create/join npm org "epochflow"), not a missing secret.
2427
- uses: changesets/action@v1
2528
with:
2629
publish: pnpm release
2730
env:
2831
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2932
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Epoch — Agent Instructions
1+
# Epoch Flow — Agent Instructions
22

3-
> This document contains mandatory rules for AI coding assistants working on the Epoch project.
3+
> This document contains mandatory rules for AI coding assistants working on the Epoch Flow project.
44
> **Read this entire file before making any changes.**
55
66
---
@@ -110,7 +110,7 @@
110110
- Never create circular dependencies between packages.
111111

112112
### 4.2 Headless Library
113-
- Epoch is headless. **Never** add UI components, CSS, or styling to `packages/core/` or `packages/react/`.
113+
- Epoch Flow is headless. **Never** add UI components, CSS, or styling to `packages/core/` or `packages/react/`.
114114
- The demo app (`apps/demo/`) is the only place for UI and styling.
115115

116116
### 4.3 Peer Dependencies

0 commit comments

Comments
 (0)