From 32b6d69de810534826768167780da4fa9c420a6d Mon Sep 17 00:00:00 2001 From: tantebootsy Date: Wed, 7 Aug 2024 08:38:16 +0200 Subject: [PATCH] Change default JS-folder To be inline with TYPO3-defaults, the default JS-folder should be renamed to "JavaScript". This should be reflected in the documentation as soon as https://github.com/mxsteini/t3-build/pull/2 had been implemented --- lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index 40304ed..087fccd 100644 --- a/lib/config.js +++ b/lib/config.js @@ -115,7 +115,7 @@ export default class Config { source: process.env.T3BUILD_SRC || config.source || 'src', packages: process.env.T3BUILD_PACKAGES || config.packages || 'packages', css: process.env.T3BUILD_CSS || config.css || 'Css', - js: process.env.T3BUILD_JS || config.js || 'Js', + js: process.env.T3BUILD_JS || config.js || 'JavaScript', projectPath: process.env.INIT_CWD || process.cwd(), getSourceDir: function () { return path.resolve(path.join(this.projectPath, this.source))