Remove component.json and clean up package files a bit.

Component is not maintained anymore, per https://github.com/componentjs/component/issues/639
This commit is contained in:
Jürg Lehni 2016-07-09 21:31:25 +02:00
parent 6154b44d68
commit bf2eada11c
4 changed files with 4 additions and 37 deletions

View file

@ -34,7 +34,7 @@ gulp.task('publish:version', function() {
// reset the version value since we're executing this on the develop branch,
// but we don't wan the published version suffixed with '-develop'.
options.resetVersion();
return gulp.src([ 'package.json', 'component.json' ])
return gulp.src([ 'package.json' ])
.pipe(bump({ version: options.version }))
.pipe(gulp.dest('.'));
});