-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jest snapshot - TS migration (#7899)
- Loading branch information
1 parent
d9d501a
commit e760ec4
Showing
29 changed files
with
492 additions
and
341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import {StackData} from 'stack-utils'; | ||
|
||
export interface Frame extends StackData { | ||
file: string; | ||
} |
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 |
---|---|---|
|
@@ -8,8 +8,10 @@ | |
}, | ||
"license": "MIT", | ||
"main": "build/index.js", | ||
"types": "build/index.d.ts", | ||
"dependencies": { | ||
"@babel/types": "^7.0.0", | ||
"@jest/types": "^24.1.0", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
SimenB
Member
|
||
"chalk": "^2.0.1", | ||
"jest-diff": "^24.0.0", | ||
"jest-matcher-utils": "^24.0.0", | ||
|
@@ -20,9 +22,15 @@ | |
"pretty-format": "^24.0.0", | ||
"semver": "^5.5.0" | ||
}, | ||
"peerDependencies": { | ||
"jest-haste-map": "^24.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/mkdirp": "^0.5.2", | ||
"@types/natural-compare": "^1.4.0", | ||
"@types/prettier": "^1.16.1", | ||
"@types/semver": "^5.5.0", | ||
"jest-haste-map": "^24.0.0", | ||
"prettier": "^1.13.4" | ||
}, | ||
"engines": { | ||
|
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
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.
@SimenB Is there a reason for this not being in
devDependencies
?