0.1.1 • Published 5 years ago

adp-components v0.1.1

Weekly downloads
51
License
ISC
Repository
-
Last release
5 years ago

Test library package with Webpack

npm install git+https://github.com/UsulPro/libpack.git --save
// index.js:

const fs = require('fs');
const logo =  require('libpack').logo;
const style =  require('libpack').style;

const htmlData = `
<div>
  <style>
    ${style()}
  </style>
  <img src="${logo()}" alt="logo" title="logo" width="200px"/>
</div>
`;

fs.writeFile('test.htm', htmlData, (err) => {
  if (err) throw err;
  console.log('It\'s saved!');
});
$ node .

open test.htm in your browser

build

git clone https://github.com/UsulPro/libpack.git

edit files in src/

npm run build

in dist/ you'll see your package

you can install it locally then:

npm i D:\path-to-project\libpack\ --save