Gulp: Prevent paperjs.zip from showing up in NPM packages.

This commit is contained in:
Jürg Lehni 2017-04-22 20:01:34 +02:00
parent fbd5eeb7ef
commit c72f578d8d

View file

@ -36,13 +36,15 @@ gulp.task('publish', function() {
if (options.branch !== 'develop') {
throw new Error('Publishing is only allowed on the develop branch.');
}
// publish:website comes before publish:release, so paperjs.zip file is gone
// before npm publish:
return run(
'publish:json',
'publish:dist',
'publish:packages',
'publish:commit',
'publish:release',
'publish:website',
'publish:release',
'publish:load'
);
});