Include TypeScript files into installer
Include TypeScript auto-completion file & function list file into installer.
This commit is contained in:
parent
f50061981a
commit
92b45d48c7
|
@ -147,6 +147,11 @@ SectionGroup "Auto-completion Files" autoCompletionComponent
|
|||
SetOutPath "$INSTDIR\autoCompletion"
|
||||
File ".\APIs\cobol.xml"
|
||||
${MementoSectionEnd}
|
||||
|
||||
${MementoSection} "TypeScript" TypeScript
|
||||
SetOutPath "$INSTDIR\autoCompletion"
|
||||
File ".\APIs\typescript.xml"
|
||||
${MementoSectionEnd}
|
||||
SectionGroupEnd
|
||||
|
||||
|
||||
|
@ -248,12 +253,16 @@ SectionGroup un.autoCompletionComponent
|
|||
Delete "$INSTDIR\autoCompletion\lua.xml"
|
||||
SectionEnd
|
||||
|
||||
Section un.autoit
|
||||
Section un.AutoIt
|
||||
Delete "$INSTDIR\autoCompletion\autoit.xml"
|
||||
SectionEnd
|
||||
|
||||
Section un.cobol
|
||||
Section un.COBOL
|
||||
Delete "$INSTDIR\autoCompletion\cobol.xml"
|
||||
SectionEnd
|
||||
|
||||
Section un.TypeScript
|
||||
Delete "$INSTDIR\autoCompletion\typescript.xml"
|
||||
SectionEnd
|
||||
|
||||
SectionGroupEnd
|
||||
|
|
|
@ -173,6 +173,11 @@ SectionGroup "Function List Files" functionListComponent
|
|||
File ".\functionList\rust.xml"
|
||||
${MementoSectionEnd}
|
||||
|
||||
${MementoSection} "TypeScript" TypeScript_FL
|
||||
SetOutPath "$INSTDIR\functionList"
|
||||
File ".\functionList\typescript.xml"
|
||||
${MementoSectionEnd}
|
||||
|
||||
SetOverwrite off
|
||||
${MementoSection} "Override Map" OverrideMap_FL
|
||||
SetOutPath "$INSTDIR\functionList"
|
||||
|
@ -311,5 +316,9 @@ SectionGroup un.functionListComponent
|
|||
Delete "$INSTDIR\functionList\rust.xml"
|
||||
SectionEnd
|
||||
|
||||
Section un.TypeScript_FL
|
||||
Delete "$INSTDIR\functionList\typescript.xml"
|
||||
SectionEnd
|
||||
|
||||
|
||||
SectionGroupEnd
|
||||
|
|
Loading…
Reference in New Issue