File tree Expand file tree Collapse file tree 5 files changed +38
-11
lines changed
Expand file tree Collapse file tree 5 files changed +38
-11
lines changed Original file line number Diff line number Diff line change 1+ # Directories
12/.git
23/.github
3- /.wordpress-org
4+ /.vscode
45/node_modules
56/src
7+ /tests
68
9+ # Configuration files
710.distignore
811.editorconfig
912.gitattributes
1013.gitignore
1114.plugin-data
1215.wp-env.json
13- CHANGELOG.md
14- composer.json
15- composer.lock
1616grumphp.yml
17- LICENSE.md
18- package.json
19- package-lock.json
2017phpcs.xml.dist
2118phpunit.xml.dist
2219psalm.xml.dist
23- README.md
20+
21+ # Dependency management
22+ composer.json
23+ composer.lock
24+ package.json
25+ package-lock.json
26+
27+ # Documentation
2428CHANGELOG.md
2529CONTRIBUTING.md
30+ README.md
31+
32+ # Development files
2633webpack.config.js
2734yarn.lock
35+ *.log
36+ *.map
37+ .DS_Store
Original file line number Diff line number Diff line change 4545 php-version : 8.3
4646 - run : composer install --prefer-dist --no-dev -o --ignore-platform-reqs
4747
48+ - id : setup-node
49+ name : " Setup Node.js"
50+ uses : actions/setup-node@v3
51+ with :
52+ node-version : ' 20'
53+ cache : ' npm'
54+
55+ - id : build-js
56+ name : " Build JavaScript assets"
57+ run : |
58+ npm ci
59+ npm run build
60+
4861 - id : commit-and-push
4962 name : " Commit and push new TAG"
5063 run : |
Original file line number Diff line number Diff line change 11{
2- "version": "1.1.0 ",
2+ "version": "1.1.1 ",
33 "slug": "beapi-acf-palette"
44}
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010Nothing yet.
1111
12+ ## [ 1.1.1] - 2026-01-12
13+
14+ - JavaScript build step in release workflow with ` npm run build `
15+
1216## [ 1.1.0] - 2026-01-12
1317
1418### Added
Original file line number Diff line number Diff line change 11<?php
22/*
33Plugin Name: Be API - ACF Color Palette
4- Version: 1.1.0
4+ Version: 1.1.1
55Version Boilerplate: 3.5.0
66Plugin URI: https://beapi.fr
77Description: Add a new theme color palette selector field for Advanced Custom Fields.
3535}
3636
3737// Plugin constants
38- define ( 'BEAPI_ACF_PALETTE_VERSION ' , '1.1.0 ' );
38+ define ( 'BEAPI_ACF_PALETTE_VERSION ' , '1.1.1 ' );
3939define ( 'BEAPI_ACF_PALETTE_VIEWS_FOLDER_NAME ' , 'beapi-acf-palette ' );
4040
4141// Plugin URL and PATH
You can’t perform that action at this time.
0 commit comments