Skip to content

Commit

Permalink
feat(index): add options validation
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed May 2, 2017
1 parent 0dceb2c commit 842b73c
Show file tree
Hide file tree
Showing 65 changed files with 679 additions and 683 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ root = true

[*]
indent_style = space
indent_size = 4
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
Expand Down
15 changes: 13 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
node_modules/
# OS

.DS_Store
._*

# NODEJS

npm-debug.log
yarn-error.log
build/

dmd
jest
coverage
jsdoc-api
node_modules
22 changes: 16 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
# FILES

.travis.yml
.gitignore
.npmignore
.editorconfig

node_modules/
.travis.yml

npm-debug.log
yarn-error.log

yarn.lock
yarn-error.log

build/
test/
.travis.yml

gulpfile.js
# DIRECTORIES

.github

dmd
test
coverage
jsdoc-api
node_modules
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
cache:
yarn: true
directories:
- node_modules

language: node_js
cache: yarn
node_js:
- stable
- "6"
- "4"
- "node"
- 6
- 4

notifications:
email: false
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
License (MIT)

Copyright 2014 Andrey Sitnik <andrey@sitnik.ru>
Copyright 2017 Andrey Sitnik <andrey@sitnik.ru>

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
Expand Down
Loading

0 comments on commit 842b73c

Please sign in to comment.