Skip to content
This repository was archived by the owner on Dec 7, 2022. It is now read-only.

Latest commit

 

History

History
17 lines (14 loc) · 435 Bytes

File metadata and controls

17 lines (14 loc) · 435 Bytes

Totes not ready for prime-time yet.

This is a build system for building webcomponents that you can require in any application using Vue.js.

In your app's build system, just add

const path = require('path');
const build = require('vue-component-library');

build(path.resolve('./components'))
  .to(path.resolve('./dist'))
  .with({
    prefix: '',
    production: true,
  })
  .then(() => console.log('all done'));