Skip to content

Commit

Permalink
feat: introduce typescript migration pipeline
Browse files Browse the repository at this point in the history
This introduces a tool for incrementally migrating our codebase to
typescript through the use of a gulp pipeline. This process allows
us to ensure that no major bugs are introduced during the migration,
and that our migration is conservative (no transpilation, or major
refactorings in the initial move).

NODE-2580
  • Loading branch information
mbroadst committed May 18, 2020
1 parent 7a8a533 commit f40cffc
Show file tree
Hide file tree
Showing 10 changed files with 3,000 additions and 143 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100
"printWidth": 100,
"arrowParens": "avoid"
}
1 change: 0 additions & 1 deletion lib/read_concern.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
'use strict';

/**
* The **ReadConcern** class is a class that represents a MongoDB ReadConcern.
*
Expand Down
1 change: 0 additions & 1 deletion lib/write_concern.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
'use strict';

const kWriteConcernKeys = new Set(['w', 'wtimeout', 'j', 'fsync']);

/**
Expand Down
Loading

0 comments on commit f40cffc

Please sign in to comment.