Skip to content

Commit 1a810ad

Browse files
committed
fix import for v6
1 parent ab148ab commit 1a810ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/v6/OutputBuilders/JsMinArrBuilder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {buildOptions,registerCommonValueParsers} from"./ParserOptionsBuilder";
1+
import {buildOptions,registerCommonValueParsers} from"./ParserOptionsBuilder.js";
22

33
export default class OutputBuilder{
44
constructor(options){

src/v6/OutputBuilders/ParserOptionsBuilder.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import trimParser from "../valueParsers/trim";
2-
import booleanParser from "../valueParsers/booleanParser";
3-
import currencyParser from "../valueParsers/currency";
4-
import numberParser from "../valueParsers/number";
1+
import trimParser from "../valueParsers/trim.js";
2+
import booleanParser from "../valueParsers/booleanParser.js";
3+
import currencyParser from "../valueParsers/currency.js";
4+
import numberParser from "../valueParsers/number.js";
55

66
const defaultOptions={
77
nameFor:{

0 commit comments

Comments
 (0)