Skip to content
This repository was archived by the owner on Nov 4, 2023. It is now read-only.

Commit b8244f1

Browse files
committedDec 28, 2019
source-map-resolve v0.5.3
1 parent 8cb7ab5 commit b8244f1

6 files changed

+18
-10
lines changed
 

‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "source-map-resolve",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"author": "Simon Lydell",
55
"license": "MIT",
66
"description": "Resolve the source map and/or sources for a generated file.",

‎changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### Version 0.5.3 (2019-12-28) ###
2+
3+
- Fixed: base64 encoded source maps now correctly decodes as utf-8. Previously,
4+
non-ASCII characters could end up garbled. Thanks to ZHAO Jinxiang
5+
(@xiaoxiangmoe)! (Note: This fix does not work in old evironments not
6+
supporting both `TextDecoder` and `Uint8Array`.)
7+
- Improved: Reduced size of the npm package.
8+
19
### Version 0.5.2 (2018-05-10) ###
210

311
- Improved: Updated the version range of `atob` to disallow depending on `2.0.3`

‎component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "source-map-resolve",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"author": "Simon Lydell",
55
"license": "MIT",
66
"description": "Resolve the source map and/or sources for a generated file.",

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "source-map-resolve",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"author": "Simon Lydell",
55
"license": "MIT",
66
"description": "Resolve the source map and/or sources for a generated file.",
@@ -44,4 +44,4 @@
4444
"simple-asyncify": "1.0.0",
4545
"tape": "4.12.1"
4646
}
47-
}
47+
}

‎x-package.json5

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
name: "source-map-resolve",
3-
version: "0.5.2",
3+
version: "0.5.3",
44
author: "Simon Lydell",
55
license: "MIT",
66
description: "Resolve the source map and/or sources for a generated file.",
@@ -33,18 +33,18 @@
3333
build: "node generate-source-map-resolve.js"
3434
},
3535
dependencies: {
36-
"atob": "^2.1.1",
36+
"atob": "^2.1.2",
3737
"decode-uri-component": "^0.2.0",
3838
"resolve-url": "^0.2.1",
3939
"source-map-url": "^0.4.0",
4040
"urix": "^0.1.0"
4141
},
4242
devDependencies: {
43-
"Base64": "1.0.1",
44-
"jshint": "2.9.5",
43+
"Base64": "1.1.0",
44+
"jshint": "2.10.3",
4545
"setimmediate": "1.0.5",
4646
"simple-asyncify": "1.0.0",
47-
"tape": "4.9.0"
47+
"tape": "4.12.1"
4848
}
4949
},
5050
component: {

0 commit comments

Comments
 (0)
This repository has been archived.