Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmcgregor committed Oct 21, 2015
1 parent 0cc66db commit 28dcc18
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 120 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boid",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/ianmcgregor/boid",
"authors": [
"Ian McGregor <[email protected]>"
Expand Down
287 changes: 180 additions & 107 deletions dist/boid.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/boid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ function logError(msg) {

// bundler
var bundler = watchify(browserify({
entries: ['./src/' + entryFileName],
entries: ['src/' + entryFileName],
standalone: standaloneName,
debug: true
}, watchify.args));
debug: true,
cache: {},
packageCache: {}
}), {poll: true});

function bundle() {
return bundler
Expand Down Expand Up @@ -101,6 +103,7 @@ gulp.task('jshint', function() {
gulp.task('watch', function() {
gulp.watch('test/**/*.js', ['jshint']);
gulp.watch('examples/**/*.js', ['jshint']);
gulp.watch('src/**/*.js', ['bundle']);
});

// default
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boid",
"version": "0.1.0",
"version": "0.2.0",
"description": "Bird-like behaviours",
"keywords": [
"boid",
Expand All @@ -21,22 +21,22 @@
},
"devDependencies": {
"browser-sync": "^2.7.0",
"browserify": "^10.0.0",
"chai": "^2.3.0",
"browserify": "^11.2.0",
"chai": "^3.4.0",
"chalk": "^1.0.0",
"events": "^1.0.2",
"gulp": "^3.8.11",
"gulp-if": "^1.2.5",
"gulp-if": "^2.0.0",
"gulp-jshint": "^1.10.0",
"gulp-rename": "^1.2.2",
"gulp-strip-debug": "^1.0.2",
"gulp-uglify": "^1.2.0",
"jshint-stylish": "^1.0.2",
"karma": "^0.12.31",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.11",
"karma-browserify": "^4.1.2",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"mocha": "^2.2.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
Expand Down

0 comments on commit 28dcc18

Please sign in to comment.