Skip to content

Commit

Permalink
Merge pull request #3 from pigeonposse/0.2.0
Browse files Browse the repository at this point in the history
Update ci
  • Loading branch information
AlejoMalia authored Sep 10, 2024
2 parents 1f16730 + 5fd048f commit fb89211
Show file tree
Hide file tree
Showing 26 changed files with 8,219 additions and 325 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
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)
17 changes: 17 additions & 0 deletions .changeset/config.json
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": []
}
76 changes: 76 additions & 0 deletions .dev/cz-config.cjs
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,
}
Loading

0 comments on commit fb89211

Please sign in to comment.