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
| trigger: | |
| - main | |
| pool: | |
| vmImage: ubuntu-latest | |
| steps: | |
| - task: NodeTool@0 | |
| inputs: | |
| versionSpec: '14.x' |
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
| <xml version="1.0" encoding="utf-8"> | |
| <configuration> | |
| <system.webServer> | |
| <handlers> | |
| <add name="iisnode" path="main.js" verb="*" modules="iisnode"/> | |
| </handlers> | |
| <rewrite> | |
| <rules> | |
| <rule name="DynamicContent"> |
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
| #!/usr/bin/env pwsh | |
| # Copyright 2018 the Deno authors. All rights reserved. MIT license. | |
| # TODO(everyone): Keep this script simple and easily auditable. | |
| $ErrorActionPreference = 'Stop' | |
| if ($v) { | |
| $Version = "v${v}" | |
| } | |
| if ($args.Length -eq 1) { |