Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Core-JS as a dependency. #882

Merged
merged 3 commits into from
May 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Installation: `npm install --save jimp`

API documentation can be found in the main [jimp package](./packages/jimp)

> ## Notice of potentially breaking change
>
> As of v0.10.4, core-js is no longer included with jimp or its extensions. If you rely on core-js, install it with either `yarn add core-js` or `npm i core-js`

## Tools

:hammer: [cli](./packages/cli) - Jimp as a CLI program. Can load and run all plugins
Expand Down Expand Up @@ -70,7 +74,7 @@ Jimp is licensed under the MIT license. Open Sans is licensed under the Apache l

## Project Using Jimp

:star: [nimp](https://nimp.app/) - Node based image manipulator. Procedurally create and edit images.
:star: [nimp](https://nimp.app/) - Node based image manipulator. Procedurally create and edit images.

:star: [favicons](https://www.npmjs.com/package/favicons) - A Node.js module for generating favicons and their associated files.

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"npmClient": "yarn",
"registry": "https://registry.npmjs.org/",
"useWorkspaces": true,
"version": "0.10.3"
"version": "0.10.4"
}
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/cli",
"version": "0.10.3",
"version": "0.10.4",
"description": "jimp on the cli",
"bin": {
"jimp": "dist/index.js"
Expand All @@ -19,7 +19,7 @@
"dependencies": {
"@jimp/custom": "link:../custom",
"chalk": "^2.4.1",
"jimp": "^0.10.3",
"jimp": "^0.10.4",
"log-symbols": "^2.2.0",
"yargs": "^12.0.2"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/core",
"version": "0.10.3",
"version": "0.10.4",
"description": "Jimp core",
"main": "dist/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -38,7 +38,6 @@
"@jimp/utils": "link:../utils",
"any-base": "^1.1.0",
"buffer": "^5.2.0",
"core-js": "^3.4.1",
"exif-parser": "^0.1.12",
"file-type": "^9.0.0",
"load-bmfont": "^1.3.1",
Expand Down
5 changes: 2 additions & 3 deletions packages/custom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/custom",
"version": "0.10.3",
"version": "0.10.4",
"description": "Interface to customize jimp configuration",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/core": "link:../core",
"core-js": "^3.4.1"
"@jimp/core": "link:../core"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 1 addition & 2 deletions packages/jimp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jimp",
"version": "0.10.3",
"version": "0.10.4",
"description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies)",
"main": "dist/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -63,7 +63,6 @@
"@jimp/custom": "link:../custom",
"@jimp/plugins": "link:../plugins",
"@jimp/types": "link:../types",
"core-js": "^3.4.1",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-blit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-blit",
"version": "0.10.3",
"version": "0.10.4",
"description": "Blit an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"devDependencies": {
"@jimp/custom": "link:../custom",
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-blur/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-blur",
"version": "0.10.3",
"version": "0.10.4",
"description": "blur an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-circle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-circle",
"version": "0.10.3",
"version": "0.10.4",
"description": "Creates a circle out of an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-color/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-color",
"version": "0.10.3",
"version": "0.10.4",
"description": "Bitmap manipulation to adjust the color in an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -22,7 +22,6 @@
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-contain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-contain",
"version": "0.10.3",
"version": "0.10.4",
"description": "contain an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-cover/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-cover",
"version": "0.10.3",
"version": "0.10.4",
"description": "cover an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-crop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-crop",
"version": "0.10.3",
"version": "0.10.4",
"description": "crop an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"devDependencies": {
"@jimp/custom": "link:../custom",
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-displace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-displace",
"version": "0.10.3",
"version": "0.10.4",
"description": "displace an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-dither/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-dither",
"version": "0.10.3",
"version": "0.10.4",
"description": "Dither an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-fisheye/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-fisheye",
"version": "0.10.3",
"version": "0.10.4",
"description": "Apply a fisheye effect to an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-flip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-flip",
"version": "0.10.3",
"version": "0.10.4",
"description": "flip an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-gaussian/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-gaussian",
"version": "0.10.3",
"version": "0.10.4",
"description": "gaussian blur an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-invert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-invert",
"version": "0.10.3",
"version": "0.10.4",
"description": "invert an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -18,8 +18,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-mask/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-mask",
"version": "0.10.3",
"version": "0.10.4",
"description": "mask an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-normalize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-normalize",
"version": "0.10.3",
"version": "0.10.4",
"description": "normalize an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-print/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-print",
"version": "0.10.3",
"version": "0.10.4",
"description": "print an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -22,7 +22,6 @@
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1",
"load-bmfont": "^1.4.0"
},
"peerDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-resize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-resize",
"version": "0.10.3",
"version": "0.10.4",
"description": "Resize an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -21,8 +21,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "link:../utils",
"core-js": "^3.4.1"
"@jimp/utils": "link:../utils"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
Loading