This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
Project, | |
Type, | |
Symbol, | |
SymbolFlags, | |
Signature, | |
Node, | |
TypeFormatFlags, | |
} from 'ts-morph'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This scripts applies an XD transform to a file | |
# | |
# For diagnostic the script outputs a diff between the original file and the transformed file. | |
# FOR MORE INFO ABOUT XDT TRANSFORMS READ HERE | |
# https://msdn.microsoft.com/en-us/library/dd465326(v=vs.110).aspx | |
[CmdletBinding()] | |
Param( | |
<# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script saves an XD transform file into MS Deploy Package with additional validations | |
# FOR MORE INFO ABOUT XDT TRANSFORMS READ HERE | |
# https://msdn.microsoft.com/en-us/library/dd465326(v=vs.110).aspx | |
[CmdletBinding()] | |
Param( | |
<# | |
.SYNOPSIS Path to the file contents of which should be added to the package, contents of this file is the XD transform | |
#> |