@donmahallem/gulp-sharp
Advanced tools
Comparing version 2.2.19 to 2.3.2
@@ -10,2 +10,1 @@ /// <reference types="node" /> | ||
} | ||
//# sourceMappingURL=buffer-response.d.ts.map |
@@ -10,2 +10,1 @@ /// <reference types="node" /> | ||
export {}; | ||
//# sourceMappingURL=buffer-to-vinyl-buffer.d.ts.map |
@@ -13,2 +13,1 @@ import { SharpOptions } from 'sharp'; | ||
} | ||
//# sourceMappingURL=config.d.ts.map |
@@ -7,3 +7,2 @@ import sharp from 'sharp'; | ||
} | ||
export declare const handleConfig: (inputFile: BufferFile, config: ISharpConfig, sharpInit?: sharp.SharpOptions | undefined) => sharp.Sharp; | ||
//# sourceMappingURL=handle-config.d.ts.map | ||
export declare const handleConfig: (inputFile: BufferFile, config: ISharpConfig, sharpInit?: sharp.SharpOptions) => sharp.Sharp; |
@@ -11,3 +11,2 @@ import sharp from 'sharp'; | ||
*/ | ||
export declare const handleMethod: (inputFile: BufferFile, handler: SharpHandler, sharpInit?: sharp.SharpOptions | undefined) => sharp.Sharp; | ||
//# sourceMappingURL=handle-method.d.ts.map | ||
export declare const handleMethod: (inputFile: BufferFile, handler: SharpHandler, sharpInit?: sharp.SharpOptions) => sharp.Sharp; |
@@ -5,2 +5,1 @@ export { IConfig } from './config'; | ||
export { gulpSharp } from './plugin'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -9,2 +9,1 @@ import { Transform } from 'stream'; | ||
export declare const gulpSharp: (cfg: IConfig) => Transform; | ||
//# sourceMappingURL=plugin.d.ts.map |
@@ -12,2 +12,1 @@ import { Sharp } from 'sharp'; | ||
export declare const sharpToVinylBuffer: (input: Sharp, sourceFile: BufferFile, cfg: IConfig) => Promise<BufferFile>; | ||
//# sourceMappingURL=sharp-to-vinyl-buffer.d.ts.map |
135
package.json
{ | ||
"name": "@donmahallem/gulp-sharp", | ||
"version": "2.2.19", | ||
"description": "Sharp Plugin for Gulp. Modify images via sharp.", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/types/index.d.ts", | ||
"private": false, | ||
"keywords": [ | ||
"gulp", | ||
"sharp", | ||
"gulp-plugin", | ||
"convert", | ||
"image", | ||
"scale" | ||
], | ||
"scripts": { | ||
"build": "rollup -c ./rollup.config.js && npm run build:types", | ||
"build:types": "tsc --project ./tsconfig.json -d --declarationDir dist/types --declarationMap --emitDeclarationOnly", | ||
"build:readme": "npx @appnest/readme generate --input ../package_readme_blueprint.md --config readme_config.json", | ||
"test": "mocha --config ../../.mocharc.yml", | ||
"test:coverage": "nyc --nycrc-path ../../.nycrc.json npm run test", | ||
"lint": "eslint -c ./.eslintrc.js --ext .ts ./src", | ||
"postlint": "prettier --config ./../../.prettierrc src/**/*.ts --check", | ||
"lint:fix": "eslint -c ./.eslintrc.js --ext .ts ./src --fix", | ||
"postlint:fix": "prettier --config ./../../.prettierrc src/**/*.ts --write", | ||
"docs": "typedoc --options ./typedoc.config.js", | ||
"prepublishOnly": "npm run test && npm run docs && npm run build", | ||
"version": "npm run build:readme && git add README.md" | ||
}, | ||
"homepage": "https://donmahallem.github.io/js-libs/", | ||
"author": { | ||
"name": "donmahallem", | ||
"email": "donmahallem@users.noreply.github.com", | ||
"url": "https://github.com/donmahallem" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/donmahallem/js-libs/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/donmahallem/js-libs.git" | ||
}, | ||
"engines": { | ||
"node": ">=14" | ||
}, | ||
"files": [ | ||
"dist/*", | ||
"src/*", | ||
"!src/**/*.spec.ts" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"devDependencies": { | ||
"@types/gulp": "4.0.9", | ||
"@types/sharp": "0.30.1", | ||
"@types/through2": "2.0.36" | ||
}, | ||
"dependencies": { | ||
"deepmerge": "~4.2.2", | ||
"gulp": "~4.0.2", | ||
"plugin-error": "~1.0.1", | ||
"sharp": "~0.30.3", | ||
"through2": "~4.0.2", | ||
"vinyl": "~2.2.1" | ||
}, | ||
"gitHead": "7197bb601e1c5f18087dd6f53f16dcb5cb8ba476" | ||
"name": "@donmahallem/gulp-sharp", | ||
"version": "2.3.2", | ||
"description": "Sharp Plugin for Gulp. Modify images via sharp.", | ||
"main": "./dist/cjs/index.cjs", | ||
"types": "./dist/types/index.d.ts", | ||
"module": "./dist/esm/index.mjs", | ||
"private": false, | ||
"keywords": [ | ||
"gulp", | ||
"sharp", | ||
"gulp-plugin", | ||
"convert", | ||
"image", | ||
"scale" | ||
], | ||
"typedocMain": "./src/index.ts", | ||
"scripts": { | ||
"build": "rollup -c rollup.config.js", | ||
"build:readme": "npx @appnest/readme generate --input ../package_readme_blueprint.md --config readme_config.json", | ||
"test": "mocha --config ../../.mocharc.json", | ||
"test:coverage": "c8 --config ../../.nycrc.json npm run test", | ||
"lint": "eslint -c ./.eslintrc.js --ext .ts ./src", | ||
"postlint": "prettier --config ./../../.prettierrc src/**/*.ts --check", | ||
"lint:fix": "eslint -c ./.eslintrc.js --ext .ts ./src --fix", | ||
"postlint:fix": "prettier --config ./../../.prettierrc src/**/*.ts --write", | ||
"prepublishOnly": "npm run test && npm run build", | ||
"version": "npm run build:readme && git add README.md" | ||
}, | ||
"homepage": "https://donmahallem.github.io/js-libs/", | ||
"author": { | ||
"name": "donmahallem", | ||
"email": "donmahallem@users.noreply.github.com", | ||
"url": "https://github.com/donmahallem" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/donmahallem/js-libs/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/donmahallem/js-libs.git" | ||
}, | ||
"engines": { | ||
"node": ">=14" | ||
}, | ||
"files": [ | ||
"dist/*", | ||
"src/*", | ||
"!src/**/*.spec.ts" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"devDependencies": { | ||
"@types/gulp": "4.0.9", | ||
"@types/sharp": "0.30.4", | ||
"@types/through2": "2.0.36" | ||
}, | ||
"dependencies": { | ||
"deepmerge": "~4.2.2", | ||
"gulp": "~4.0.2", | ||
"plugin-error": "~1.0.1", | ||
"sharp": "~0.30.6", | ||
"through2": "~4.0.2", | ||
"vinyl": "~2.2.1" | ||
}, | ||
"gitHead": "121045047e321079c0209efd36607c96a444aaeb" | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
39
499
40752
1
Updatedsharp@~0.30.6