0.1.5 • Published 10 years ago

hoppa v0.1.5

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Hoppa

Hoppa is a javascript compressor and less compiler for web projects.

Installation

$ sudo npm install hoppa -g

Configure

Add a Hoppa project file. Hoppa looks for hoppa.json or a given json path at launch using -p (see Launch). Use config to define wether Hoppa should compress javascript and/or compile less files when running Hoppa without arguments (-a, -j, -l).

{

  "config": {
    "compress": true
    ,"compile": true
  }
  
  ,"js": {
    "./js/scripts.min.js": ["./js/*.js"]
  }
  
  ,"less": {
    "./css/bootstrap.min.css": ["./less/bootstrap/bootstrap.less"]
  }
  
}

Launch

Go to your project directory and run

$ hoppa -a

To start in watch mode use -w

$ hoppa -a -w

To start with javascript compression -j

$ hoppa -j

To start with less compilation -l

$ hoppa -l

To start with less compilation and javascript compression -a

$ hoppa -a

To start with a custom project json use -p

$ hoppa -a -w -p ./my_project.json

To start with terminal notifications use -n (see Notifications)

$ hoppa -a -w -n -p ./my_project.json

For help use --help

$ hoppa --help

Notifications

####Windows Install Growl: http://growl.info/

####OSX Install terminal-notifier

$ sudo gem install terminal-notifier
0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago