Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 18 additions & 8 deletions .distignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,37 @@
# Directories
/.git
/.github
/.wordpress-org
/.vscode
/node_modules
/src
/tests

# Configuration files
.distignore
.editorconfig
.gitattributes
.gitignore
.plugin-data
.wp-env.json
CHANGELOG.md
composer.json
composer.lock
grumphp.yml
LICENSE.md
package.json
package-lock.json
phpcs.xml.dist
phpunit.xml.dist
psalm.xml.dist
README.md

# Dependency management
composer.json
composer.lock
package.json
package-lock.json

# Documentation
CHANGELOG.md
CONTRIBUTING.md
README.md

# Development files
webpack.config.js
yarn.lock
*.log
*.map
.DS_Store
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ jobs:
php-version: 8.3
- run: composer install --prefer-dist --no-dev -o --ignore-platform-reqs

- id: setup-node
name: "Setup Node.js"
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'

- id: build-js
name: "Build JavaScript assets"
run: |
npm ci
npm run build

- id: commit-and-push
name: "Commit and push new TAG"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.1.0",
"version": "1.1.1",
"slug": "beapi-acf-palette"
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Nothing yet.

## [1.1.1] - 2026-01-12

- JavaScript build step in release workflow with `npm run build`

## [1.1.0] - 2026-01-12

### Added
Expand Down
4 changes: 2 additions & 2 deletions beapi-acf-palette.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Be API - ACF Color Palette
Version: 1.1.0
Version: 1.1.1
Version Boilerplate: 3.5.0
Plugin URI: https://beapi.fr
Description: Add a new theme color palette selector field for Advanced Custom Fields.
Expand Down Expand Up @@ -35,7 +35,7 @@
}

// Plugin constants
define( 'BEAPI_ACF_PALETTE_VERSION', '1.1.0' );
define( 'BEAPI_ACF_PALETTE_VERSION', '1.1.1' );
define( 'BEAPI_ACF_PALETTE_VIEWS_FOLDER_NAME', 'beapi-acf-palette' );

// Plugin URL and PATH
Expand Down
Loading