This repository was archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Using avocado diff algorithm instead of 'git fetch' #3
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
d9732e2
no fetch branch.
sergey-shandar 33f5a7f
momenthOfTruthUtils
sergey-shandar 53fed22
0.2.1
sergey-shandar b96c9ce
BeoreOrAfter
sergey-shandar 0f4ef82
fix File type
sergey-shandar 0b7b8c2
0.2.4
sergey-shandar 5bef212
no fetch
sergey-shandar 88a0bb5
export modules
sergey-shandar f368f65
Fix 'dist'
sergey-shandar 6e28b58
revert breaking changes.
sergey-shandar 8bf2578
export momentOfTruthUtils and ts-utils
sergey-shandar e8a62ab
no branch
sergey-shandar b51f568
address comments.
sergey-shandar ba352b8
Avocado ^0.4.1
sergey-shandar c62ab35
0.2.12
sergey-shandar 9936935
minor
sergey-shandar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Changelog | ||
|
|
||
| ## 0.2.12 | ||
|
|
||
| - Use Avocado git checkout and diff algorithms in breaking-changes and linter-diff. |
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 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 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 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
|
||
| import * as stringMap from '@ts-common/string-map' | ||
|
|
||
| export type Issue = { | ||
| readonly type?: string | ||
| readonly code: unknown | ||
| readonly message: unknown | ||
| readonly id: string | ||
| readonly validationCategory: string | ||
| readonly providerNamespace: unknown | ||
| readonly resourceType: unknown | ||
| readonly sources: readonly unknown[] | ||
| readonly jsonref: string | ||
| readonly filePath: string | ||
| readonly lineNumber: number | ||
| } | ||
|
|
||
| export type BeforeOrAfter = 'before' | 'after' | ||
|
|
||
| export type File = { | ||
| [key in BeforeOrAfter]: readonly Issue[] | ||
| } | ||
|
|
||
| /** | ||
| * Moment of truth is using this type for defining a format of file which is produced by | ||
| * `momentOfTruth.ts` script and `momentOfTruthPostProcessing`. | ||
| */ | ||
| export type FinalResult = { | ||
sergey-shandar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| readonly pullRequest: unknown, | ||
| readonly repositoryUrl: unknown, | ||
| readonly files: stringMap.MutableStringMap<File> | ||
| } | ||
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.