breb-sdk-package-prueba-hoy
v0.0.2
Published
Sdk Package for bancoomeva integration
Maintainers
Readme
Breb SDK Package
Getting Started
Prueba subir cambio
Development
The following tasks are available:
dev: Run Vite in watch mode to detect changes - all modules are compiled to thedist/folder, as well as rollup of all types to a d.ts declaration filedemo: Run dev and start tasks concurrently to run the demo appstart: Run Vite in host mode to work in a local development environment within this package - vite hosts theindex.htmlwith real time HMR updatesbuild: Run Vite to build a production release distributablebuild:types: Run DTS Generator to build d.ts type declarations only
Release Publishing
Update package.json to the next version number and tag a release.
Assure that your package lockfile is also updated by running an install. For npm, this will assure the lockfile has the updated version number.
Assure either a .npmrc or publishConfig in your package.json:
package.json:
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"scope": "username"
"access": "public",
}If you are publishing to a private registry such as GitHub packages, update your package.json to include publishConfig and repository:
package.json:
"publishConfig": {
"registry": "https://npm.pkg.github.com/@MyOrg"
}Assure the proper npm login:
npm loginSubmit your package to the registry:
npm publish --access public