Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thecotne committed Sep 2, 2018
1 parent f89859c commit 9c47dd6
Show file tree
Hide file tree
Showing 5 changed files with 3,154 additions and 1,760 deletions.
19 changes: 13 additions & 6 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"presets": [
["env", {
"targets": {
"node": 4
[
"@babel/preset-env",
{
"targets": {
"node": 8
}
}
}]
]
],
"plugins": [
"add-module-exports"
],
"plugins": ["add-module-exports"],
"env": {
"test": {
"plugins": ["istanbul"]
"plugins": [
"istanbul"
]
}
}
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ cache:
notifications:
email: false
node_js:
- '6'
- '8'
- '10'
install:
- yarn --ignore-engines
script:
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,36 +36,36 @@
}
},
"dependencies": {
"glob": "^7.1.2"
"glob": "^7.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"babel-plugin-istanbul": "^5.0.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine": "^3.1.0",
"mock-fs": "^4.4.2",
"nyc": "^11.4.1",
"semantic-release": "^15.0.1"
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jasmine": "^3.2.0",
"mock-fs": "^4.6.0",
"nyc": "^13.0.1",
"semantic-release": "^15.9.12"
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
"@babel/register"
],
"sourceMap": false,
"instrument": false
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import glob from 'glob'
import {basename, dirname, relative} from 'path'
import { basename, dirname, relative } from 'path'

const entry = (...patterns) => {
if (!['string', 'function'].includes(typeof patterns[0])) {
Expand Down

0 comments on commit 9c47dd6

Please sign in to comment.