0.0.4 • Published 6 years ago

rdv-doc-calendar v0.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Repo

npm vue2

Installation

npm install --save rdv-doc-calendar

Usage

Bundler (Webpack, Rollup)

import Vue from 'vue'
import DocCalendar from 'rdv-doc-calendar'
// You need a specific loader for CSS files like https://github.com/webpack/css-loader
import 'rdv-doc-calendar/dist/rdv-doc-calendar.css'

Vue.use(DocCalendar)

Browser

<!-- Include after Vue -->
<!-- Local files -->
<link rel="stylesheet" href="rdv-doc-calendar/dist/rdv-doc-calendar.css"></link>
<script src="rdv-doc-calendar/dist/rdv-doc-calendar.js"></script>

<!-- From CDN -->
<link rel="stylesheet" href="https://unpkg.com/rdv-doc-calendar/dist/rdv-doc-calendar.css"></link>
<script src="https://unpkg.com/rdv-doc-calendar"></script>

Development

Launch dev environment

npm run storybook

Launch test

npm run test

Build

Bundle the js and css of to the dist folder:

npm run build

Publishing

The prepublish hook will ensure dist files are created before publishing. This way you don't need to commit them in your repository.

# Bump the version first
# It'll also commit it and create a tag
npm version
# Push the bumped package and tags
git push --follow-tags
# Ship it 🚀
npm publish

License

MIT