This repository has been archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(eslint-plugin-formatjs): add missing dep
- Loading branch information
Long Ho
committed
Apr 24, 2020
1 parent
bb7dbf8
commit 776390e
Showing
57 changed files
with
2,548 additions
and
1,059 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -15,14 +15,14 @@ | |
], | ||
"author": "Eric Ferraiuolo <[email protected]>", | ||
"dependencies": { | ||
"@babel/core": "^7.7.2", | ||
"@babel/helper-plugin-utils": "^7.0.0", | ||
"@babel/types": "^7.9.0", | ||
"@types/babel__core": "^7.1.3", | ||
"@types/schema-utils": "^1.0.0", | ||
"@babel/core": "^7.9.0", | ||
"@babel/helper-plugin-utils": "^7.8.3", | ||
"@babel/types": "^7.9.5", | ||
"@types/babel__core": "^7.1.7", | ||
"@types/schema-utils": "^2.4.0", | ||
"fs-extra": "^9.0.0", | ||
"intl-messageformat-parser": "^5.0.0", | ||
"schema-utils": "^2.2.0" | ||
"schema-utils": "^2.6.6" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf lib test/fixtures/**/actual.json *.tsbuildinfo", | ||
|
@@ -40,6 +40,6 @@ | |
"homepage": "https://github.com/formatjs/formatjs#readme", | ||
"gitHead": "8b0baec8eda5002715cf893274fe59782fc2d371", | ||
"devDependencies": { | ||
"json-schema-to-typescript": "^7.1.0" | ||
"json-schema-to-typescript": "^8.2.0" | ||
} | ||
} |
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
6 changes: 3 additions & 3 deletions
6
packages/formatjs-extract-cldr-data/tests/extract-currencies.test.ts
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import extractCurrencies from '../src/extract-currencies'; | ||
|
||
describe('extract-currencies', function() { | ||
it('should be able to extract en', function() { | ||
describe('extract-currencies', function () { | ||
it('should be able to extract en', function () { | ||
expect(extractCurrencies(['en'])).toMatchSnapshot(); | ||
}); | ||
it('should be able to extract uk', function() { | ||
it('should be able to extract uk', function () { | ||
expect(extractCurrencies(['uk'])).toMatchSnapshot(); | ||
}); | ||
}); |
Oops, something went wrong.