Skip to content

Commit

Permalink
Merge f4f074f into 5c0173a
Browse files Browse the repository at this point in the history
  • Loading branch information
gastonpereyra committed Jul 12, 2019
2 parents 5c0173a + f4f074f commit 605b08b
Show file tree
Hide file tree
Showing 20 changed files with 2,174 additions and 4,573 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.js
Expand Up @@ -69,8 +69,10 @@ module.exports = {
comments: 200
}],

'spaced-comment': ['error', 'always', {
exceptions: ['*']
'space-before-function-paren': ['error', {
'anonymous': 'never',
'named': 'never',
'asyncArrow': 'always'
}],

'newline-per-chained-call': ['error', {
Expand Down
5 changes: 5 additions & 0 deletions .huskyrc.json
@@ -0,0 +1,5 @@
{
"hooks": {
"pre-commit": "npm run lint && npm t"
}
}
4 changes: 3 additions & 1 deletion .nycrc
@@ -1,6 +1,8 @@
{
"exclude": [
"tests/"
"tests/",
".eslintrc.js",
"mocks/"
],
"extension": [
".js"
Expand Down
15 changes: 15 additions & 0 deletions .travis.yml
@@ -0,0 +1,15 @@
language: node_js
node_js:
- "lts/*"
cache: npm
script:
- |
# Run test script
npm run test-ci
after_script:
- |
# Upload coverage to coveralls
if [[ -d .nyc_output ]]; then
npm install --save-dev coveralls@2
nyc report --reporter=text-lcov | coveralls
fi
16 changes: 15 additions & 1 deletion CHANGELOG.md
Expand Up @@ -10,4 +10,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- MySQL wrapper
- QueryBuilder
- janiscommerce/logger
- Tests
- Tests

## [Unreleased]
### Added
- *"lib/"* folder into package.json files

### Changed
- Changed modules files folder into *"lib/"*
- Use `Query Builder` Insert, Save, Update, Remove new functions.
- moved `utils/` to `lib/`
- Fixed links in `README.md`

### Removed
- `Query Builder` moved to an independent package
- `end` function.

0 comments on commit 605b08b

Please sign in to comment.