konva/README.md

17 lines
1.2 KiB
Markdown
Raw Normal View History

2013-04-12 10:42:35 +08:00
#Building the KineticJS Framework
To build the framework, you need to have node installed. After that, run `npm install` in the main directory to install the node module dependencies.
To build a development version of the framework, run `grunt dev`. To run a full build, which also produces the minified version and the individually minified modules for the custom build, run `grunt full`. You can also run `grunt beta` to generate a beta version.
If you add a file in the src directory, be sure to add the filename to the sourceFiles array variable in Gruntfile.js.
#Testing
2013-08-29 14:58:06 +08:00
[![Build Status](https://travis-ci.org/ericdrowell/KineticJS.png)](https://travis-ci.org/ericdrowell/KineticJS)
2013-08-29 14:55:42 +08:00
2012-12-04 12:12:38 +08:00
### Running the tests
2013-09-11 12:47:14 +08:00
KineticJS uses Mocha for testing. Just open up test/runner.html to run the tests in your favorite browser. To run the tests in PhantomJS, run `mocha-phantomjs test/runner.html` in the console.
#Pull Requests
2013-09-11 12:47:14 +08:00
I'd be happy to review any pull requests that may better the KineticJS project, in particular if you have a bug fix, enhancement, or a new shape (see `src/shapes` for examples). Before doing so, please first make sure that all of the tests pass, and also make sure that you don't have any jshint errors. You can do so by running `grunt hint`