Skip to content

Commit f7ed455

Browse files
refactor: rename packages/core to packages/fp (#266)
- Rename folder from packages/core to packages/fp to match package name @deessejs/fp - Update all references in workflows, docs, and rules - Update skill metadata name from deessejs-core to deesse-fp - Fix broken links in comparison.mdx pointing to removed why-not-try-catch page Co-authored-by: martyy-code <nesalia.inc@gmail.com>
1 parent e7646c6 commit f7ed455

71 files changed

Lines changed: 30 additions & 31 deletions

Some content is hidden

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

.claude/rules/error-handling.md

Lines changed: 1 addition & 1 deletion

.claude/rules/functional-programming.md

Lines changed: 1 addition & 1 deletion

.claude/rules/railway-oriented-programming.md

Lines changed: 1 addition & 1 deletion

.claude/skills/doc-score/SKILL.md

Lines changed: 1 addition & 1 deletion

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ updates:
3838

3939
# Package-specific updates (if you add more packages)
4040
# - package-ecosystem: "npm"
41-
# directory: "/packages/core"
41+
# directory: "/packages/fp"
4242
# schedule:
4343
# interval: "weekly"

.github/workflows/coverage.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'packages/core/src/**'
8-
- 'packages/core/tests/**'
9-
- 'packages/core/vitest.config.ts'
10-
- 'packages/core/tsconfig.json'
7+
- 'packages/fp/src/**'
8+
- 'packages/fp/tests/**'
9+
- 'packages/fp/vitest.config.ts'
10+
- 'packages/fp/tsconfig.json'
1111
pull_request:
1212
branches: [main]
1313
paths:
14-
- 'packages/core/src/**'
15-
- 'packages/core/tests/**'
16-
- 'packages/core/vitest.config.ts'
17-
- 'packages/core/tsconfig.json'
14+
- 'packages/fp/src/**'
15+
- 'packages/fp/tests/**'
16+
- 'packages/fp/vitest.config.ts'
17+
- 'packages/fp/tsconfig.json'
1818

1919
concurrency:
2020
group: ${{ github.workflow }}-${{ github.ref }}
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Run tests with coverage
6767
run: |
68-
cd packages/core
68+
cd packages/fp
6969
npx vitest run --coverage
7070
7171
- name: Find coverage comment
@@ -102,7 +102,7 @@ jobs:
102102
script: |
103103
try {
104104
const fs = require('fs');
105-
const coveragePath = './packages/core/coverage/coverage-summary.json';
105+
const coveragePath = './packages/fp/coverage/coverage-summary.json';
106106
107107
if (!fs.existsSync(coveragePath)) {
108108
console.log('Coverage file not found, skipping comment');

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Publish to npm
3131
run: |
32-
cd packages/core
32+
cd packages/fp
3333
echo '//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}' > .npmrc
3434
npm publish --include-dist --access public
3535

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
# Require 2 approvals for these paths
77
.github/ @AliiiBenn
8-
packages/core/src/ @AliiiBenn
8+
packages/fp/src/ @AliiiBenn

SECURITY.md

Lines changed: 0 additions & 1 deletion

apps/web/content/docs/comparison.mdx

Lines changed: 2 additions & 2 deletions

0 commit comments

Comments
 (0)