Skip to content

Commit

Permalink
Merge pull request #16 from walaura/bugs
Browse files Browse the repository at this point in the history
Bugsops
  • Loading branch information
Laura González authored Feb 17, 2017
2 parents b23a521 + f4337e8 commit 71dd384
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ const uglify = require('gulp-uglify');
const header = require('gulp-header');
const path = require('path');
const fs = require('fs-extra');
const mochaPhantomJS = require('gulp-mocha-phantomjs');
const WrapperPlugin = require('wrapper-webpack-plugin');
const release = require('gulp-github-release');
const through = require('through2');

const config = require('./src/conf.js');

Expand Down Expand Up @@ -43,6 +40,10 @@ gulp.task('clean', () => {


gulp.task('test', ['make'], function () {

const through = require('through2');
const mochaPhantomJS = require('gulp-mocha-phantomjs');

return gulp
.src('test/index.html')
.pipe(mochaPhantomJS({
Expand Down Expand Up @@ -134,6 +135,9 @@ gulp.task('make', ['clean'], function() {


gulp.task('release', function(){

const release = require('gulp-github-release');

return gulp.src('dist/'+config.webpack.filename.dist)
.pipe(release({
manifest: require('./package.json')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "constellation-canvas",
"description": "draws cute animated canvas constellations",
"version": "1.4.1",
"version": "1.4.2",
"author": "Laura mayhem",
"bugs": {
"url": "https://github.com/walaura/constellation/issues",
Expand Down

0 comments on commit 71dd384

Please sign in to comment.