From 0283ad1bc2161a01c7dae3867654889ba1a129c1 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 11 Dec 2023 14:22:00 +0900 Subject: [PATCH] Update app.js --- app.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 97cb76f..fbcf5aa 100644 --- a/app.js +++ b/app.js @@ -218,9 +218,10 @@ function require(FN) { var __filename__ = (function(getCurrentScriptDirectory, fileExists, path) { var basepath = getCurrentScriptDirectory(); var filepaths = [ - path.join(basepath, FN), - path.join(basepath, "bower_components", FN), - path.join(basepath, "node_modules", FN) + path.join(basepath, FN), // WelsonJS base library + path.join(basepath, "Scripts", FN) // NuGet + path.join(basepath, "bower_components", FN), // Bower + path.join(basepath, "node_modules", FN), // NPM ]; var filename = filepaths[0];