Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 6d1da88

Browse files
authored
Merge pull request #9 from anigenero/typescript
Typescript
2 parents a6893eb + ce25ad1 commit 6d1da88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+9223
-8819
lines changed

.eslintrc

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

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
.idea
2-
node_modules
3-
dist/cjs
2+
/node_modules
3+
/dist
4+
5+
*.log
6+
/coverage

.jshintrc

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

.npmignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/coverage
2+
/src
3+
4+
.travis.yml
5+
global.d.ts
6+
gulpfile.ts
7+
gulpfile.js
8+
jest.setup.js
9+
tsconfig.json
10+
tslint.json
11+
webpack.config.js

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
language: node_js
22
node_js:
3-
- "6.1"
3+
- "10"
4+
before_install:
5+
- export TZ=America/New_York

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Robin Schultz
3+
Copyright (c) 2016-2017 Robin Schultz
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)