1.5 KiB
1.5 KiB
Connector for Mobilizon
Connector for Mobilizon allows you to display the upcoming events of Mobilizon, which is a federated event listing platform, on your WordPress website.
More details can be found in the WordPress Plugin Directory.
Development
Setup
- Make sure
npm
andcomposer
are installed. - Run:
npm install
- Run:
php composer.phar install
Development build
- Build:
npm run build-dev
- Make sure to keep
changelog.txt
up-to-date.
Release procedure
- Make sure
changelog.txt
is up-to-date. Use a new version number and copy over the new section intoreadme.txt
. - Update
package.json
with the same version number. - Update the
package-lock.json
:npm i --package-lock-only
- Build:
npm run build-prod
- Determine minimum PHP version for code and update package.json if needed:
./vendor/bin/phpcompatinfo analyser:run ./source
- Make sure screenshots are up-to-date.
- Copy the built plugin into
/trunk
of SVN. - Create a new tag of the new version:
svn cp trunk tags/<version>
- Check the version number occurences in both folders.
- Commit everything together to the release SVN:
svn ci -m "release version <version>"
- Commit and tag the new version in
git
too.
Other commands
- Run ESLint:
npm run eslint
- Run JavaScript code coverage with tests:
npm run coverage
- Run tests:
npm test
- Delete build folder:
gulp clean