babel-plugin-cloudinary
Advanced tools
Comparing version 0.0.1 to 0.0.2
# Change Log | ||
## master | ||
- | ||
## [0.0.2](https://github.com/trivago/babel-plugin-cloudinary/tree/0.0.2) | ||
- First release with documented APIs for `__buildCloudinaryUrl` and `cloudinaryrc.json`. | ||
### Bugfix | ||
- [#7](https://github.com/trivago/babel-plugin-cloudinary/issues/7) Support asset names in `getBaseImageUrl` that are URL-encoded by Cloudinary API. | ||
### Features | ||
- Update dependencies based on npm security audit | ||
## [0.0.1](https://github.com/trivago/babel-plugin-cloudinary/tree/0.0.1) | ||
- First release with documented APIs for `__buildCloudinaryUrl` and `cloudinaryrc.json`. |
@@ -41,3 +41,3 @@ /** | ||
return url.split(assetName)[0]; | ||
return decodeURIComponent(url).split(assetName)[0]; | ||
} | ||
@@ -44,0 +44,0 @@ |
{ | ||
"name": "babel-plugin-cloudinary", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Compile cloudinary URLs at build time", | ||
@@ -52,5 +52,6 @@ "author": "Daniel Caldas", | ||
"husky": "^1.3.1", | ||
"jest": "^22.4.4", | ||
"jest": "^24.8.0", | ||
"lint-staged": "^8.1.3", | ||
"nodemon": "^1.18.9", | ||
"prettier": "^1.18.2", | ||
"typescript": "^3.2.4" | ||
@@ -57,0 +58,0 @@ }, |
38125
16