0.2.0 • Published 3 years ago

@arternal/components v0.2.0

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Arternal Components

A library of shared components used internally at Arternal.

Installation

npm install @arternal/components

Install the peer dependencies.

npm install @vue/composition-api

Development

Install dependencies.

npm install

All components have Storybook stories associated with them.

npm run storybook

Publishing to NPM

Log in to NPM withe the @arternal organization scope. You need to be part of the @arternal NPM organization.

npm login --scope=@arternal

Build the package.

npm run build

Make sure the version field in package.json has been incremented. Breaking changes require a major version bump (eg: 2.x.x), non-breaking changes require a minor version bump (eg: 2.1.x) and bug fixes require a patch release (eg: 2.1.1).

npm version <major|minor|patch>

Publish the package.

npm publish