-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from pigeonposse/0.2.0
Update ci
- Loading branch information
Showing
26 changed files
with
8,219 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", | ||
"changelog": [ | ||
"@changesets/changelog-github", | ||
{ | ||
"repo": "pigeonposse/personality" | ||
} | ||
], | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"privatePackages": { "version": true, "tag": true }, | ||
"ignore": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/** | ||
* Cz-customizable config.. | ||
* | ||
* @description Cz-customizable config. | ||
* @see https://github.com/leoforfree/cz-customizable | ||
*/ | ||
const { extra } = require( '../package.json' ) | ||
|
||
module.exports = { | ||
types : [ | ||
{ | ||
value : ':sparkles: feat', | ||
name : '✨ feat:\tAdding a new feature', | ||
}, | ||
{ | ||
value : ':bug: fix', | ||
name : '🐛 fix:\tFixing a bug', | ||
}, | ||
{ | ||
value : ':memo: docs', | ||
name : '📝 docs:\tAdd or update documentation', | ||
}, | ||
{ | ||
value : ':lipstick: style', | ||
name : '💄 style:\tAdd or update styles, ui or ux', | ||
}, | ||
{ | ||
value : ':recycle: refactor', | ||
name : '♻️ refactor:\tCode change that neither fixes a bug nor adds a feature', | ||
}, | ||
{ | ||
value : ':zap: perf', | ||
name : '⚡️ perf:\tCode change that improves performance', | ||
}, | ||
{ | ||
value : ':white_check_mark: test', | ||
name : '✅ test:\tAdding tests cases', | ||
}, | ||
{ | ||
value : ':truck: chore', | ||
name : '🚚 chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation', | ||
}, | ||
{ | ||
value : ':rewind: revert', | ||
name : '⏪️ revert:\tRevert to a commit', | ||
}, | ||
{ | ||
value : ':construction: wip', | ||
name : '🚧 wip:\tWork in progress', | ||
}, | ||
{ | ||
value : ':construction_worker: build', | ||
name : '👷 build:\tAdd or update regards to build process', | ||
}, | ||
{ | ||
value : ':green_heart: ci', | ||
name : '💚 ci:\tAdd or update regards to build process', | ||
}, | ||
], | ||
|
||
scopes : extra.scopes, | ||
scopeOverrides : { | ||
fix : [ | ||
{ name: 'merge' }, | ||
{ name: 'style' }, | ||
{ name: 'test' }, | ||
{ name: 'hotfix' }, | ||
], | ||
}, | ||
|
||
allowCustomScopes : true, | ||
allowBreakingChanges : [ 'feat', 'fix' ], | ||
// skip any questions you want | ||
// skipQuestions: ['body'], | ||
subjectLimit : 100, | ||
} |
Oops, something went wrong.