Skip to content

Commit

Permalink
chore: update project to use new features present in node lts
Browse files Browse the repository at this point in the history
BREAKING CHANGE: callback support has been removed
BREAKING CHANGE: ability to call error.retry has been removed
BREAKING CHANGE: built-in choice and confirm validators now run before any custom validators
BREAKING CHANGE: the default option value may only be undefined or a string from now on
  • Loading branch information
satazor committed Jan 15, 2018
1 parent de4a099 commit d3677d0
Show file tree
Hide file tree
Showing 19 changed files with 7,716 additions and 767 deletions.
1 change: 1 addition & 0 deletions .eslintignore
@@ -0,0 +1 @@
coverage/
9 changes: 9 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"eslint-config-moxy/es8",
"eslint-config-moxy/addons/node",
"eslint-config-moxy/addons/object-spread",
"eslint-config-moxy/addons/jest"
]
}
5 changes: 3 additions & 2 deletions .gitignore
@@ -1,2 +1,3 @@
/node_modules
/npm-debug.*
node_modules/
npm-debug.*
coverage/
63 changes: 0 additions & 63 deletions .jshintrc

This file was deleted.

10 changes: 6 additions & 4 deletions .travis.yml
@@ -1,6 +1,8 @@
language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
- "node"
- "lts/*"
# Report coverage
after_success:
- "npm i codecov"
- "node_modules/.bin/codecov"
14 changes: 8 additions & 6 deletions LICENSE
@@ -1,19 +1,21 @@
Copyright (c) 2012 IndigoUnited
The MIT License (MIT)

Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>

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:
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 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.
THE SOFTWARE.

0 comments on commit d3677d0

Please sign in to comment.