Skip to content

Commit 946efa6

Browse files
committed
Fixed dependecy issue
1 parent e626a50 commit 946efa6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build_lualib.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import concat = require("concat");
1+
import * as fs from "fs";
22
import * as glob from "glob";
33
import {compile} from "./src/Compiler";
4-
import * as fs from "fs";
54

65
const bundlePath = "./dist/lualib/lualib_bundle.lua";
76

@@ -26,4 +25,4 @@ let bundle = "";
2625

2726
glob.sync("./dist/lualib/*.lua").forEach(fileName => bundle += fs.readFileSync(fileName));
2827

29-
fs.writeFileSync(bundlePath, bundle);
28+
fs.writeFileSync(bundlePath, bundle);

0 commit comments

Comments
 (0)