We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e626a50 commit 946efa6Copy full SHA for 946efa6
build_lualib.ts
@@ -1,7 +1,6 @@
1
-import concat = require("concat");
+import * as fs from "fs";
2
import * as glob from "glob";
3
import {compile} from "./src/Compiler";
4
-import * as fs from "fs";
5
6
const bundlePath = "./dist/lualib/lualib_bundle.lua";
7
@@ -26,4 +25,4 @@ let bundle = "";
26
25
27
glob.sync("./dist/lualib/*.lua").forEach(fileName => bundle += fs.readFileSync(fileName));
28
29
-fs.writeFileSync(bundlePath, bundle);
+fs.writeFileSync(bundlePath, bundle);
0 commit comments