Skip to content

Latest commit

 

History

History
83 lines (56 loc) · 1.64 KB

README.md

File metadata and controls

83 lines (56 loc) · 1.64 KB

DEPRECATED: This repo is no longer in development.

A snowflake (module) based Javascript library.

Library

Getting started

Clone repository

First, clone a copy of the main Snow JS git repo by running:

git clone git://github.com/evanvosberg/snowjs.git

Initialize sub modules

jQuery UI

Enter the directory and install the Node dependencies:

cd snowjs/external/jquery-ui && npm install

Then, build a complete, version of jQuery UI, type the following:

grunt release

Initialize Snow JS

Enter the directory and install the Node dependencies:

cd snowjs && npm install

Make sure you have grunt installed by testing:

grunt -version

Run the setup task by this command:

grunt setup

Running grunt build / test tasks

Get a complete, minified (w/ Uglify.js), linted (w/ JSHint) distribution, type the following:

grunt

Get a just built distribution, type the following:

grunt build

Get a just test cases, type the following:

grunt test