Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1 from hapinessjs/next
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
akanass committed Oct 24, 2017
2 parents 016ebcc + c6f54ca commit fb602a1
Show file tree
Hide file tree
Showing 34 changed files with 4,038 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .gitignore
@@ -0,0 +1,31 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp

# dependencies
/node_modules

# IDEs and editors
.idea
.project
.classpath
.c9/
*.launch
.settings/
.vscode

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
testem.log
/typings


#System Files
.DS_Store
Thumbs.db
3 changes: 3 additions & 0 deletions .istanbul.yml
@@ -0,0 +1,3 @@
instrumentation:
extensions:
- .ts
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
8.7.0
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "node"
script:
- yarn run test
after_script:
- yarn run coveralls
22 changes: 22 additions & 0 deletions LICENSE.md
@@ -0,0 +1,22 @@
The MIT License (MIT)
====

**Copyright (c) 2017 [Hapiness](https://github.com/hapiness)**

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
14 changes: 14 additions & 0 deletions Makefile
@@ -0,0 +1,14 @@
pretest:
@node ./node_modules/.bin/tslint -p ./tsconfig.json "./src/**/*.ts" "./test/**/*.ts"
test:
@node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test
coveralls:
cat ./coverage/lcov.info | node ./node_modules/.bin/coveralls
tsc:
@node ./node_modules/.bin/tsc -p ./tsconfig.build.json
clean:
@node ./node_modules/.bin/rimraf ./dist
packaging:
@node ./node_modules/.bin/ts-node ./tools/packaging.ts

.PHONY: pretest test test-on-travis tsc clean packaging

0 comments on commit fb602a1

Please sign in to comment.