@denodeio/seshat
v0.0.38
Published
Functions' Library for Denode Ecosystem.
Downloads
149
Readme
Overview
seshat is a library that offers a collection of functions commonly used in Denode backend services.
Install
To use functions in other services, download seshat as a package:
npm i @denodeio/seshat
Local Build And Deploy
To build the project locally and deploy, follow these steps:
1. Build The Project
Run the following command to build the project using Rollup.js, which compiles and generates a bundled version of the project:
pnpm build
This command outputs the compiled code to the "dist" folder, which is used for deployment.
2. Update Package Version:
Open the package.json file and update the version field. For example:
"version": "0.0.12"
Ensure that you increment the version number appropriately.
3. Login to NPM Registry:
Use the following command to log in to the npm registry:
npm login
This command will redirect you to the npm registry. Follow the login process on the browser
4. Publish the New Version:
After successful login, you can publish the new version to NPM with the following command:
npm publish