mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
26.32.2024 dccde1ec30fbb58e4df82941e15faa131746b82f
build(fix): recover build system

Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
1 files added
1 files modified
36 ■■■■■ changed files
.gitignore 3 ●●●●● patch | view | raw | blame | history
.versionrc.cjs 33 ●●●●● patch | view | raw | blame | history
.gitignore
@@ -33,3 +33,6 @@
# Hugo
.hugo_build.lock
resources/_gen/
# Build
.wireit
.versionrc.cjs
New 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;