Skip to content

Commit bf9709a

Browse files
committed
fix: support older browsers
1 parent c717029 commit bf9709a

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.build.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const glob = require("tiny-glob");
44

55
const [opts, args] = cliopts.parse(
66
["react", "Build React sources"],
7-
["typescript", "Build TypeScript sources"]
7+
["typescript", "Build TypeScript sources"],
88
);
99

1010
if (opts.react) {
@@ -13,6 +13,7 @@ if (opts.react) {
1313
entryPoints: ["./admin/src/index"],
1414
tsconfig: "./admin/tsconfig.json",
1515
bundle: true,
16+
target: "es2018",
1617
minify: !cliopts.watch,
1718
outdir: "admin/build",
1819
sourcemap: true,

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ The result object `ret` looks as follows:
7070
Placeholder for next release:
7171
### __WORK IN PROGRESS__
7272
-->
73+
### __WORK IN PROGRESS__
74+
* Improve support for older browsers
75+
* Update dependencies
76+
7377
### 3.0.1 (2021-06-30)
7478
* Workaround for a bug in IKEA gateway firmware `v1.15.x`
7579

admin/build/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/build/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)