tapcart-embed
v5.0.0
Published
Tapcart Web Plugins are self-contained web applications that can be used to add functionality to a Merchant's Shopify store.
Downloads
2,515
Readme
Tapcart Web Plugins
Tapcart Web Plugins are self-contained web applications that can be used to add functionality to a Merchant's Shopify store.
This repo contains source control and development enviroment for the following web plugins:
CaptureKit
CaptureKit: A tool for funneling web and mobile web consumers into our Merchants' native mobile apps. CaptureKit allows merchants to display a QR Code on their site that will redirect consumers into an App Clip or the full Native App experience.
Hosting
CaptureKit is hosted in the NPM package repo and served by the Unpkg CDN.
Deployment
Bump the
package.json
version property to the desired new version. Please note: you cannot re-publish the same package version once it has been published.Run a fresh, versioned build of your release to be published via
yarn build
Commit these changes as a release to Github with the following commands, replacing
<version>
with your current version:
# commit the build
git add .
git commit -m'build <version>'
# tag the release
git tag <version>
# push the commits and the tag
git push && git push --tags
- Publish the new version build to Github Package Registry via npm:
npm publish