This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ExtraArgs, Project, TypeCheck, and Version (beta1)
- Loading branch information
Josh Goldberg
committed
Oct 20, 2016
1 parent
29c8191
commit 6964123
Showing
12 changed files
with
93 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
|
||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TSLintVersion", "TSLintVersion/TSLintVersion.csproj", "{TSLintVersion-Guid}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{TSLintVersion-Guid}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{TSLintVersion-Guid}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
EndGlobalSection | ||
EndGlobal |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="..\..\..\src\build\TSLint.MSBuild.targets" /> | ||
|
||
<Target Name="Rebuild" /> | ||
|
||
<!-- Fake setup for the TypeScript build environment --> | ||
<Target AfterTargets="Rebuild" Name="CompileTypeScript"> | ||
<ItemGroup> | ||
<TypeScriptCompile Include="foo.ts" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<BuildingProject>true</BuildingProject> | ||
</PropertyGroup> | ||
</Target> | ||
|
||
<!-- Fake properties for the TSLint task --> | ||
<PropertyGroup> | ||
<TSLintDisabled>true</TSLintDisabled> | ||
<TSLintVersion>1.1?.2</TSLintVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Post-TSLint verification --> | ||
<Target AfterTargets="TSLint" Name="Test"> | ||
<PropertyGroup> | ||
<TSLintCliExpected>$(SolutionDir)packages\tslint.1.12.2\tools\node_modules\tslint\lib\tslint-cli.js</TSLintCliExpected> | ||
</PropertyGroup> | ||
|
||
<Error | ||
Condition="'$(TSLintCliExpected)' != '$(TSLintCli)'" | ||
Text="Expected TSLintCli to be%0a'$(TSLintCliExpected)'%0abut got%0a'$(TSLintCli)'.." /> | ||
|
||
<Message | ||
Condition="'$(TSLintCliExpected)' == '$(TSLintCli)'" | ||
Importance="High" | ||
Text="TSLintCli passed." /> | ||
</Target> | ||
</Project> |
1 change: 1 addition & 0 deletions
1
test/TSLintVersion/packages/tslint.0.4.5/tools/node_modules/tslint/lib/tslint-cli.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
test/TSLintVersion/packages/tslint.1.11.4/tools/node_modules/tslint/lib/tslint-cli.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
test/TSLintVersion/packages/tslint.1.12.2/tools/node_modules/tslint/lib/tslint-cli.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
test/TSLintVersion/packages/tslint.1.3.5/tools/node_modules/tslint/lib/tslint-cli.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.