Skip to content

Commit 2fb3bcc

Browse files
committed
rename create-fynpo
1 parent 504b717 commit 2fb3bcc

37 files changed

Lines changed: 1928 additions & 71 deletions

CLAUDE.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

docusaurus/docs/getting-started/commitlint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ npx husky install
3939
npx husky add .husky/commit-msg 'npx --no-install fynpo commitlint --edit $1'
4040
```
4141

42-
**Note**: fynpo repo initialized using `create-fynpo` will alreday have `husky` added in `devDependencies` and also `husky install` added to the `prepare` script.
42+
**Note**: fynpo repo initialized using `@fynjs/create-monorepo` will already have `husky` added in `devDependencies` and also `husky install` added to the `prepare` script.
4343

4444
#### Test:
4545

docusaurus/docs/getting-started/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Installation
66
To create a new fynpo monorepo:
77

88
```
9-
npx create-fynpo fynpo-repo
9+
npx @fynjs/create-monorepo fynpo-repo
1010
cd fynpo-repo
1111
fyn # Install dependencies
1212
```
@@ -21,16 +21,16 @@ Running this command will:
2121
- create an empty `packages` directory
2222
- add `commitlint` config if enabled
2323

24-
Please visit [here](https://github.com/electrode-io/fynpo/blob/master/packages/create-fynpo/README.md) for more detailed information about `create-fynpo`.
24+
Please visit [here](https://github.com/jchip/fynjs/blob/master/packages/create-monorepo/README.md) for more detailed information about `@fynjs/create-monorepo`.
2525

2626
#### Options:
2727

28-
**`commitlint`** : Used to initialize the repo with commitlint configuration. This is enabled by default.
28+
**`commitlint`** : Used to initialize the repo with commitlint configuration. This is enabled by default.
2929

3030
To initialize the repo without commitlint configuration, run the command with `no-commitlint` options. In this case, a simple `fynpo.json` config file will be added instead of `fynpo.config.js`.
3131

3232
```
33-
npx create-fynpo fynpo-repo --no-commitlint
33+
npx @fynjs/create-monorepo fynpo-repo --no-commitlint
3434
```
3535

3636
The `commitlint` configuration can always be added later by running:

docusaurus/docs/packages.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ title: The Packages
55

66
Fynpo monorepo solution includes 4 npm packages:
77

8-
### [create-fynpo](https://github.com/electrode-io/fynpo/tree/master/packages/create-fynpo)
8+
### [@fynjs/create-monorepo](https://github.com/jchip/fynjs/tree/master/packages/create-monorepo)
99
Supplement tool to create a new fynpo monorepo.
1010

1111
```
12-
npx create-fynpo fynpo-repo
12+
npx @fynjs/create-monorepo fynpo-repo
1313
cd fynpo-repo
1414
fyn # Install dependencies
1515
```
1616

1717
Adds `fynpo` as a dev dependency in the monorepo and also add necessary configurations.
1818

19-
### [fynpo](https://github.com/electrode-io/fynpo/tree/master/packages/fynpo)
19+
### [fynpo](https://github.com/jchip/fynjs/tree/master/packages/fynpo)
2020
Lerna based mono-repo management tool that the user's mono-repo installs. It supports the below listed commands.
2121

2222
- `fynpo init` - Initialize a new fynpo monorepo. Supports `commitlint` option to add commitlint config to an existing repo.
@@ -35,15 +35,15 @@ Lerna based mono-repo management tool that the user's mono-repo installs. It sup
3535

3636
- `fynpo publish` - Publish the packages thats been updated.
3737

38-
### [fynpo-cli](https://github.com/electrode-io/fynpo/tree/master/packages/fynpo-cli)
38+
### [fynpo-cli](https://github.com/jchip/fynjs/tree/master/packages/fynpo-cli)
3939
A lightweight module that's only for installing to npm global.
4040
This allows user to invoke fynpo commands from within a package and not require npx.
4141

4242
```
4343
npm i -g fynpo-cli
4444
```
4545

46-
### [fyn](https://github.com/electrode-io/fyn)
46+
### [fyn](https://github.com/jchip/fynjs/tree/master/packages/fyn)
4747
The node.js package manager that handles installing dependencies. It will have some fynpo awareness and load any relevant fynpo config when a mono-repo is detected.t's best if user has this install into npm global.
4848

4949
```

0 commit comments

Comments
 (0)