Skip to content

Commit fc45083

Browse files
committed
fix: rename chimp-core for build
1 parent 36fead3 commit fc45083

36 files changed

Lines changed: 33 additions & 15 deletions

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Welcome to the **chimp-stack**, the monorepo that houses the growing family of tools designed to make your development workflow smoother, sassier, and suspiciously simian.
66

7-
This monorepo is built using **Turborepo** and managed via **npm** workspaces. Each tool can be developed, built, and released independentlyβ€”but shares common logic via `chimp-core`.
7+
This monorepo is built using **Turborepo** and managed via **npm** workspaces. Each tool can be developed, built, and released independentlyβ€”but shares common logic via `@chimp-stack/core`.
88

99
---
1010

@@ -20,7 +20,7 @@ This monorepo is built using **Turborepo** and managed via **npm** workspaces. E
2020
### Package Releases
2121
- [`git-chimp`](https://github.com/Chimp-Stack/chimp-stack/releases?q=git-chimp)
2222
- [`doc-chimp`](https://github.com/Chimp-Stack/chimp-stack/releases?q=doc-chimp)
23-
- [`chimp-core`](https://github.com/Chimp-Stack/chimp-stack/releases?q=chimp-core)
23+
- [`core`](https://github.com/Chimp-Stack/chimp-stack/releases?q=core)
2424

2525
---
2626

@@ -91,7 +91,7 @@ See individual package `.releaserc` files for configuration.
9191
```sh
9292
chimp-stack/
9393
β”œβ”€β”€ packages/
94-
β”‚ β”œβ”€β”€ chimp-core/ # shared logic
94+
β”‚ β”œβ”€β”€ core/ # shared logic
9595
β”‚ β”œβ”€β”€ git-chimp/ # git commit / PR helper
9696
β”‚ β”œβ”€β”€ doc-chimp/ # doc generator
9797
β”‚ └── review-chimp/ # (planned)

β€Žpackage-lock.jsonβ€Ž

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🧠 chimp-core
1+
# 🧠 @chimp-stack/core
22

33
> Shared configuration and environment loader for the growing chimp toolchain.
44
@@ -21,7 +21,7 @@ npm install @chimp-stack/core
2121
Or in a monorepo:
2222

2323
```bash
24-
npm install --workspace=@chimp-stack/chimp-core
24+
npm install --workspace=@chimp-stack/core
2525
```
2626

2727
---
@@ -31,7 +31,7 @@ npm install --workspace=@chimp-stack/chimp-core
3131
In your tool package (e.g., `git-chimp`, `review-chimp`), import and use the helpers:
3232

3333
```ts
34-
import { loadChimpConfig, getEnv } from 'chimp-core';
34+
import { loadChimpConfig, getEnv } from '@chimp-stack/core';
3535

3636
const config = loadChimpConfig('gitChimp');
3737
const env = getEnv();
@@ -98,12 +98,12 @@ If used inside a Turborepo or other monorepo setup, make sure its `package.json`
9898

9999
## πŸ’ Part of the Chimp Stackβ„’
100100

101-
* [`git-chimp`](https://www.npmjs.com/package/git-chimp) – commit & PR generator
102-
[source](https://github.com/MarkRabey/chimp-stack/tree/main/packages/git-chimp)
103-
* [`doc-chimp`](https://www.npmjs.com/package/doc-chimp) – auto-documentation from commits and code (WIP)
104-
[source](https://github.com/MarkRabey/chimp-stack/tree/main/packages/doc-chimp)
101+
* [`git-chimp`](https://www.npmjs.com/package/@chimp-stack/git-chimp) – commit & PR generator
102+
[source](https://github.com/Chimp-Stack/chimp-stack/tree/main/packages/git-chimp)
103+
* [`doc-chimp`](https://www.npmjs.com/package/@chimp-stack/doc-chimp) – auto-documentation from commits and code
104+
[source](https://github.com/Chimp-Stack/chimp-stack/tree/main/packages/doc-chimp)
105105
* `review-chimp` – coming soon: let the monkey do your code reviews
106-
* `chimp-core` – this package
107-
[source](https://github.com/MarkRabey/chimp-stack/tree/main/packages/chimp-core)
106+
* `core` – this package
107+
[source](https://github.com/Chimp-Stack/chimp-stack/tree/main/packages/core)
108108

109109
> *β€œBecause even the best engineers deserve a monkey on their shoulder.”*
File renamed without changes.

0 commit comments

Comments
Β (0)