@own3d/pro-ui-kit
v0.1.68
Published
## How to use pro-ui-kit in your Project
Readme
OWN3D PRO UI KIT
How to use pro-ui-kit in your Project
.npmrc
shamefully-hoist=true
strict-peer-dependencies=false
//npm.pkg.github.com/:_authToken=YOUR_AUTH_TOKEN
@own3d:registry=https://npm.pkg.github.com
always-auth=trueUpdate devDependencies
Add @nuxtjs/tailwindcss and @own3d/pro-ui-kit to your devDependencies
Add to Modules
modules: [
'@own3d/pro-ui-kit',
'@nuxtjs/tailwindcss'
]tailwind.config.js
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./modules/**/*.vue',
]
}Install dependencies
yarnDevelopment Server (This is what you want)
Start the Storybook server on http://localhost:6006
yarn storybookDevelopment Server
Start the server on http://localhost:3000
yarn devCreates a new release
Creates a new release for other projects
git checkout main
git pull -r
git checkout -b release-X.X.XChange the version in package.json file to "release-X.X.X"
git tag X.X.X
git push --set-upstream origin release-X.X.X && git push --tagsCreates a new pull request and merge into main branch
