blob: 078c933f0109621c0845b660f503dcab65646411 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# TYPESCRIPT_ROOT is defined by _PEERDIR_TS_RESOURCE(typescript)
TYPESCRIPT_ROOT=
TS_COMPILE=$TOUCH_UNIT \
&& $_TS_FILES_COPY_CMD \
&& ${cwd:BINDIR} $NOTS_TOOL compile-ts $NOTS_TOOL_BASE_ARGS \
--moddir $MODDIR \
--ts-configs $TS_CONFIG_PATH \
--node-modules-bundle $NOTS_TOOL_NODE_MODULES_BUNDLE $NODE_MODULES_BUNDLE_AS_OUTPUT ${hide:PEERS} \
--tsc-resource $TYPESCRIPT_ROOT \
${input;hide:"package.json"} ${TS_CONFIG_FILES} $_AS_HIDDEN_INPUTS(IN $TS_INPUT_FILES) \
${output;hide:"package.json"} ${output;hide:"output.tar"} \
${kv;hide:"p TSC"} ${kv;hide:"pc magenta"}
### @usage: TS_LIBRARY([name])
###
### The TypeScript/JavaScript library module, compiles TypeScript sources to JavaScript.
### Build results are JavaScript files, typings and source mappings (depending on local tsconfig.json settings).
###
### @example
###
### TS_LIBRARY()
### SRCS(src/index.ts)
### END()
###
multimodule TS_LIBRARY {
module BUILD: _TS_BASE_UNIT {
.CMD=TS_COMPILE
.PEERDIRSELF=NODE_MODULES
# epilogue is not inherited from TS_LIBRARY
.EPILOGUE=_TS_CONFIG_EPILOGUE
# by default multimodule overrides inherited MODULE_TAG to submodule name (BUILD in this case)
# but we have to set it to TS for include processor to work
SET(MODULE_TAG TS)
SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS ${CURDIR}/${TS_CONFIG_PATH} ${CURDIR}/package.json)
_PEERDIR_TS_RESOURCE(typescript)
SET(TS_CONFIG_DEDUCE_OUT no)
# we should set NODE_MODULES_BUNDLE_AS_OUTPUT conditionally,
# based on whether module has deps or doesn't have
_SET_NODE_MODULES_BUNDLE_AS_OUTPUT()
_TS_GLOB()
_TS_CONFIGURE($TS_CONFIG_PATH)
}
module NODE_MODULES: _NODE_MODULES_BASE {
}
}
|