Skip to content

Commit

Permalink
Merge pull request #20 from pmowrer/update-deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
pmowrer authored Feb 1, 2020
2 parents 7b9901a + 6850aaf commit 279c660
Show file tree
Hide file tree
Showing 6 changed files with 6,285 additions and 1,963 deletions.
12 changes: 0 additions & 12 deletions .babelrc

This file was deleted.

6 changes: 2 additions & 4 deletions .lintstagedrc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
linters:
/*.{js,css}:
- yarn format
- git add
/*.{js,css}:
- yarn format
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 8
- 10
notifications:
email: false
before_install:
Expand Down
19 changes: 19 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env"
]
]
}
}
}
40 changes: 22 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rollup-plugin-peer-deps-external",
"version": "0.0.0-development",
"description": "Rollup plugin to automatically add a library's peerDependencies to its bundle's external config.",
"repository": "Updater/rollup-plugin-peer-deps-external",
"repository": "Updater/rollup-plugin-peer-deps-external",
"keywords": [
"rollup",
"plugin",
Expand All @@ -23,7 +23,6 @@
"build": "rollup -c",
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"src/**/*.js\"",
"precommit": "lint-staged",
"prepublishOnly": "yarn test && yarn build",
"test": "jest"
},
Expand All @@ -34,25 +33,30 @@
"rollup": "*"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"lodash-es": "^4.17.4",
"prettier": "^1.9.1",
"ramda": "^0.25.0",
"rimraf": "^2.6.1",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.0.0",
"semantic-release": "^11.0.2",
"semantic-release-github-pr": "^1.1.1"
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"lodash-es": "^4.17.15",
"prettier": "^1.19.1",
"ramda": "^0.26.1",
"rimraf": "^3.0.1",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-watch": "^4.3.1",
"semantic-release": "^17.0.2",
"semantic-release-github-pr": "^6.0.0"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es)"
"<rootDir>/node_modules/(?!lodash-es/)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
Loading

0 comments on commit 279c660

Please sign in to comment.