-
Update SDK version constant
- Android
- android/build.gradle
buildscript
ext.hypertrack_sdk_version = <version>
- android/build.gradle
- iOS
- HypertrackSdkIonicCapacitor.podspec
s.dependency 'HyperTrack'
- HypertrackSdkIonicCapacitor.podspec
- Android
-
Increment wrapper version
- package.json
version
- package.json
-
Update CHANGELOG
- Add the release link to the bottom
-
Update badge in README
-
Do the release dry run with
just release
and verify that the release is correct (checklist is in the command output) -
Commit and merge to master
-
Create and push a new version tag
-
Create a Github repo release
- Release title should be the current version tag
-
Run
npm publish
to publish the package to npm
Build the plugin web assets and generate plugin API documentation using @capacitor/docgen
.
It will compile the TypeScript code from src/
into ESM JavaScript in dist/esm/
. These files are used in apps with bundlers when your plugin is imported.
Then, Rollup will bundle the code into a single file at dist/plugin.js
. This file is used in apps without bundlers by including it as a script in index.html
.
Build and validate the web and native projects.
This is useful to run in CI to verify that the plugin builds for all platforms.
Check formatting and code quality, autoformat/autofix if possible.
This template is integrated with ESLint, Prettier, and SwiftLint. Using these tools is completely optional, but the Capacitor Community strives to have consistent code style and structure for easier cooperation.
There is a prepublishOnly
hook in package.json
which prepares the plugin before publishing, so all you need to do is run:
npm publish
Note: The
files
array inpackage.json
specifies which files get published. If you rename files/directories or add files elsewhere, you may need to update it.