merge-images
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "merge-images", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Easily compose images together without messing around with canvas", | ||
@@ -41,6 +41,6 @@ "main": "dist/index.umd.js", | ||
"devDependencies": { | ||
"ava": "^0.19.1", | ||
"ava": "^0.24.0", | ||
"camelcase": "^4.0.0", | ||
"canvas": "^1.6.2", | ||
"coveralls": "^2.11.15", | ||
"coveralls": "^3.0.0", | ||
"datauri": "^1.0.5", | ||
@@ -50,6 +50,6 @@ "eslint-config-xo-lukechilds": "^1.0.0", | ||
"pify": "^3.0.0", | ||
"rollup": "^0.42.0", | ||
"rollup-plugin-buble": "^0.15.0", | ||
"rollup": "^0.52.0", | ||
"rollup-plugin-buble": "^0.18.0", | ||
"xo": "^0.18.2" | ||
} | ||
} |
@@ -50,3 +50,3 @@ # merge-images | ||
Those source png images where already the right dimensions to be overlaid on top of each other. You can also supply an array of objects with x/y co-ords to manually position each image: | ||
Those source png images were already the right dimensions to be overlaid on top of each other. You can also supply an array of objects with x/y co-ords to manually position each image: | ||
@@ -53,0 +53,0 @@ ```js |
@@ -7,19 +7,19 @@ import buble from 'rollup-plugin-buble'; | ||
export default { | ||
entry: 'src/index.js', | ||
input: 'src/index.js', | ||
plugins: [ | ||
buble() | ||
], | ||
targets: [ | ||
output: [ | ||
{ | ||
dest: pkg.main, | ||
file: pkg.main, | ||
format: 'umd', | ||
moduleName: camelCase(pkg.name), | ||
sourceMap: true | ||
name: camelCase(pkg.name), | ||
sourcemap: true | ||
}, | ||
{ | ||
dest: pkg.module, | ||
file: pkg.module, | ||
format: 'es', | ||
sourceMap: true | ||
sourcemap: true | ||
} | ||
] | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
148314
26