Compare commits

...

2 Commits

Author SHA1 Message Date
Derrick Hammer 0ba3e5e5f5
fix: releaserc missing from templates 2023-06-25 04:59:59 -04:00
Derrick Hammer 7bba8356e0
fix: syntax error 2023-06-25 04:59:45 -04:00
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ export default async function (): Promise<PresetAsset> {
extends: ["presetter-preset-strict"],
template: {
".github/workflows/ci.yml": resolve(TEMPLATES, "ci.yml"),
".releaserc.json": resolve(TEMPLATES, ".releaserc.json"),
},
noSymlinks: [".github/workflows/ci.yml"],
variable: DEFAULT_VARIABLE,

View File

@ -8,7 +8,7 @@
{ "revert": true, "release": "patch" },
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "perf", "release": "patch" }
{ "type": "perf", "release": "patch" },
{ "type": "refactor", "release": "patch" }
]
}