Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: migrate-lookups-file-flow-to-ts #82

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
254dc5f
feat: migrate-lookups-file-flow-to-ts
Akirtovskis Mar 15, 2022
14923cf
fix: upd package json lock
Akirtovskis Mar 15, 2022
4af2459
fix: test removing the lock file
Akirtovskis Mar 15, 2022
ad20a4a
Revert "fix: test removing the lock file"
Akirtovskis Mar 15, 2022
5ab3fe1
Merge branch 'master' into feature/migrate-flow-to-ts
Akirtovskis Mar 15, 2022
1b98458
fix: add type of owner
Akirtovskis Mar 15, 2022
e61d6be
Merge branch 'feature/migrate-flow-to-ts' of https://github.com/Akirt…
Akirtovskis Mar 15, 2022
4d11dcb
fix: remove old file + fix import cheerio
Akirtovskis Mar 21, 2022
540550d
fix: upd with the new file
Akirtovskis Mar 21, 2022
c135d11
fix: add ts config to babel
Akirtovskis Mar 21, 2022
3501ae9
fix: add babel ts
Akirtovskis Mar 21, 2022
4525102
fix: try upd flow config
Akirtovskis Mar 21, 2022
63445ef
fix: add ts config to babel
Akirtovskis Mar 22, 2022
41772e0
fix: upd import
Akirtovskis Mar 22, 2022
933dac3
fix: enable tests
Akirtovskis Mar 22, 2022
1a9b238
fix: feedback updates
Akirtovskis Mar 23, 2022
3a9fdef
fix: upd tsconfig
Akirtovskis Mar 23, 2022
901db61
fix: minor
Akirtovskis Mar 23, 2022
2a57403
fix: minor
Akirtovskis Mar 23, 2022
e2b2d47
fix: upd package json
Akirtovskis Mar 23, 2022
63e7be3
fix: removing cheerio types
Akirtovskis Mar 23, 2022
be95a7e
fix: feedback fixes
Akirtovskis Mar 24, 2022
b5b9909
fix: remove cheerio
Akirtovskis Mar 24, 2022
6539d2e
fix: add cheerio
Akirtovskis Mar 24, 2022
8cea79a
fix: add cheerio
Akirtovskis Mar 24, 2022
d405ba7
fix: remove cheerio
Akirtovskis Mar 24, 2022
784dc8a
fix: remove unused import
Akirtovskis Mar 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
{
"presets": [
[ "@babel/preset-env",
{ "targets": { "node": 12 } } ],
{
"targets": {
"node": 12
}
}],
"@babel/preset-flow"],
"overrides": [
{
"test": ["./src/**/*.ts"],
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"node": 12,
}
}
],
]
}
],
"plugins": ["istanbul"]
}
}


7 changes: 1 addition & 6 deletions .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,5 @@
.*/node_modules/.staging/*
.*/node_modules/npm/*

[include]

[libs]

[options]

[lints]
module.file_ext=.ts
Loading