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

Clean up of #12 #15

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4f62e0d
Fixes
benjie Jan 4, 2019
1c39616
More fixes
benjie Jan 4, 2019
44da30d
More compatibility
benjie Jan 4, 2019
58a7389
Increased logging
benjie Jan 4, 2019
a8acccf
Only output stack when error occurs
benjie Jan 4, 2019
8e17ae9
More fixes, merge visitors
benjie Jan 4, 2019
630e6e7
More progress
benjie Jan 4, 2019
106c3ca
Better debugging
benjie Jan 4, 2019
d7a282d
More progress
benjie Jan 4, 2019
10348d9
Generics
benjie Jan 4, 2019
3788217
Add explicit prettier config, matching old formatting (roughly)
benjie Jan 5, 2019
d223168
Add prettier
benjie Jan 5, 2019
d9699a7
Autoformat with 'yarn prettier:fix'
benjie Jan 5, 2019
85fce70
Assert prettier
benjie Jan 5, 2019
fe6418d
Merge branch 'prettier'
benjie Jan 5, 2019
fde88fc
Resolve some TypeScript woes
benjie Jan 5, 2019
03a172d
Progress
benjie Jan 5, 2019
735953d
Tidy
benjie Jan 5, 2019
1d79f26
Fix exact
benjie Jan 5, 2019
9797737
Fix
benjie Jan 5, 2019
f2f8f8c
Disable ordered imports temporarily
benjie Jan 5, 2019
f2959c7
Fix
benjie Jan 5, 2019
131c5dd
Fix types
benjie Jan 5, 2019
ba238ae
InterfaceDeclaration
benjie Jan 5, 2019
61385d3
Reduce logging
benjie Jan 5, 2019
186cfb8
Reduce logging
benjie Jan 5, 2019
9b565d3
Add support for type spreads via intersections
benjie Jan 5, 2019
960d75d
Shorthand for object types that are only spreads
benjie Jan 5, 2019
63e9bf7
More complex function
benjie Jan 5, 2019
2cae956
Remove 'type' from exports
benjie Jan 5, 2019
77de757
Reproduce issue with missing parenthesis
benjie Jan 5, 2019
795f963
Merge remote-tracking branch 'upstream/master'
benjie Feb 13, 2019
5278ef8
Revert error logging
BBB Feb 28, 2019
04b9ef9
Remove explicit annotation
BBB Feb 28, 2019
6be3f42
Remove redundant type check
BBB Feb 28, 2019
7015b27
Remove unused code
BBB Feb 28, 2019
9e2b0c4
Remove redundant types
BBB Feb 28, 2019
ff604e2
Remove debug logging
BBB Feb 28, 2019
3dfde69
Collect warnings
BBB Feb 28, 2019
af8353e
Remove console
BBB Feb 28, 2019
49b16aa
Remove noops
BBB Feb 28, 2019
7563196
Allow Implicit Any
BBB Feb 28, 2019
0caee98
Upgrade babel, switch to babel traverse @types
BBB Feb 28, 2019
1449556
Remove parens
BBB Feb 28, 2019
795dc38
Remove unecessary type
BBB Feb 28, 2019
5d00d66
Remove unhandled test case
BBB Feb 28, 2019
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
29 changes: 16 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,27 @@
"test:watch": "ava -w"
},
"dependencies": {
"@babel/generator": "7.0.0-beta.38",
"@babel/traverse": "7.0.0-beta.38",
"@babel/types": "7.0.0-beta.38",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"mz": "^2.7.0"
"@babel/generator": "^7.3.0",
"@babel/parser": "^7.3.0",
"@babel/traverse": "^7.3.0",
"@babel/types": "^7.3.0",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"mz": "^2.7.0",
"stdin": "^0.0.1"
},
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/lodash": "^4.14.86",
"@types/babel__traverse": "^7.0.6",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.119",
"@types/minimist": "^1.2.0",
"@types/mz": "^0.0.32",
"ava": "^0.24.0",
"concurrently": "^3.5.1",
"flow-bin": "^0.59.0",
"ava": "^1.0.1",
"concurrently": "^4.1.0",
"flow-bin": "^0.89.0",
"prettier": "^1.15.3",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"ava": {
"files": [
Expand Down
Loading