mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-06-13 05:31:04 -04:00
Include paper-core.js in load.js mechanism, and improve root folder guessing again.
This commit is contained in:
parent
6a099003b2
commit
77be5616b6
3 changed files with 8 additions and 13381 deletions
gulp/tasks
|
@ -16,9 +16,10 @@ var gulp = require('gulp'),
|
|||
|
||||
gulp.task('load', ['clean:load'], function() {
|
||||
return gulp.src('src/load.js')
|
||||
.pipe(symlink('dist/paper-full.js'));
|
||||
.pipe(symlink('dist/paper-full.js'))
|
||||
.pipe(symlink('dist/paper-core.js'));
|
||||
});
|
||||
|
||||
gulp.task('clean:load', function() {
|
||||
return del([ 'dist/paper-full.js', 'dist/node/**' ]);
|
||||
return del([ 'dist/paper-full.js', 'dist/paper-core.js', 'dist/node/**' ]);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue