@jimp/plugin-shadow
Advanced tools
Comparing version 1.0.5 to 1.1.0
@@ -5,3 +5,2 @@ { | ||
"rootDir": "../src", | ||
"target": "es2022", | ||
"module": "nodenext", | ||
@@ -8,0 +7,0 @@ "moduleResolution": "nodenext" |
@@ -6,7 +6,9 @@ { | ||
"../src/**/*.cts", | ||
"../src/**/*.tsx" | ||
"../src/**/*.tsx", | ||
"../src/**/*.json" | ||
], | ||
"exclude": [ | ||
"../**/*.test.ts", | ||
"../src/**/*.mts" | ||
"../src/**/*.mts", | ||
"../src/package.json" | ||
], | ||
@@ -13,0 +15,0 @@ "compilerOptions": { |
@@ -6,6 +6,8 @@ { | ||
"../src/**/*.mts", | ||
"../src/**/*.tsx" | ||
"../src/**/*.tsx", | ||
"../src/**/*.json" | ||
], | ||
"exclude": [ | ||
"../**/*.test.ts" | ||
"../**/*.test.ts", | ||
"../src/package.json" | ||
], | ||
@@ -12,0 +14,0 @@ "compilerOptions": { |
@@ -0,1 +1,14 @@ | ||
# v1.1.0 (Sun Sep 01 2024) | ||
#### ⚠️ Pushed to `main` | ||
- upgrade tshy ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- update more docs ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
#### Authors: 1 | ||
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
--- | ||
# v1.0.3 (Sat Aug 31 2024) | ||
@@ -2,0 +15,0 @@ |
{ | ||
"name": "@jimp/plugin-shadow", | ||
"version": "1.0.5", | ||
"version": "1.1.0", | ||
"repository": "jimp-dev/jimp", | ||
@@ -16,9 +16,9 @@ "scripts": { | ||
"devDependencies": { | ||
"@jimp/config-eslint": "1.0.5", | ||
"@jimp/config-typescript": "1.0.5", | ||
"@jimp/config-vitest": "1.0.5", | ||
"@jimp/test-utils": "1.0.5", | ||
"@jimp/config-eslint": "1.1.0", | ||
"@jimp/config-typescript": "1.1.0", | ||
"@jimp/config-vitest": "1.1.0", | ||
"@jimp/test-utils": "1.1.0", | ||
"@vitest/browser": "^1.4.0", | ||
"eslint": "^8.57.0", | ||
"tshy": "^1.12.0", | ||
"tshy": "^3.0.2", | ||
"typescript": "^5.5.4", | ||
@@ -29,8 +29,8 @@ "vite-plugin-node-polyfills": "^0.21.0", | ||
"dependencies": { | ||
"@jimp/core": "1.0.5", | ||
"@jimp/plugin-blur": "1.0.5", | ||
"@jimp/plugin-color": "1.0.5", | ||
"@jimp/plugin-resize": "1.0.5", | ||
"@jimp/types": "1.0.5", | ||
"@jimp/utils": "1.0.5", | ||
"@jimp/core": "1.1.0", | ||
"@jimp/plugin-blur": "1.1.0", | ||
"@jimp/plugin-color": "1.1.0", | ||
"@jimp/plugin-resize": "1.1.0", | ||
"@jimp/types": "1.1.0", | ||
"@jimp/utils": "1.1.0", | ||
"zod": "^3.22.4" | ||
@@ -67,3 +67,4 @@ }, | ||
"sideEffects": false, | ||
"gitHead": "44ab95c1875f9f94d993d7a48d66de00115fb4a8" | ||
"module": "./dist/esm/index.js", | ||
"gitHead": "887b0cb53fe5b8d545c8cda82a3db5ef90f18136" | ||
} |
@@ -8,24 +8,2 @@ <div align="center"> | ||
## Usage | ||
- @param {function(Error, Jimp)} options (optional) | ||
- opacity - opacity of the shadow between 0 and 1 | ||
- size,- of the shadow | ||
- blur - how blurry the shadow is | ||
- x - x position of shadow | ||
- y - y position of shadow | ||
- @param {function(Error, Jimp)} cb (optional) a callback for when complete | ||
```js | ||
import jimp from "jimp"; | ||
async function main() { | ||
const image = await jimp.read("test/image.png"); | ||
image.shadow(); | ||
// or | ||
image.shadow({ opacity: 0.8, size: 1.2, blur: 10, x: -75, y: -75 }); | ||
} | ||
main(); | ||
``` | ||
- [shadow](http://jimp-dev.github.io/jimp/api/jimp/classes/jimp#shadow) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
291
19667
9
+ Added@jimp/core@1.1.0(transitive)
+ Added@jimp/file-ops@1.1.0(transitive)
+ Added@jimp/plugin-blur@1.1.0(transitive)
+ Added@jimp/plugin-color@1.1.0(transitive)
+ Added@jimp/plugin-resize@1.1.0(transitive)
+ Added@jimp/types@1.1.0(transitive)
+ Added@jimp/utils@1.1.0(transitive)
- Removed@jimp/core@1.0.5(transitive)
- Removed@jimp/file-ops@1.0.5(transitive)
- Removed@jimp/plugin-blur@1.0.5(transitive)
- Removed@jimp/plugin-color@1.0.5(transitive)
- Removed@jimp/plugin-resize@1.0.5(transitive)
- Removed@jimp/types@1.0.5(transitive)
- Removed@jimp/utils@1.0.5(transitive)
Updated@jimp/core@1.1.0
Updated@jimp/plugin-blur@1.1.0
Updated@jimp/plugin-color@1.1.0
Updated@jimp/plugin-resize@1.1.0
Updated@jimp/types@1.1.0
Updated@jimp/utils@1.1.0