Package Exports
- onboardly
- onboardly/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (onboardly) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Onboardly
A simple React component library for Onboardly.
Installation
npm install onboardly
# or
yarn add onboardly
# or
pnpm add onboardly
Usage
import { Onboardly } from 'onboardly';
function App() {
return <Onboardly />;
}
Development
For monorepo development instructions, see the root README.md file.
Publishing
To publish a new version of the package to npm:
- Update the version in
package.json
- Build the package:
pnpm build
- Log in to npm (if not already logged in):
npm login
- Publish the package:
npm publish