Skip to content

Commit

Permalink
✨ feat: add new monorepo params to work with monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Dec 24, 2022
1 parent 8a50b94 commit 6fdbc7f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/release-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@ shareable [semantic-release][semantic-release] configuration for gitmoji commit

## How to use

### Basic Usage

```js
// .releaserc.js
module.exports = {
extends: ['semantic-release-config-gitmoji'],
};
```

### Create your config

```js
const { createConfig } = require('semantic-release-config-gitmoji/lib/createConfig');

const config = createConfig({ monorepo: true });

module.exports = config;
```

## License
Expand Down
1 change: 1 addition & 0 deletions packages/release-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"license": "MIT",
"author": "Arvin Xu <arvinx@foxmail.com>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
Expand Down

0 comments on commit 6fdbc7f

Please sign in to comment.