mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 00:39:57 -04:00
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:
parent
6154b44d68
commit
bf2eada11c
4 changed files with 4 additions and 37 deletions
|
@ -14,10 +14,10 @@
|
|||
],
|
||||
"main": "dist/paper-full.js",
|
||||
"ignore": [
|
||||
"build",
|
||||
"package.json",
|
||||
"gulpfile.js",
|
||||
"gulp",
|
||||
"node_modules",
|
||||
"package.json",
|
||||
"projects",
|
||||
"src",
|
||||
"test",
|
||||
|
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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('.'));
|
||||
});
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
},
|
||||
"files": [
|
||||
"AUTHORS.md",
|
||||
"CHANGELOG.md",
|
||||
"dist/",
|
||||
"examples/",
|
||||
"LICENSE.txt",
|
||||
|
|
Loading…
Reference in a new issue