mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Minor fixes.
This commit is contained in:
parent
d638ceb5b5
commit
d364c32e6b
2 changed files with 4 additions and 3 deletions
|
@ -9,9 +9,9 @@
|
||||||
context, e.g. a web browser or worker.
|
context, e.g. a web browser or worker.
|
||||||
- `paper-jsdom` is a shim module for Node.js, offering headless use with SVG
|
- `paper-jsdom` is a shim module for Node.js, offering headless use with SVG
|
||||||
importing and exporting through [jsdom](https://github.com/tmpvar/jsdom).
|
importing and exporting through [jsdom](https://github.com/tmpvar/jsdom).
|
||||||
- `paper-jsdom-canvas` is a shim module for Node.js, canvas rendering
|
- `paper-jsdom-canvas` is a shim module for Node.js, offering canvas
|
||||||
through [Node-Canvas](https://github.com/Automattic/node-canvas) as well
|
rendering through [Node-Canvas](https://github.com/Automattic/node-canvas)
|
||||||
as SVG importing and exporting through
|
as well as SVG importing and exporting through
|
||||||
[jsdom](https://github.com/tmpvar/jsdom).
|
[jsdom](https://github.com/tmpvar/jsdom).
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -79,6 +79,7 @@ packages.forEach(function(name) {
|
||||||
gulp.task('publish:dist', ['dist']);
|
gulp.task('publish:dist', ['dist']);
|
||||||
|
|
||||||
gulp.task('publish:commit', function() {
|
gulp.task('publish:commit', function() {
|
||||||
|
options.resetVersion(); // See 'publish:version'
|
||||||
var message = 'Release version ' + options.version;
|
var message = 'Release version ' + options.version;
|
||||||
return gulp.src('.')
|
return gulp.src('.')
|
||||||
.pipe(git.checkout('develop'))
|
.pipe(git.checkout('develop'))
|
||||||
|
|
Loading…
Reference in a new issue