mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
Start using gulp to run quint test suite through phantomjs.
Eventually all build scripts shall run through this.
This commit is contained in:
parent
3816407ee7
commit
6712cbb4e9
3 changed files with 12 additions and 2 deletions
7
gulpfile.js
Normal file
7
gulpfile.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
var gulp = require('gulp'),
|
||||
qunit = require('gulp-qunit');
|
||||
|
||||
gulp.task('test', function() {
|
||||
return gulp.src('./test/index.html')
|
||||
.pipe(qunit());
|
||||
});
|
1
node_modules/.gitignore
generated
vendored
1
node_modules/.gitignore
generated
vendored
|
@ -1,6 +1,7 @@
|
|||
.bin
|
||||
canvas
|
||||
grunt*
|
||||
gulp*
|
||||
jsdoc
|
||||
jsdom
|
||||
prepro
|
||||
|
|
|
@ -32,8 +32,10 @@
|
|||
"canvas": "~1.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"uglify-js": "~2.4.23",
|
||||
"prepro": "~0.8.3"
|
||||
"gulp": "^3.9.0",
|
||||
"gulp-qunit": "^1.2.1",
|
||||
"prepro": "~0.8.3",
|
||||
"uglify-js": "~2.4.23"
|
||||
},
|
||||
"keywords": [
|
||||
"vector",
|
||||
|
|
Loading…
Reference in a new issue