@jeromefitz/conventional-gitmoji 3.2.0 → 3.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +0 -0
  3. package/changelog/config.cjs +0 -0
  4. package/changelog/config.d.ts +0 -0
  5. package/changelog/config.js +0 -0
  6. package/changelog/index.cjs +0 -0
  7. package/changelog/index.d.ts +0 -0
  8. package/changelog/index.js +0 -0
  9. package/changelog/utils/conventionalChangelog.cjs +0 -0
  10. package/changelog/utils/conventionalChangelog.d.ts +0 -0
  11. package/changelog/utils/conventionalChangelog.js +0 -0
  12. package/changelog/utils/conventionalRecommendedBump.cjs +0 -0
  13. package/changelog/utils/conventionalRecommendedBump.d.ts +0 -0
  14. package/changelog/utils/conventionalRecommendedBump.js +0 -0
  15. package/changelog/utils/gitRawCommit.cjs +0 -0
  16. package/changelog/utils/gitRawCommit.d.ts +0 -0
  17. package/changelog/utils/gitRawCommit.js +0 -0
  18. package/changelog/utils/parserOpts.cjs +0 -0
  19. package/changelog/utils/parserOpts.d.ts +0 -0
  20. package/changelog/utils/parserOpts.js +0 -0
  21. package/changelog/utils/transformer.cjs +0 -0
  22. package/changelog/utils/transformer.d.ts +0 -0
  23. package/changelog/utils/transformer.js +0 -0
  24. package/changelog/utils/writerOpts.cjs +0 -0
  25. package/changelog/utils/writerOpts.d.ts +0 -0
  26. package/changelog/utils/writerOpts.js +0 -0
  27. package/config/rewrites.cjs +0 -0
  28. package/config/rewrites.d.ts +0 -0
  29. package/config/rewrites.js +0 -0
  30. package/config/types.cjs +0 -0
  31. package/config/types.d.ts +0 -0
  32. package/config/types.js +0 -0
  33. package/index.cjs +0 -0
  34. package/index.d.ts +0 -0
  35. package/index.js +0 -0
  36. package/package.json +7 -8
  37. package/types/commit.cjs +0 -0
  38. package/types/commit.d.ts +0 -0
  39. package/types/commit.js +0 -0
  40. package/types/commit.types.cjs +0 -0
  41. package/types/commit.types.d.ts +0 -0
  42. package/types/commit.types.js +0 -0
  43. package/types/index.cjs +1 -1
  44. package/types/index.d.ts +0 -0
  45. package/types/index.js +1 -1
  46. package/types/releaseRule.cjs +1 -1
  47. package/types/releaseRule.d.ts +0 -0
  48. package/types/releaseRule.js +1 -1
  49. package/types/releaseRule.types.cjs +0 -0
  50. package/types/releaseRule.types.d.ts +0 -0
  51. package/types/releaseRule.types.js +0 -0
  52. package/utils/getGitmojiConventional.cjs +0 -0
  53. package/utils/getGitmojiConventional.d.ts +0 -0
  54. package/utils/getGitmojiConventional.js +0 -0
  55. package/utils/getReleaseRules.cjs +0 -0
  56. package/utils/getReleaseRules.d.ts +0 -0
  57. package/utils/getReleaseRules.js +0 -0
  58. package/utils/getTypeSpecs.cjs +0 -0
  59. package/utils/getTypeSpecs.d.ts +0 -0
  60. package/utils/getTypeSpecs.js +0 -0
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/config/types.cjs CHANGED
File without changes
package/config/types.d.ts CHANGED
File without changes
package/config/types.js CHANGED
File without changes
package/index.cjs CHANGED
File without changes
package/index.d.ts CHANGED
File without changes
package/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jeromefitz/conventional-gitmoji",
3
- "version": "3.2.0",
3
+ "version": "3.3.1",
4
4
  "description": "Helper package for dual gitmoji / conventional commits",
5
5
  "author": {
6
6
  "name": "Jerome Fitzgerald",
@@ -14,7 +14,7 @@
14
14
  "directory": "packages/conventional-gitmoji"
15
15
  },
16
16
  "engines": {
17
- "node": ">=14"
17
+ "node": ">=16"
18
18
  },
19
19
  "publishConfig": {
20
20
  "registry": "https://registry.npmjs.org/"
@@ -23,19 +23,18 @@
23
23
  "scripts": {
24
24
  "build": "tsup",
25
25
  "dev": "tsup --watch",
26
- "generate:types": "node ./scripts/generateTypes.js && yarn lint:fix",
26
+ "generate:types": "node ./scripts/generateTypes.js && pnpm run lint:fix",
27
27
  "---": "",
28
28
  "clean": "rm -rf .turbo && rm -rf dist",
29
- "clean:install": "yarn clean && rm -rf node_modules",
29
+ "clean:install": "pnpm run clean && rm -rf node_modules",
30
30
  "copy": "mkdir -p ./dist && ./scripts/copy.sh",
31
31
  "--- ": "",
32
32
  "lint:eslint": "eslint ./src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
33
33
  "lint:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
34
- "lint": "yarn lint:prettier --check && yarn lint:eslint",
35
- "lint:fix": "yarn lint:eslint --fix && yarn lint:prettier --write",
34
+ "lint": "pnpm run lint:prettier --check && pnpm run lint:eslint",
35
+ "lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
36
36
  "--- ": "",
37
- "semantic-release": "semantic-release",
38
- "semantic-release:mono": "semantic-release -e semantic-release-monorepo"
37
+ "semantic-release": "semantic-release"
39
38
  },
40
39
  "dependencies": {
41
40
  "grapheme-splitter": "1.0.4",
package/types/commit.cjs CHANGED
File without changes
package/types/commit.d.ts CHANGED
File without changes
package/types/commit.js CHANGED
File without changes
File without changes
File without changes
File without changes
package/types/index.cjs CHANGED
@@ -1 +1 @@
1
- var n=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var o in e)n(t,o,{get:e[o],enumerable:!0})},p=(t,e,o,c)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of s(e))!d.call(t,i)&&i!==o&&n(t,i,{get:()=>e[i],enumerable:!(c=m(e,i))||c.enumerable});return t};var u=t=>p(n({},"__esModule",{value:!0}),t);var h={};l(h,{commitTypes:()=>r,releaseRuleTypes:()=>a});module.exports=u(h);var r=["access","analytics","animation","arch","assets","beer","breaking","build","catch","chore","ci","clean","compat","config","contrib-add","data","db","dep-add","dep-rm","dep-up","deploy","docs","docs-code","downgrade","dx","egg","experiment","feat","fix","fix-ci","flags","healthcheck","hotfix","i18n","ignore","inf","init","iphone","license","lint","log-add","log-rm","logic","merge","mock","mv","patch","perf","poo","prune","pushpin","refactor","release","revert","rip","roles","rollforward","run-build","secrets","security","seed","seo","snapshot","sponsor","style","test","test-fail","texts","types","typo","ui","upgrade","ux","wip"];var a={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:"patch"},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};0&&(module.exports={commitTypes,releaseRuleTypes});
1
+ var n=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var d=(t,e)=>{for(var o in e)n(t,o,{get:e[o],enumerable:!0})},p=(t,e,o,c)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of s(e))!l.call(t,i)&&i!==o&&n(t,i,{get:()=>e[i],enumerable:!(c=m(e,i))||c.enumerable});return t};var u=t=>p(n({},"__esModule",{value:!0}),t);var h={};d(h,{commitTypes:()=>r,releaseRuleTypes:()=>a});module.exports=u(h);var r=["access","analytics","animation","arch","assets","beer","breaking","build","catch","chore","ci","clean","compat","config","contrib-add","data","db","dep-add","dep-rm","dep-up","deploy","docs","docs-code","downgrade","dx","egg","experiment","feat","fix","fix-ci","flags","healthcheck","hotfix","i18n","ignore","inf","init","iphone","license","lint","log-add","log-rm","logic","merge","mock","mv","patch","perf","poo","prune","pushpin","refactor","release","revert","rip","roles","rollforward","run-build","secrets","security","seed","seo","snapshot","sponsor","style","test","test-fail","texts","types","typo","ui","upgrade","ux","wip"];var a={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:null},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};0&&(module.exports={commitTypes,releaseRuleTypes});
package/types/index.d.ts CHANGED
File without changes
package/types/index.js CHANGED
@@ -1 +1 @@
1
- var e=["access","analytics","animation","arch","assets","beer","breaking","build","catch","chore","ci","clean","compat","config","contrib-add","data","db","dep-add","dep-rm","dep-up","deploy","docs","docs-code","downgrade","dx","egg","experiment","feat","fix","fix-ci","flags","healthcheck","hotfix","i18n","ignore","inf","init","iphone","license","lint","log-add","log-rm","logic","merge","mock","mv","patch","perf","poo","prune","pushpin","refactor","release","revert","rip","roles","rollforward","run-build","secrets","security","seed","seo","snapshot","sponsor","style","test","test-fail","texts","types","typo","ui","upgrade","ux","wip"];var t={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:"patch"},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};export{e as commitTypes,t as releaseRuleTypes};
1
+ var e=["access","analytics","animation","arch","assets","beer","breaking","build","catch","chore","ci","clean","compat","config","contrib-add","data","db","dep-add","dep-rm","dep-up","deploy","docs","docs-code","downgrade","dx","egg","experiment","feat","fix","fix-ci","flags","healthcheck","hotfix","i18n","ignore","inf","init","iphone","license","lint","log-add","log-rm","logic","merge","mock","mv","patch","perf","poo","prune","pushpin","refactor","release","revert","rip","roles","rollforward","run-build","secrets","security","seed","seo","snapshot","sponsor","style","test","test-fail","texts","types","typo","ui","upgrade","ux","wip"];var t={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:null},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};export{e as commitTypes,t as releaseRuleTypes};
@@ -1 +1 @@
1
- var o=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var s=(n,e)=>{for(var t in e)o(n,t,{get:e[t],enumerable:!0})},d=(n,e,t,c)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of a(e))!m.call(n,i)&&i!==t&&o(n,i,{get:()=>e[i],enumerable:!(c=r(e,i))||c.enumerable});return n};var l=n=>d(o({},"__esModule",{value:!0}),n);var u={};s(u,{releaseRule:()=>p});module.exports=l(u);var p={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:"patch"},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};0&&(module.exports={releaseRule});
1
+ var o=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var s=(n,e)=>{for(var t in e)o(n,t,{get:e[t],enumerable:!0})},d=(n,e,t,c)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of a(e))!m.call(n,i)&&i!==t&&o(n,i,{get:()=>e[i],enumerable:!(c=r(e,i))||c.enumerable});return n};var l=n=>d(o({},"__esModule",{value:!0}),n);var u={};s(u,{releaseRule:()=>p});module.exports=l(u);var p={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:null},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};0&&(module.exports={releaseRule});
File without changes
@@ -1 +1 @@
1
- var e={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:"patch"},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};export{e as releaseRule};
1
+ var e={access:{branch:null,code:":wheelchair:",commit:"access",description:"Improve accessibility.",emoji:"\u267F\uFE0F",entity:"♿",name:"wheelchair",semver:"patch"},analytics:{branch:null,code:":chart_with_upwards_trend:",commit:"analytics",description:"Add or update analytics or track code.",emoji:"\u{1F4C8}",entity:"📈",name:"chart-with-upwards-trend",semver:"patch"},animation:{branch:null,code:":dizzy:",commit:"animation",description:"Add or update animations and transitions.",emoji:"\u{1F4AB}",entity:"💫",name:"animation",semver:"patch"},arch:{branch:null,code:":building_construction:",commit:"arch",description:"Make architectural changes.",emoji:"\u{1F3D7}\uFE0F",entity:"&#1f3d7;",name:"building-construction",semver:null},assets:{branch:null,code:":bento:",commit:"assets",description:"Add or update assets.",emoji:"\u{1F371}",entity:"&#1F371",name:"bento",semver:"patch"},beer:{branch:null,code:":beers:",commit:"beer",description:"Write code drunkenly.",emoji:"\u{1F37B}",entity:"🍻",name:"beers",semver:null},breaking:{branch:null,code:":boom:",commit:"breaking",description:"Introduce breaking changes.",emoji:"\u{1F4A5}",entity:"💥",name:"boom",semver:"major"},build:{branch:null,code:":hammer:",commit:"build",description:"Add or update development scripts.",emoji:"\u{1F528}",entity:"🔨",name:"hammer",semver:null},catch:{branch:null,code:":goal_net:",commit:"catch",description:"Catch errors.",emoji:"\u{1F945}",entity:"🥅",name:"goal-net",semver:"patch"},chore:{branch:"chore",code:":computer_disk:",commit:"chore",description:"Changes that don\u2019t modify src or test files",emoji:"\u{1F4BD}\uFE0F",entity:"💽",name:"computer-disk",semver:null},ci:{branch:"ci",code:":construction_worker:",commit:"ci",description:"Add or update CI build system.",emoji:"\u{1F477}",entity:"👷",name:"construction-worker",semver:null},clean:{branch:null,code:":wastebasket:",commit:"clean",description:"Deprecate code that needs to be cleaned up.",emoji:"\u{1F5D1}\uFE0F",entity:"🗑",name:"wastebasket",semver:"patch"},compat:{branch:null,code:":alien:",commit:"compat",description:"Update code due to external API changes.",emoji:"\u{1F47D}\uFE0F",entity:"&#1F47D;",name:"alien",semver:"patch"},config:{branch:null,code:":wrench:",commit:"config",description:"Add or update configuration files.",emoji:"\u{1F527}",entity:"🔧",name:"wrench",semver:"patch"},"contrib-add":{branch:null,code:":busts_in_silhouette:",commit:"contrib-add",description:"Add or update contributor(s).",emoji:"\u{1F465}",entity:"👥",name:"busts-in-silhouette",semver:null},data:{branch:null,code:":monocle_face:",commit:"data",description:"Data exploration/inspection.",emoji:"\u{1F9D0}",entity:"🧐",name:"monocle-face",semver:null},db:{branch:null,code:":card_file_box:",commit:"db",description:"Perform database related changes.",emoji:"\u{1F5C3}\uFE0F",entity:"🗃",name:"card-file-box",semver:"patch"},"dep-add":{branch:null,code:":heavy_plus_sign:",commit:"dep-add",description:"Add a dependency.",emoji:"\u2795",entity:"➕",name:"heavy-plus-sign",semver:"patch"},"dep-rm":{branch:null,code:":heavy_minus_sign:",commit:"dep-rm",description:"Remove a dependency.",emoji:"\u2796",entity:"➖",name:"heavy-minus-sign",semver:"patch"},"dep-up":{branch:null,code:":package:",commit:"dep-up",description:"Add or update compiled files or packages.",emoji:"\u{1F4E6}\uFE0F",entity:"&#1F4E6;",name:"package",semver:null},deploy:{branch:null,code:":rocket:",commit:"deploy",description:"Deploy stuff.",emoji:"\u{1F680}",entity:"🚀",name:"rocket",semver:null},docs:{branch:null,code:":memo:",commit:"docs",description:"Add or update documentation.",emoji:"\u{1F4DD}",entity:"📝",name:"memo",semver:null},"docs-code":{branch:null,code:":bulb:",commit:"docs-code",description:"Add or update comments in source code.",emoji:"\u{1F4A1}",entity:"💡",name:"bulb",semver:null},downgrade:{branch:null,code:":arrow_down:",commit:"downgrade",description:"Downgrade dependencies.",emoji:"\u2B07\uFE0F",entity:"\u2B07\uFE0F",name:"arrow-down",semver:"patch"},dx:{branch:null,code:":technologist:",commit:"dx",description:"Improve developer experience",emoji:"\u{1F9D1}\u200D\u{1F4BB}",entity:"🧑‍💻",name:"technologist",semver:null},egg:{branch:null,code:":egg:",commit:"egg",description:"Add or update an easter egg.",emoji:"\u{1F95A}",entity:"🥚",name:"egg",semver:"patch"},experiment:{branch:null,code:":alembic:",commit:"experiment",description:"Perform experiments.",emoji:"\u2697\uFE0F",entity:"📸",name:"alembic",semver:"patch"},feat:{branch:"feature",code:":sparkles:",commit:"feat",description:"Introduce new features.",emoji:"\u2728",entity:"✨",name:"sparkles",semver:"minor"},fix:{branch:"fix",code:":bug:",commit:"fix",description:"Fix a bug.",emoji:"\u{1F41B}",entity:"🐛",name:"bug",semver:"patch"},"fix-ci":{branch:null,code:":green_heart:",commit:"fix-ci",description:"Fix CI Build.",emoji:"\u{1F49A}",entity:"💚",name:"green-heart",semver:null},flags:{branch:null,code:":triangular_flag_on_post:",commit:"flags",description:"Add, update, or remove feature flags.",emoji:"\u{1F6A9}",entity:"🚩",name:"triangular-flag-on-post",semver:"patch"},healthcheck:{branch:null,code:":stethoscope:",commit:"healthcheck",description:"Add or update healthcheck.",emoji:"\u{1FA7A}",entity:"🩺",name:"stethoscope",semver:null},hotfix:{branch:"hotfix",code:":ambulance:",commit:"hotfix",description:"Critical hotfix.",emoji:"\u{1F691}\uFE0F",entity:"🚑",name:"ambulance",semver:"patch"},i18n:{branch:null,code:":globe_with_meridians:",commit:"i18n",description:"Internationalization and localization.",emoji:"\u{1F310}",entity:"🌐",name:"globe-with-meridians",semver:"patch"},ignore:{branch:null,code:":see_no_evil:",commit:"ignore",description:"Add or update a .gitignore file.",emoji:"\u{1F648}",entity:"&#8bdfe7;",name:"see-no-evil",semver:null},inf:{branch:null,code:":bricks:",commit:"inf",description:"Infrastructure related changes.",emoji:"\u{1F9F1}",entity:"🧱",name:"bricks",semver:null},init:{branch:null,code:":tada:",commit:"init",description:"Begin a project.",emoji:"\u{1F389}",entity:"🎉",name:"tada",semver:"patch"},iphone:{branch:null,code:":iphone:",commit:"iphone",description:"Work on responsive design.",emoji:"\u{1F4F1}",entity:"📱",name:"iphone",semver:"patch"},license:{branch:null,code:":page_facing_up:",commit:"license",description:"Add or update license.",emoji:"\u{1F4C4}",entity:"&#1F4C4;",name:"page-facing-up",semver:null},lint:{branch:null,code:":rotating_light:",commit:"lint",description:"Fix compiler / linter warnings.",emoji:"\u{1F6A8}",entity:"🚨",name:"rotating-light",semver:null},"log-add":{branch:null,code:":loud_sound:",commit:"log-add",description:"Add or update logs.",emoji:"\u{1F50A}",entity:"🔊",name:"loud-sound",semver:null},"log-rm":{branch:null,code:":mute:",commit:"log-rm",description:"Remove logs.",emoji:"\u{1F507}",entity:"🔇",name:"mute",semver:null},logic:{branch:null,code:":necktie:",commit:"logic",description:"Add or update business logic",emoji:"\u{1F454}",entity:"👔",name:"necktie",semver:"patch"},merge:{branch:null,code:":twisted_rightwards_arrows:",commit:"merge",description:"Merge branches.",emoji:"\u{1F500}",entity:"🔀",name:"twisted-rightwards-arrows",semver:null},mock:{branch:null,code:":clown_face:",commit:"mock",description:"Mock things.",emoji:"\u{1F921}",entity:"🤡",name:"clown-face",semver:null},mv:{branch:null,code:":truck:",commit:"mv",description:"Move or rename resources (e.g.: files, paths, routes).",emoji:"\u{1F69A}",entity:"&#1F69A;",name:"truck",semver:null},patch:{branch:null,code:":adhesive_bandage:",commit:"patch",description:"Simple fix for a non-critical issue.",emoji:"\u{1FA79}",entity:"🩹",name:"adhesive-bandage",semver:"patch"},perf:{branch:null,code:":zap:",commit:"perf",description:"Improve performance.",emoji:"\u26A1\uFE0F",entity:"⚡",name:"zap",semver:"patch"},poo:{branch:null,code:":poop:",commit:"poo",description:"Write bad code that needs to be improved.",emoji:"\u{1F4A9}",entity:"",name:"poop",semver:null},prune:{branch:null,code:":fire:",commit:"prune",description:"Remove code or files.",emoji:"\u{1F525}",entity:"🔥",name:"fire",semver:null},pushpin:{branch:null,code:":pushpin:",commit:"pushpin",description:"Pin dependencies to specific versions.",emoji:"\u{1F4CC}",entity:"📌",name:"pushpin",semver:"patch"},refactor:{branch:"refactor",code:":recycle:",commit:"refactor",description:"Refactor code.",emoji:"\u267B\uFE0F",entity:"♲",name:"recycle",semver:null},release:{branch:"release",code:":bookmark:",commit:"release",description:"Release / Version tags.",emoji:"\u{1F516}",entity:"🔖",name:"bookmark",semver:null},revert:{branch:null,code:":rewind:",commit:"revert",description:"Revert changes.",emoji:"\u23EA\uFE0F",entity:"⏪",name:"rewind",semver:"patch"},rip:{branch:null,code:":coffin:",commit:"rip",description:"Remove dead code.",emoji:"\u26B0\uFE0F",entity:"⚰",name:"coffin",semver:null},roles:{branch:null,code:":passport_control:",commit:"roles",description:"Work on code related to authorization, roles and permissions.",emoji:"\u{1F6C2}",entity:"🛂",name:"passport-control",semver:"patch"},rollforward:{branch:null,code:":fast_forward:",commit:"rollforward",description:"Create rollforward version.",emoji:"\u23E9\uFE0F",entity:"&#23E9;",name:"rollforward",semver:null},"run-build":{branch:null,code:":rocket:",commit:"run-build",description:"Custom type for CI/CD to hook into run build override.",emoji:"\u{1F680}\uFE0F",entity:"&#1F680;",name:"run-build",semver:"patch"},secrets:{branch:null,code:":closed_lock_with_key:",commit:"secrets",description:"Add or update secrets.",emoji:"\u{1F510}",entity:"🔐",name:"closed-lock-with-key",semver:null},security:{branch:null,code:":lock:",commit:"security",description:"Fix security issues.",emoji:"\u{1F512}\uFE0F",entity:"🔒",name:"lock",semver:"patch"},seed:{branch:null,code:":seedling:",commit:"seed",description:"Add or update seed files.",emoji:"\u{1F331}",entity:"🌱",name:"seedling",semver:null},seo:{branch:null,code:":mag:",commit:"seo",description:"Improve SEO.",emoji:"\u{1F50D}\uFE0F",entity:"🔍",name:"mag",semver:"patch"},snapshot:{branch:null,code:":camera_flash:",commit:"snapshot",description:"Add or update snapshots.",emoji:"\u{1F4F8}",entity:"📸",name:"camera-flash",semver:null},sponsor:{branch:null,code:":money_with_wings:",commit:"sponsor",description:"Add sponsorships or money related infrastructure.",emoji:"\u{1F4B8}",entity:"💸",name:"money-with-wings",semver:null},style:{branch:null,code:":art:",commit:"style",description:"Improve structure / format of the code.",emoji:"\u{1F3A8}",entity:"🎨",name:"art",semver:null},test:{branch:"test",code:":white_check_mark:",commit:"test",description:"Add, update, or pass tests.",emoji:"\u2705",entity:"✅",name:"white-check-mark",semver:null},"test-fail":{branch:null,code:":test_tube:",commit:"test-fail",description:"Add a failing test.",emoji:"\u{1F9EA}",entity:"🧪",name:"test-tube",semver:null},texts:{branch:null,code:":speech_balloon:",commit:"texts",description:"Add or update text and literals.",emoji:"\u{1F4AC}",entity:"💬",name:"speech-balloon",semver:"patch"},types:{branch:null,code:":label:",commit:"types",description:"Add or update types.",emoji:"\u{1F3F7}\uFE0F",entity:"🏷",name:"label",semver:"patch"},typo:{branch:null,code:":pencil2:",commit:"typo",description:"Fix typos.",emoji:"\u270F\uFE0F",entity:"",name:"pencil2",semver:"patch"},ui:{branch:null,code:":lipstick:",commit:"ui",description:"Add or update the UI and style files.",emoji:"\u{1F484}",entity:"&#ff99cc;",name:"lipstick",semver:"patch"},upgrade:{branch:null,code:":arrow_up:",commit:"upgrade",description:"Upgrade dependencies.",emoji:"\u2B06\uFE0F",entity:"\u2B06\uFE0F",name:"arrow-up",semver:"patch"},ux:{branch:null,code:":children_crossing:",commit:"ux",description:"Improve user experience / usability.",emoji:"\u{1F6B8}",entity:"🚸",name:"children-crossing",semver:"patch"},wip:{branch:null,code:":construction:",commit:"wip",description:"Work in progress.",emoji:"\u{1F6A7}",entity:"🚧",name:"construction",semver:null}};export{e as releaseRule};
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes