Package Exports
- minify-project
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (minify-project) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
#Minify-Project
minify css with autoprefixing and js of whole project tree
Installation
To install minify-project
, you need node.js and npm. 🚀
Once you have that set-up, just run npm install --save minify-project
in your project directory. 🚢
You're now ready to use minify your whole project! Awesome! 🤘
Usage
var minify = require("minify-project");
minify css of certain folder
minify.minifier({ cssSource: "./css" });
minify and autoprefix css of certain folder
minify.minifier({ cssSource: "./css" , prefixEnabled: true });
minify js of certain folder along with css
minify.minifier({cssSource : "/css" ,jsSource: "/js" });
minify and store at your desire location
minify.minifier({cssSource : "/css" ,jsSource: "/js" , destination:"myDestination" });