slush-minix

Mini gulp task to enhance production


Keywords
slushgenerator
License
MIT
Install
npm install slush-minix@0.2.0

Documentation

Slush Minix

Micro gulp tasks to enhance production

Build Status NPM version

Getting Started

##How to install and use the generator?

Install the slush:

$ [sudo] npm install -g slush

Install slush-minix generator:

$ npm install -g slush-minix

Usage

Create a new folder for your project:

$ mkdir my-slush-minix

Run the generator from within the new folder:

$ cd my-slush-minix && slush minix

##Plugin structure

Folders Structure:

.
β”œβ”€β”€ src/
|   └── js
|   |   └── app.js
|   └── less
|   |   └── main.less
|   └── templates
|       └── index.pug
|       └──partials 
β”œβ”€β”€ gulp/
|   └── index.js
|   └── tasks
|       └── browserify.js
|       └── fonts.js
|       └── images.js
|       └── less.js
|       └── scripts.js
|       └── serve.js
|       └── styles.js
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .eslintrc
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .gulpfile.js
β”œβ”€β”€ index.html
β”œβ”€β”€ package.json
└── README.md