@diiip/chatbox
v0.0.2
Published
A mini ChatBox
Readme
@diiip/chatbox
A mini ChatBox
Installation
npm install --save @diiip/chatboxUsage
Bundler (Webpack, Rollup)
import Vue from 'vue'
import Chatbox from '@diiip/chatbox'
// You need a specific loader for CSS files like https://github.com/webpack/css-loader
import '@diiip/chatbox/dist/@diiip/chatbox.css'
Vue.use(Chatbox)Browser
<!-- Include after Vue -->
<!-- Local files -->
<link rel="stylesheet" href="@diiip/chatbox/dist/@diiip/chatbox.css"></link>
<script src="@diiip/chatbox/dist/@diiip/chatbox.js"></script>
<!-- From CDN -->
<link rel="stylesheet" href="https://unpkg.com/@diiip/chatbox/dist/@diiip/chatbox.css"></link>
<script src="https://unpkg.com/@diiip/chatbox"></script>Development
Launch visual tests
npm run devLaunch Karma with coverage
npm run dev:coverageBuild
Bundle the js and css of to the dist folder:
npm run buildPublishing
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