Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/generoi/wp-gutenberg-backgrounds
https://github.com/generoi/wp-gutenberg-backgrounds
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/generoi/wp-gutenberg-backgrounds
- Owner: generoi
- Created: 2018-06-25T18:54:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-31T13:46:41.000Z (over 1 year ago)
- Last Synced: 2024-04-16T22:30:12.656Z (7 months ago)
- Language: PHP
- Size: 1.51 MB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wp-gutenberg-backgrounds
> Add a background option to every Gutenberg block
## Development
Install dependencies
composer install
npm installRun the tests
npm run test
Build assets
# Minified assets which are to be committed to git
npm run production# Watch for changes and re-compile while developing the plugin
npm run watch## Translations
During compilation a `languages/javascript.pot` containing the translatable strings from JavaScript will be created. This needs to be converted to PHP which is done automatically in the next step.
Rebuild POT files (after this, copy to each language as languages/wp-gutenberg-backgrounds-.po and translate it)
npm run lang:pot
Compile MO files (requires msgfmt which is available with brew install gettext && brew link gettext --force)
npm run lang:mo
Or run all of these with:
npm run lang