Skip to content

Commit daa7917

Browse files
committed
Merge remote-tracking branch 'origin/main' into alive-dev
2 parents a4ad4f6 + b80c72a commit daa7917

11 files changed

Lines changed: 164 additions & 14 deletions

File tree

.github/workflows/release-npm-packages.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jobs:
2929
steps:
3030
- name: Checkout Repository
3131
uses: actions/checkout@v4
32-
32+
3333
- name: Install PNPM
3434
uses: pnpm/action-setup@v4
35-
35+
3636
- name: Setup Node.js 22.x
3737
uses: actions/setup-node@v4
3838
with:
3939
node-version: 22.x
4040
cache: pnpm
41-
41+
4242
- name: Cache PNPM
4343
uses: actions/cache@v4
4444
with:
@@ -51,7 +51,7 @@ jobs:
5151
run: pnpm install --frozen-lockfile
5252

5353
- name: Build packages
54-
run: pnpm build
54+
run: pnpm build:npm-packages
5555

5656

5757
- name: Create Release
@@ -66,4 +66,3 @@ jobs:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
6868
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
69-

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
],
1616
"scripts": {
1717
"build": "pnpm recursive run build",
18+
"build:npm-packages": "pnpm --filter='@devgateway/dvz-wp-commons' --filter='@devgateway/create-wp-customizer' --filter='@devgateway/upgrade-wp-customizer' build",
1819
"version": "changeset version",
1920
"release": "changeset publish",
2021
"publish:next": "changeset publish --next",
@@ -29,7 +30,7 @@
2930
"devgateway"
3031
],
3132
"author": "Development Gateway",
32-
"license": "MIT",
33+
"license": "GPL-2.0-or-later",
3334
"packageManager": "pnpm@10.10.0",
3435
"devDependencies": {
3536
"@changesets/changelog-github": "^0.5.1",

packages/commons/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @devgateway/dvz-wp-commons
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#45](https://github.com/devgateway/data-viz-wordpress/pull/45) [`bb51401`](https://github.com/devgateway/data-viz-wordpress/commit/bb51401482f77e9f275c454ba0d7dab8231c269b) Thanks [@timothygachengo](https://github.com/timothygachengo)! - - Update licenses
8+
- Internal improvements
9+
310
## 1.0.5
411

512
### Patch Changes

packages/commons/LICENSE

Lines changed: 119 additions & 4 deletions
Large diffs are not rendered by default.

packages/commons/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@devgateway/dvz-wp-commons",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"private": false,
55
"description": "Common Utilities for Data Viz Wordpress that can be also used in other projects",
66
"author": "Sebastian Dimunzio",
7-
"license": "MIT",
7+
"license": "GPL-2.0-or-later",
88
"maintainers": [
99
"Sebastian Dimunzio",
1010
"Timothy Mugo"

packages/create-wp-customizer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @devgateway/create-wp-customizer
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#45](https://github.com/devgateway/data-viz-wordpress/pull/45) [`bb51401`](https://github.com/devgateway/data-viz-wordpress/commit/bb51401482f77e9f275c454ba0d7dab8231c269b) Thanks [@timothygachengo](https://github.com/timothygachengo)! - - Update licenses
8+
- Internal improvements
9+
310
## 1.0.2
411

512
### Patch Changes
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright © 2025 Development Gateway
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

packages/create-wp-customizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devgateway/create-wp-customizer",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Create a new Data Viz WordPress Customizer project",
55
"author": "Development Gateway",
66
"contributors": [

packages/upgrade-wp-customizer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @devgateway/upgrade-wp-customizer
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#45](https://github.com/devgateway/data-viz-wordpress/pull/45) [`bb51401`](https://github.com/devgateway/data-viz-wordpress/commit/bb51401482f77e9f275c454ba0d7dab8231c269b) Thanks [@timothygachengo](https://github.com/timothygachengo)! - - Update licenses
8+
- Internal improvements
9+
310
## 1.0.2
411

512
### Patch Changes
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright © 2025 Development Gateway
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)