Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit ed9649b

Browse files
Merge pull request #70 from cypress-io/issue-34-move-deps-to-peer
Move option dependencies to peer dependencies
2 parents f790d5d + f0306ac commit ed9649b

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.mocharc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"watch-ignore": ["./test/_test-output", "node_modules"]
2+
"watch-ignore": ["./test/_test-output", "node_modules"],
3+
"exit": true
34
}

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.12.0
1+
12.8.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Object of webpack options. Just `require` in the options from your `webpack.conf
7272
module: {
7373
rules: [
7474
{
75-
test: /\.js?$/,
75+
test: /\.jsx?$/,
7676
exclude: [/node_modules/],
7777
use: [{
7878
loader: 'babel-loader',

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
"webpack": "^4.18.1"
5757
},
5858
"peerDependencies": {
59+
"@babel/core": "^7.0.1",
60+
"@babel/preset-env": "^7.0.0",
61+
"babel-loader": "^8.0.2",
5962
"webpack": "^4.18.1"
6063
},
6164
"files": [
@@ -75,11 +78,6 @@
7578
"cypress-preprocessor",
7679
"webpack"
7780
],
78-
"optionalDependencies": {
79-
"@babel/core": "^7.0.1",
80-
"@babel/preset-env": "^7.0.0",
81-
"babel-loader": "^8.0.2"
82-
},
8381
"release": {
8482
"verifyConditions": "condition-circle",
8583
"analyzeCommits": "simple-commit-message",

0 commit comments

Comments
 (0)