strapi-html-editor
Version:
Presenting an alternative to standard wysiwyg editor in Strapi in the form of this HTML-editor that facilitates easier and hussle-free data customization to use with various frontends.
32 lines • 713 B
JSON
{
"extends": "semantic-release",
"branches": [
"main",
"develop",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
["@semantic-release/npm", {
"npmPublish": true
}],
["@semantic-release/exec", {
"successCmd": "npm dist-tag add $(node -p -e 'require(`./package.json`).name')@$(node -p -e 'require(`./package.json`).version') latest"
}],
[
"@semantic-release/git",
{
"assets": [
"changelog.md",
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
],
"dryRun": false,
"ci": false
}