Skip to content

Commit

Permalink
Missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Jun 10, 2024
1 parent 721cf19 commit 17c512e
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start",
"start": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start",
"start:prod": "pnpm --filter @plone/volto start:prod",
"build": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build",
"build": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build",
"build:deps": "pnpm --filter @plone/registry --filter @plone/components build",
"i18n": "pnpm --filter addons i18n",
"test": "RAZZLE_JEST_CONFIG=$(pwd)/jest-addon.config.js pnpm --filter @plone/volto test -- --passWithNoTests",
Expand Down
25 changes: 25 additions & 0 deletions packages/volto-button-block/.release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"hooks": {
"after:bump": [
"pipx run towncrier build --draft --yes --version ${version} > .changelog.draft",
"pipx run towncrier build --yes --version ${version}",
"cp ../../README.md ./ && cp CHANGELOG.md ../../CHANGELOG.md",
"python3 -c 'import json; data = json.load(open(\"../../package.json\")); data[\"version\"] = ${version}; json.dump(data, open(\"../../package.json\", \"w\"), indent=2)'",
"git add ../../CHANGELOG.md ../../package.json"
],
"after:release": "rm .changelog.draft README.md"
},
"git": {
"changelog": "pipx run towncrier build --draft --yes --version 0.0.0",
"requireUpstream": false,
"requireCleanWorkingDir": false,
"commitMessage": "Release ${version}",
"tagName": "${version}",
"tagAnnotation": "Release ${version}"
},
"github": {
"release": true,
"releaseName": "${version}",
"releaseNotes": "cat .changelog.draft"
}
}
68 changes: 68 additions & 0 deletions packages/volto-button-block/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# kitconcept's volto-button-block Release Notes

<!-- You should *NOT* be adding new change log entries to this file.
You should create a file in the news directory instead.
For helpful instructions, please see:
https://6.docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
-->

<!-- towncrier release notes start -->

## 2.3.1 (2023-07-21)

### Bugfix

- Fix DE translation of Inner Alignment @iRohitSingh. [#1](https://github.com/kitconcept/volto-export/pull/1)
- Add missing translation. @danalvrz [#12](https://github.com/kitconcept/volto-export/pull/12)


## 2.3.0 (2023-06-23)

### Feature

- Add new Feature Button opens in new window @iRohitSingh [#9](https://github.com/kitconcept/volto-export/pull/9)


## 2.2.0 (2023-06-06)

### Feature

- Add Brazilian Portuguese translation. @ericof [#7](https://github.com/kitconcept/volto-export/pull/7)


## 2.1.0 (2023-03-20)

### Feature

- Remove 'block' suffix @danalvrz [#5](https://github.com/kitconcept/volto-export/pull/5)
- Add dockerized testbed support @sneridagh [#6](https://github.com/kitconcept/volto-export/pull/6)


## 2.0.0 (2022-06-09)

### Breaking

- Fix CSS and block name now is `__button` to avoid semanticUI CSS clashes @sneridagh
- Rename widget internally @sneridagh

## 1.1.0 (2022-06-07)

### Feature

- Making it to incorporate the new style wrapper @iFlameing

## 1.0.0 (2022-04-22)

### Feature

- Real initial release @sneridagh

## 1.0.0-alpha.0 (2022-04-21)

### Feature

- Initial release @sneridagh @tisto

### Internal

- Added github workflows @robgietema

0 comments on commit 17c512e

Please sign in to comment.