Skip to content

Commit

Permalink
add explicit dependency on core-js to all packages (#578)
Browse files Browse the repository at this point in the history
* add explicit dependency on core-js to all packages

* yarn yields errors for canary

* v0.3.9-alpha.0
  • Loading branch information
hipstersmoothie committed Aug 28, 2018
1 parent 5706141 commit 12898ee
Show file tree
Hide file tree
Showing 31 changed files with 109 additions and 80 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))

## v0.3.6-alpha.0 (2018-08-25)
## v0.3.6 (2018-08-25)

#### :rocket: Enhancement

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.3.8"
"version": "0.3.9-alpha.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build": "npm run clean:build && lerna run build --stream",
"build:watch": "lerna run build:watch --parallel",
"version": "lerna-changelog --from v0.2.28 > CHANGELOG.md && git add CHANGELOG.md",
"publish:packages": "npm run build && lerna publish --npm-client yarn"
"publish:packages": "npm run build && lerna publish --npm-client npm"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
Expand Down
5 changes: 3 additions & 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.3.8",
"version": "0.3.9-alpha.0",
"description": "Jimp core",
"main": "dist/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -33,9 +33,10 @@
"author": "Oliver Moran <oliver.moran@gmail.com>",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8",
"@jimp/utils": "^0.3.9-alpha.0",
"any-base": "^1.1.0",
"buffer": "^5.2.0",
"core-js": "^2.5.7",
"exif-parser": "^0.1.12",
"file-type": "^9.0.0",
"load-bmfont": "^1.3.1",
Expand Down
5 changes: 3 additions & 2 deletions packages/custom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/custom",
"version": "0.3.8",
"version": "0.3.9-alpha.0",
"description": "Interface to customize jimp configuration",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/core": "^0.3.8"
"@jimp/core": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions packages/jimp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jimp",
"version": "0.3.8",
"version": "0.3.9-alpha.0",
"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 @@ -55,9 +55,9 @@
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0-rc.1",
"@jimp/custom": "^0.3.8",
"@jimp/plugins": "^0.3.8",
"@jimp/types": "^0.3.8",
"@jimp/custom": "^0.3.9-alpha.0",
"@jimp/plugins": "^0.3.9-alpha.0",
"@jimp/types": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"devDependencies": {
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "Blit an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "blur an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 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.3.8",
"version": "0.3.9-alpha.0",
"description": "Bitmap manipulation to adjust the color in an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8",
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7",
"tinycolor2": "^1.4.1"
},
"peerDependencies": {
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "contain an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "cover an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "crop an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "displace an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "Dither an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "flip an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "gaussian blur an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "invert an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "mask an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "normalize an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 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.3.8",
"version": "0.3.9-alpha.0",
"description": "print an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8",
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7",
"load-bmfont": "^1.3.1"
},
"peerDependencies": {
Expand Down
5 changes: 3 additions & 2 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.3.8",
"version": "0.3.9-alpha.0",
"description": "Resize an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5"
Expand Down
5 changes: 3 additions & 2 deletions packages/plugin-rotate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-rotate",
"version": "0.3.8",
"version": "0.3.9-alpha.0",
"description": "Rotate an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugin-scale/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jimp/plugin-scale",
"version": "0.3.8",
"version": "0.3.9-alpha.0",
"description": "scale an image.",
"main": "dist/index.js",
"module": "es/index.js",
Expand All @@ -16,7 +16,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"@jimp/utils": "^0.3.8"
"@jimp/utils": "^0.3.9-alpha.0",
"core-js": "^2.5.7"
},
"peerDependencies": {
"@jimp/custom": ">=0.3.5",
Expand Down

0 comments on commit 12898ee

Please sign in to comment.