Skip to content

Commit 265b9b2

Browse files
Merge pull request #6 from firefligher/typescript
Translated to TypeScript and fixed issue with IAsyncComputedValue<T>
2 parents 997c963 + e567bc4 commit 265b9b2

File tree

12 files changed

+198
-948
lines changed

12 files changed

+198
-948
lines changed

.eslintrc

Lines changed: 0 additions & 14 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
node_modules/
44
/.cache/
55
/test/dist/
6+
/dist/

.npmignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.cache/
2+
node_modules/
3+
src/
4+
test/
5+
.babelrc
6+
.travis.yml
7+
tsconfig.json
8+
tslint.json

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ node_js:
33
- v12
44
- v10
55
- v8
6+
7+
before_script:
8+
- npm run compile

0 commit comments

Comments
 (0)