0.2.2 • Published 2 years ago

uibuddy v0.2.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

UI Buddy

Build UI components, web pages, and design systems without writing CSS.

Documentation

For full documentation, visit dcodestudios.com/uibuddy/docs.

Installation

npm install uibuddy

Basic Usage

Create a uibuddy.js file in the root of your project directory and paste the code below:

const chokidar = require("chokidar");
const uibuddy = require("uibuddy");

module.exports.watch = function () {
  chokidar
    .watch("*.html", { persistent: true, ignoreInitial: true })
    .on("all", (event, filePath) => {
      uibuddy();
    });
};

In your package.json file, add the following scripts:

"watch": "run-func uibuddy.js watch"

Start the project by running:

npm run watch

Contributing

If you're interested in contributing to UI Buddy, please send us an email at devs.awais@gmail.com before submitting a pull request.

0.2.2

2 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago