From f29de7f826d89b2516b1a96465f91d146123fdf1 Mon Sep 17 00:00:00 2001 From: Serraniel Date: Mon, 28 Dec 2020 23:31:12 +0100 Subject: [PATCH] #48 Fixed minor error in the build script --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e4fbce1..0868042 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -126,7 +126,7 @@ gulp.task('scripts', () => { modules.forEach(module => { inputs.push(`${src.scripts}/${module}.ts`); - streams.push(source(`${module}.ts`)); + streams.push(source(`${module}.js`)); }); const b = browserify(inputs, { debug: isDev });