diff options
author | khoden <khoden@yandex-team.com> | 2024-04-11 13:09:59 +0300 |
---|---|---|
committer | khoden <khoden@yandex-team.com> | 2024-04-11 13:38:02 +0300 |
commit | 77a2f79874c0555c4528b1d0a7be09dc9f894abe (patch) | |
tree | c8b37d6869a647aa41f6053d455424baad71d18f /build/conf/ts | |
parent | 4d7c690806562e640d5ea9635327b837affe218b (diff) | |
download | ydb-77a2f79874c0555c4528b1d0a7be09dc9f894abe.tar.gz |
TS_WEBPACK: Поддержать несколько выходных директорий (доработка)
b01b89a11275e2cb656a9550f53f7dae0160d7d6
Diffstat (limited to 'build/conf/ts')
-rw-r--r-- | build/conf/ts/ts_webpack.conf | 10 |
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]) |