diff options
author | Jose <jose@zeroc.com> | 2018-10-16 00:53:00 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-10-16 00:53:00 +0200 |
commit | cf8292f9cdadcb6619287ada4f5273c25c5a3cfb (patch) | |
tree | 4a227f287d2a5e22e36b1f488f00a3c96add7a44 /scripts/Component.py | |
parent | Updated VS2017 requirement (diff) | |
download | ice-cf8292f9cdadcb6619287ada4f5273c25c5a3cfb.tar.bz2 ice-cf8292f9cdadcb6619287ada4f5273c25c5a3cfb.tar.xz ice-cf8292f9cdadcb6619287ada4f5273c25c5a3cfb.zip |
Typescript support
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index 4144c75b8a6..6e339e4d59e 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -119,6 +119,9 @@ class Ice(Component): "Ice/plugin", "Ice/logger", "Ice/properties"]) + elif isinstance(mapping, JavaScriptMapping): + return ([], + ["ts/*"] + (["Slice/escape", "Ice/properties"] if config.typescript else [])) return ([], []) def canRun(self, testId, mapping, current): |