-
Notifications
You must be signed in to change notification settings - Fork 4
/
rename.json
18 lines (15 loc) · 1.04 KB
/
rename.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"src/js/main.js": "{% if (js) { %}src/js/main.js{% }%}",
"tests/helpers/empty.js": "{% if (js) { %}tests/helpers/empty.js{% }%}",
"tests/js/nameSpec.js": "{% if (js) { %}tests/js/{%= jsname %}Spec.js{% }%}",
"src/ts/main.ts": "{% if(!js) { %}src/ts/main.ts{% }%}",
"tslint.json": "{% if (!js) { %}tslint.json{% }%}",
"typings/tsd.d.ts": "{% if (!js) { %}typings/tsd.d.ts{% }%}",
"typings/MashupPlatform/MashupPlatform.d.ts": "{% if (!js) { %}typings/MashupPlatform/MashupPlatform.d.ts{% }%}",
"typings/MashupPlatform/MashupPlatform-tests.ts": "{% if (!js) { %}typings/MashupPlatform/MashupPlatform-tests.ts{% }%}",
"typings/MashupPlatform/tsconfig.json": "{% if (!js) { %}typings/MashupPlatform/tsconfig.json{% }%}",
"typings/NGSI/NGSI.d.ts": "{% if (!js && ngsi) { %}typings/NGSI/NGSI.d.ts{% }%}",
"typings/NGSI/NGSI-tests.ts": "{% if (!js && ngsi) { %}typings/NGSI/NGSI-tests.ts{% }%}",
"src/config.xml": "{% if (!json) { %}src/config.xml{% }%}",
"src/config.json": "{% if (json) { %}src/config.json{% }%}"
}