Skip to content

Commit 279c660

Browse files
authored
Merge pull request #20 from pmowrer/update-deps
Update deps
2 parents 7b9901a + 6850aaf commit 279c660

File tree

6 files changed

+6285
-1963
lines changed

6 files changed

+6285
-1963
lines changed

.babelrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.lintstagedrc.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
linters:
2-
/*.{js,css}:
3-
- yarn format
4-
- git add
1+
/*.{js,css}:
2+
- yarn format

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- 8
3+
- 10
44
notifications:
55
email: false
66
before_install:

babel.config.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"modules": false
7+
}
8+
]
9+
],
10+
"env": {
11+
"test": {
12+
"presets": [
13+
[
14+
"@babel/preset-env"
15+
]
16+
]
17+
}
18+
}
19+
}

package.json

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rollup-plugin-peer-deps-external",
33
"version": "0.0.0-development",
44
"description": "Rollup plugin to automatically add a library's peerDependencies to its bundle's external config.",
5-
"repository": "Updater/rollup-plugin-peer-deps-external",
5+
"repository": "Updater/rollup-plugin-peer-deps-external",
66
"keywords": [
77
"rollup",
88
"plugin",
@@ -23,7 +23,6 @@
2323
"build": "rollup -c",
2424
"format": "prettier --write --single-quote --trailing-comma es5",
2525
"format:all": "yarn format \"src/**/*.js\"",
26-
"precommit": "lint-staged",
2726
"prepublishOnly": "yarn test && yarn build",
2827
"test": "jest"
2928
},
@@ -34,25 +33,30 @@
3433
"rollup": "*"
3534
},
3635
"devDependencies": {
37-
"babel-core": "^6.26.0",
38-
"babel-preset-es2015": "^6.24.1",
39-
"husky": "^0.14.3",
40-
"jest": "^21.2.1",
41-
"lint-staged": "^6.0.0",
42-
"lodash-es": "^4.17.4",
43-
"prettier": "^1.9.1",
44-
"ramda": "^0.25.0",
45-
"rimraf": "^2.6.1",
46-
"rollup": "^0.52.1",
47-
"rollup-plugin-babel": "^3.0.0",
48-
"rollup-plugin-node-resolve": "^3.0.0",
49-
"rollup-watch": "^4.0.0",
50-
"semantic-release": "^11.0.2",
51-
"semantic-release-github-pr": "^1.1.1"
36+
"@babel/core": "^7.8.4",
37+
"@babel/preset-env": "^7.8.4",
38+
"husky": "^4.2.1",
39+
"jest": "^25.1.0",
40+
"lint-staged": "^10.0.7",
41+
"lodash-es": "^4.17.15",
42+
"prettier": "^1.19.1",
43+
"ramda": "^0.26.1",
44+
"rimraf": "^3.0.1",
45+
"rollup": "^1.31.0",
46+
"rollup-plugin-babel": "^4.3.3",
47+
"rollup-plugin-node-resolve": "^5.2.0",
48+
"rollup-watch": "^4.3.1",
49+
"semantic-release": "^17.0.2",
50+
"semantic-release-github-pr": "^6.0.0"
5251
},
5352
"jest": {
5453
"transformIgnorePatterns": [
55-
"<rootDir>/node_modules/(?!lodash-es)"
54+
"<rootDir>/node_modules/(?!lodash-es/)"
5655
]
56+
},
57+
"husky": {
58+
"hooks": {
59+
"pre-commit": "lint-staged"
60+
}
5761
}
5862
}

0 commit comments

Comments
 (0)