Skip to content

Commit bdc81ce

Browse files
authored
Compile to es5 instead of ESNext. (#10)
1 parent e3a4cf9 commit bdc81ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Load as script tag
8989
<script src="path/to/arcgis-html-sanitizer.min.js"></script>
9090

9191
<!-- CDN (Adjust the version as needed) -->
92-
<script src="https://cdn.jsdelivr.net/npm/@esri/arcgis-html-sanitizer@0.3.0/dist/umd/arcgis-html-sanitizer.min.js"></script>
92+
<script src="https://cdn.jsdelivr.net/npm/@esri/arcgis-html-sanitizer@0.4.0/dist/umd/arcgis-html-sanitizer.min.js"></script>
9393
```
9494

9595
#### Basic Usage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/arcgis-html-sanitizer",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description":
55
"A simple utility to sanitize a string according to ArcGIS supported HTML specification.",
66
"main": "dist/node/index.js",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"allowSyntheticDefaultImports": true,
4-
"target": "ESNext",
4+
"target": "es5",
55
"module": "ESNext",
66
"moduleResolution": "node",
77
"sourceMap": true,

0 commit comments

Comments
 (0)