@cocreate/webpack
Version:
A Webpack integration tool for CoCreate applications, enabling file watching, automated chunking, lazy loading, and file uploading. It leverages CoCreate.config for streamlined project builds and development workflows.
30 lines • 671 B
JavaScript
module.exports = {
dryRun: false,
branches: ["main"],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
},
],
"@semantic-release/npm",
[
"@semantic-release/github",
{
successComment: false,
failTitle: false,
},
],
[
"@semantic-release/git",
{
// Only stage and commit the changelog and package.json
assets: ["CHANGELOG.md", "package.json"],
message: "chore(release): ${nextRelease.version} [skip ci]",
},
],
],
};