aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhoden <khoden@yandex-team.com>2024-04-11 13:09:59 +0300
committerkhoden <khoden@yandex-team.com>2024-04-11 13:38:02 +0300
commit77a2f79874c0555c4528b1d0a7be09dc9f894abe (patch)
treec8b37d6869a647aa41f6053d455424baad71d18f
parent4d7c690806562e640d5ea9635327b837affe218b (diff)
downloadydb-77a2f79874c0555c4528b1d0a7be09dc9f894abe.tar.gz
TS_WEBPACK: Поддержать несколько выходных директорий (доработка)
b01b89a11275e2cb656a9550f53f7dae0160d7d6
-rw-r--r--build/conf/ts/ts_webpack.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/build/conf/ts/ts_webpack.conf b/build/conf/ts/ts_webpack.conf
index 091b73bb70..36638af41d 100644
--- a/build/conf/ts/ts_webpack.conf
+++ b/build/conf/ts/ts_webpack.conf
@@ -12,13 +12,13 @@ TS_WEBPACK_CMD=$TOUCH_UNIT \
${output;hide:"package.json"} \
${kv;hide:"pc magenta"} ${kv;hide:"p TS_WPK"}
-### @usage: WEBPACK_OUTPUT(DirNames)
+### @usage: WEBPACK_OUTPUT(FirstDirName DirNames)
###
-### Macro sets the output directory name/names for TS_WEBPACK module.
+### Macro sets the output directory names (one at least) for TS_WEBPACK module.
###
-### - DirNames - output directory name/names ("bundle" by default).
-macro WEBPACK_OUTPUT(DirNames...) {
- SET(WEBPACK_OUTPUT_DIR $DirNames)
+### - DirNames - output directory names (one at least) ("bundle" by default).
+macro WEBPACK_OUTPUT(FirstDirName, DirNames...) {
+ SET(WEBPACK_OUTPUT_DIR $FirstDirName $DirNames)
}
### @usage: TS_WEBPACK([name])