Skip to content

Commit

Permalink
Add option for collections to be raw arrays with the functions set on…
Browse files Browse the repository at this point in the history
… them on each instantiation (resolve #355)
  • Loading branch information
ClickerMonkey committed Nov 10, 2016
1 parent b5886a8 commit 92b9cb0
Show file tree
Hide file tree
Showing 61 changed files with 900 additions and 429 deletions.
4 changes: 3 additions & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,9 @@ gulp.task( 'js:modular:min', ['js:modular'], executeModular( modularized, true )

gulp.task( 'default', ['js:min']);

gulp.task( 'test', ['js'], executeTest( './test/index.html' ) );
gulp.task( 'test:normal', ['js'], executeTest( './test/index.html' ) );
gulp.task( 'test:nativearray', ['js'], executeTest( './test/index-nativearray.html' ) );
gulp.task( 'test', ['test:normal', 'test:nativearray'] );

gulp.task( 'docs', shell.task(['./node_modules/.bin/jsdoc -c jsdoc.json']));
gulp.task( 'clean', shell.task(['rm -rf build/*.js', 'rm -rf build/*.map']));
Loading

0 comments on commit 92b9cb0

Please sign in to comment.