Skip to content

Commit

Permalink
unignore the dist folder for publishing via github
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoldfinger-quizlet committed May 13, 2019
1 parent ba630e5 commit 9feb72b
Show file tree
Hide file tree
Showing 153 changed files with 2,141 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.DS_Store
/dist
node_modules
.idea
*.log
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flow to Typescript Conversion Tools
# Tools to facilitate Quizlet's transition from Flow to Typescript

Commands:

Expand All @@ -18,4 +18,5 @@ Ignore all typescript errors:

```
npm run ignore-errors [--commit]
``
```
3 changes: 3 additions & 0 deletions dist/babel-plugin/converters/convert_class_constructor.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { NodePath } from '@babel/traverse';
import { ClassMethod } from '@babel/types';
export declare function convertClassConstructor(path: NodePath<ClassMethod>): ClassMethod;
13 changes: 13 additions & 0 deletions dist/babel-plugin/converters/convert_class_constructor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/babel-plugin/converters/convert_flow_type.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { NodePath } from '@babel/traverse';
import { FlowType, TSType } from '@babel/types';
export declare function convertFlowType(path: NodePath<FlowType>): TSType;
272 changes: 272 additions & 0 deletions dist/babel-plugin/converters/convert_flow_type.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9feb72b

Please sign in to comment.