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

Convert Project to TypeScript #226

Open
wants to merge 21 commits into
base: v5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7c28120
refactor: move src file to src/
RebeccaStevens Nov 12, 2020
79b3837
refactor: move typedefs to types/
RebeccaStevens Nov 12, 2020
86d9338
build: setup for convertion to typescript
RebeccaStevens Jan 21, 2021
85cf74e
build: remove manual typings
RebeccaStevens Jan 21, 2021
96dc11d
refactor: adjust code style
RebeccaStevens Jan 21, 2021
55865c7
refactor: move implementation out of index file
RebeccaStevens Jan 21, 2021
795e78b
refactor: move utility functions to an utils file
RebeccaStevens Jan 21, 2021
b1aacd5
refactor: move options functions to an options file
RebeccaStevens Jan 21, 2021
64a3075
perf: only compute the full options on the top level call
RebeccaStevens Jan 21, 2021
64d6d2a
feat: add types
RebeccaStevens Jan 21, 2021
2e50315
test: typescript types
RebeccaStevens Jan 22, 2021
7b9b5b5
fix: add legacy types for older version of typescript
RebeccaStevens Jan 22, 2021
0538453
test: initial conversion of test to typescript
RebeccaStevens Jan 23, 2021
4583214
test: get tests working
RebeccaStevens Jan 23, 2021
e037872
test: remove duplicate test
RebeccaStevens Jan 23, 2021
1e84f1a
test: move mergeAll test to merge-all test file
RebeccaStevens Jan 23, 2021
7c537a1
test: upgrade and fix test code
RebeccaStevens Jan 23, 2021
0a5a3c3
fix: remove mutating of target with clone=false
RebeccaStevens Jan 23, 2021
887c988
test: update test to work with new default behavior of clone=false
RebeccaStevens Jan 23, 2021
678eda3
refactor: rename merge and mergeAll to deepmerge and deepmergeAll
RebeccaStevens Jan 23, 2021
254d50c
docs: update readme
RebeccaStevens Jan 23, 2021
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
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist/*
/node_modules
/dist/*
/types/current/*
16 changes: 0 additions & 16 deletions index.d.ts

This file was deleted.

117 changes: 0 additions & 117 deletions index.js

This file was deleted.

Loading