mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -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
|
.bin
|
||||||
canvas
|
canvas
|
||||||
grunt*
|
grunt*
|
||||||
|
gulp*
|
||||||
jsdoc
|
jsdoc
|
||||||
jsdom
|
jsdom
|
||||||
prepro
|
prepro
|
||||||
|
|
|
@ -32,8 +32,10 @@
|
||||||
"canvas": "~1.2.1"
|
"canvas": "~1.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"uglify-js": "~2.4.23",
|
"gulp": "^3.9.0",
|
||||||
"prepro": "~0.8.3"
|
"gulp-qunit": "^1.2.1",
|
||||||
|
"prepro": "~0.8.3",
|
||||||
|
"uglify-js": "~2.4.23"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"vector",
|
"vector",
|
||||||
|
|
Loading…
Reference in a new issue