From bf2eada11c6d235ea1b13f56104a5f7213fc8f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 9 Jul 2016 21:31:25 +0200 Subject: [PATCH] Remove component.json and clean up package files a bit. Component is not maintained anymore, per https://github.com/componentjs/component/issues/639 --- bower.json | 4 ++-- component.json | 34 ---------------------------------- gulp/tasks/publish.js | 2 +- package.json | 1 + 4 files changed, 4 insertions(+), 37 deletions(-) delete mode 100644 component.json diff --git a/bower.json b/bower.json index 7be82ba442..782f48016a 100644 --- a/bower.json +++ b/bower.json @@ -14,10 +14,10 @@ ], "main": "dist/paper-full.js", "ignore": [ - "build", + "package.json", + "gulpfile.js", "gulp", "node_modules", - "package.json", "projects", "src", "test", diff --git a/component.json b/component.json deleted file mode 100644 index c48eed0c13..0000000000 --- a/component.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "paper", - "version": "0.10.2", - "description": "The Swiss Army Knife of Vector Graphics Scripting", - "license": "MIT", - "repo": "paperjs/paper.js", - "main": [ - "dist/paper-full.js" - ], - "scripts": [ - "dist/paper-full.js" - ], - "files": [ - "AUTHORS.md", - "LICENSE.txt", - "README.md" - ], - "keywords": [ - "vector", - "graphic", - "graphics", - "2d", - "geometry", - "bezier", - "curve", - "curves", - "path", - "paths", - "canvas", - "svg", - "paper", - "paper.js" - ] -} diff --git a/gulp/tasks/publish.js b/gulp/tasks/publish.js index cd58e99cb2..b31ce17209 100644 --- a/gulp/tasks/publish.js +++ b/gulp/tasks/publish.js @@ -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('.')); }); diff --git a/package.json b/package.json index 75c2710c44..d976af33f4 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ }, "files": [ "AUTHORS.md", + "CHANGELOG.md", "dist/", "examples/", "LICENSE.txt",