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

Upgrade v1 #66

Merged
merged 39 commits into from
Jun 12, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
4be45cb
Update development environment (#55)
jaebradley Jun 4, 2018
0958d62
refactor(coordinate): remove Coordinate data class
jaebradley Jun 4, 2018
c4d43b4
Remove Coordinate and Distance classes (#56)
jaebradley Jun 4, 2018
2858bfe
Merge branch 'upgrade-v1' of github.com:jaebradley/uber-cli into upgr…
jaebradley Jun 4, 2018
74dfd29
refactor(location): remove Location class (#57)
jaebradley Jun 4, 2018
469e84d
refactor(price-range): remove PriceRange data class (#58)
jaebradley Jun 4, 2018
ed3ccad
refactor(duration): remove Duration class (#59)
jaebradley Jun 4, 2018
bbee7d7
refactor(price-estimate-query): remove PriceEstimateQuery class (#60)
jaebradley Jun 4, 2018
6890a1f
Remove time, pickup time, and price estimates classes (#61)
jaebradley Jun 4, 2018
af79e63
refactor(time-estimates): remove TimeEstimates class (#62)
jaebradley Jun 4, 2018
80077ee
Remove time and price estimates classes (#63)
jaebradley Jun 4, 2018
fe15cf3
refactor(immutable): remove immutable js (#64)
jaebradley Jun 4, 2018
9fd88f6
refactor(location-translators): remove Location Translators (#65)
jaebradley Jun 4, 2018
47a9bf2
refactor(trip-price-estimate-translators): refactor translators
jaebradley Jun 4, 2018
8f92d06
refactor(pickup-time-estimate): refactor Pickup Time Estimate
jaebradley Jun 4, 2018
d2d81dd
build(enumify): remove enumify dependency
jaebradley Jun 4, 2018
fc7f428
refactor(uber-service): convert UberService methods to async/await
jaebradley Jun 4, 2018
ce35cd7
refactor(cli): refactor services
jaebradley Jun 6, 2018
2db12ef
refactor(table-builders): simplify table building logic
jaebradley Jun 9, 2018
7e409f0
refactor(format-duration): move duration formatting to formatters
jaebradley Jun 9, 2018
f2e3eff
refactor(table-builders): remove old table builders
jaebradley Jun 9, 2018
be5dddf
refactor(translators): remove translators
jaebradley Jun 10, 2018
e9ad0ad
style(eslint): fix eslint errors
jaebradley Jun 11, 2018
c0ef592
test(symbols): add symbols tests
jaebradley Jun 11, 2018
b7807c0
refactor(format-seconds): rename formatDuration to formatSeconds
jaebradley Jun 11, 2018
ed8260a
test(formatters): add tests for formatters
jaebradley Jun 12, 2018
c21a73d
test(converters): add tests for distance and duration converters
jaebradley Jun 12, 2018
edf516f
refactor(test): remove unnecessary tests
jaebradley Jun 12, 2018
a08de8c
build(commitlint): add commitlint.config.js
jaebradley Jun 12, 2018
c741817
refactor(google-maps): upgrade google-maps and consolidate logic
jaebradley Jun 12, 2018
45b53b4
test(address-locator): add tests for address locator
jaebradley Jun 12, 2018
3c28ac3
refactor(uber-client): replace Uber estimates client
jaebradley Jun 12, 2018
b8cc1ba
refactor(uber-service): rename uber client class variable
jaebradley Jun 12, 2018
44f37ab
test(uber-service): add basic tests for UberService
jaebradley Jun 12, 2018
77f0473
test(time-table): add tests for time estimates table
jaebradley Jun 12, 2018
f7ba7d5
test(price-table): add tests for price estimates table
jaebradley Jun 12, 2018
c6c2ff8
refactor(package): fix package generation scripts and version
jaebradley Jun 12, 2018
dac893d
test(tables): fix failing table tests
jaebradley Jun 12, 2018
22f4f41
test(tables): fix failing table tests
jaebradley Jun 12, 2018
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
Prev Previous commit
Next Next commit
refactor(test): remove unnecessary tests
Remove test directory, update .npmignore, update .eslintignore, update .travis.yml
  • Loading branch information
jaebradley committed Jun 12, 2018
commit edf516ff3c6c91dad228207c8e89f4d54dfc6152
3 changes: 0 additions & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
coverage/*
build
node_modules

# Remove this to fix linting errors
test/
19 changes: 13 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
node_modules/**

src/**
test/**
coverage/**

npm-debug.log
commitlint.config.js
*.test.js

.DS_Store
.eslintcache
node_modules
npm-debug.log
.travis.yml
src/
test/
*.test.js
coverage/
.babelrc
.eslintignore
.eslintrc
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ notifications:
email: true
node_js:
- '8'
install: npm install
before_install:
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
Expand Down
63 changes: 0 additions & 63 deletions test/DistanceConverterTest.js

This file was deleted.

34 changes: 0 additions & 34 deletions test/DurationConverterTest.js

This file was deleted.

19 changes: 0 additions & 19 deletions test/GeocodeServiceTest.js

This file was deleted.

29 changes: 0 additions & 29 deletions test/UberServiceIntegrationTest.js

This file was deleted.

102 changes: 0 additions & 102 deletions test/files/geocode.json

This file was deleted.

81 changes: 0 additions & 81 deletions test/files/price-estimates.json

This file was deleted.

Loading