Skip to content

Commit

Permalink
build(fix): recover build system
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Kollitsch <[email protected]>
  • Loading branch information
davidsneighbour committed Sep 26, 2024
1 parent 4e613a9 commit dccde1e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ partials/structure/stylesheet.html
# Hugo
.hugo_build.lock
resources/_gen/

# Build
.wireit
33 changes: 33 additions & 0 deletions .versionrc.cjs
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit dccde1e

Please sign in to comment.