cv-app-backoffice-login

Login App for the backoffice of the CV team, which will control the access to other apps inside backoffice (e.g: Payment Balancer)

Usage no npm install needed!

<script type="module">
  import cvAppBackofficeLogin from 'https://cdn.skypack.dev/cv-app-backoffice-login';
</script>

README

cv-app-backoffice-login

Login App for the backoffice of the CV team, which will control the access to other apps inside backoffice (e.g: Payment Balancer)

How to publish

// 0. Login npm
npm login

// 1. Commit your changes
git add .
git commit -m "RC-XXXX feat: yay new feat"

// 2. Build the dist file that we'll publish
npm run build

// 3. Generate a new tag
npm run rc // Release candidate, for testing purposes

OR for final version

npm run upgrade-{{type}} // type = patch, minor or major. See Type of versions below

// 4. Let's publish de package
IMPORTANT: When you're done, please create a PR and merge your changes to master.

This project uses bitbucket pipelines, which will make a couple of checks and
finally publish the package when is merged to master

Important: If you are testing your changes in other projects, read How to make a release candidate tag below.

Type of versions

  • Patch: npm run upgrade-patch
  • Minor: npm run upgrade-minor (fixes, improvements, small features etc...)
  • Major: npm run upgrade-major (Big/Crashing features nor changes)