build(fix): recover build system
Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
This commit is contained in:
parent
4e613a92d0
commit
dccde1ec30
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -33,3 +33,6 @@ partials/structure/stylesheet.html
|
|||
# Hugo
|
||||
.hugo_build.lock
|
||||
resources/_gen/
|
||||
|
||||
# Build
|
||||
.wireit
|
||||
|
|
33
.versionrc.cjs
Normal file
33
.versionrc.cjs
Normal file
|
@ -0,0 +1,33 @@
|
|||
const defaultStandardVersion = require('@davidsneighbour/release-config');
|
||||
const localStandardVersion = {
|
||||
scripts: {},
|
||||
bumpFiles: [
|
||||
{
|
||||
filename: "package.json",
|
||||
type: "json",
|
||||
},
|
||||
{
|
||||
filename: "exampleSite/data/ananke/build.json",
|
||||
type: "json",
|
||||
},
|
||||
],
|
||||
header: "# Changelog",
|
||||
types: [
|
||||
{ type: "content", section: "Content" },
|
||||
{ type: "docs", section: "Documentation" },
|
||||
{ type: "feat", section: "Features" },
|
||||
{ type: "theme", section: "Theme" },
|
||||
{ type: "style", section: "Styling" },
|
||||
{ type: "refactor", section: "Refactors" },
|
||||
{ type: "test", section: "Tests" },
|
||||
{ type: "chore", section: "Chore" },
|
||||
{ type: "config", section: "Configuration" },
|
||||
{ type: "build", section: "Build System" },
|
||||
{ type: "ci", section: "CI" },
|
||||
]
|
||||
};
|
||||
const standardVersion = {
|
||||
...defaultStandardVersion,
|
||||
...localStandardVersion,
|
||||
};
|
||||
module.exports = standardVersion;
|
Loading…
Reference in a new issue