Skip to content

Commit 2569060

Browse files
committed
-> v1.0.2
1 parent b819668 commit 2569060

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# devalue changelog
22

3+
## 1.0.2
4+
5+
* Fix global name for UMD build
6+
37
## 1.0.1
48

59
* XSS mitigation ([#1](https://github.com/Rich-Harris/devalue/issues/1))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "devalue",
33
"description": "Gets the job done when JSON.stringify can't",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"repository": "Rich-Harris/devalue",
66
"main": "dist/devalue.umd.js",
77
"module": "dist/devalue.esm.js",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
{ file: pkg.main, format: 'umd' },
88
{ file: pkg.module, format: 'es' }
99
],
10-
name: 'TODO',
10+
name: 'devalue',
1111
plugins: [
1212
typescript({
1313
typescript: require('typescript')

0 commit comments

Comments
 (0)