Skip to content

Commit 213ab49

Browse files
tsriramKyleAMathews
authored andcommitted
added gatsby ^1.0.0 as a peer dependency for all plugins (#3637)
1 parent f5c621d commit 213ab49

File tree

36 files changed

+158
-156
lines changed

36 files changed

+158
-156
lines changed

packages/gatsby-plugin-aphrodite/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby"
13-
],
11+
"keywords": ["gatsby"],
1412
"author": "Kyle Mathews <[email protected]>",
1513
"license": "MIT",
1614
"devDependencies": {
@@ -19,5 +17,8 @@
1917
},
2018
"dependencies": {
2119
"babel-runtime": "^6.26.0"
20+
},
21+
"peerDependencies": {
22+
"gatsby": "^1.0.0"
2223
}
2324
}

packages/gatsby-plugin-canonical-urls/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby"
13-
],
11+
"keywords": ["gatsby"],
1412
"author": "Kyle Mathews <[email protected]>",
1513
"license": "MIT",
1614
"devDependencies": {
@@ -19,5 +17,8 @@
1917
},
2018
"dependencies": {
2119
"babel-runtime": "^6.26.0"
20+
},
21+
"peerDependencies": {
22+
"gatsby": "^1.0.0"
2223
}
2324
}
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{
22
"name": "gatsby-plugin-catch-links",
33
"version": "1.0.14",
4-
"description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.",
4+
"description":
5+
"Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.",
56
"main": "index.js",
67
"scripts": {
78
"build": "babel src --out-dir . --ignore __tests__",
89
"watch": "babel -w src --out-dir . --ignore __tests__",
910
"prepublish": "cross-env NODE_ENV=production npm run build"
1011
},
11-
"keywords": [
12-
"gatsby",
13-
"gatsby-plugin"
14-
],
12+
"keywords": ["gatsby", "gatsby-plugin"],
1513
"author": "Kyle Mathews <[email protected]>",
1614
"license": "MIT",
1715
"devDependencies": {
@@ -20,5 +18,8 @@
2018
},
2119
"dependencies": {
2220
"babel-runtime": "^6.26.0"
21+
},
22+
"peerDependencies": {
23+
"gatsby": "^1.0.0"
2324
}
2425
}

packages/gatsby-plugin-coffeescript/package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"description": "Adds CoffeeScript support for Gatsby layouts and pages.",
44
"version": "1.4.8",
55
"author": "Kyle Mathews <[email protected]>",
6-
"contributors": [
7-
"Noah Lange <[email protected]>"
8-
],
6+
"contributors": ["Noah Lange <[email protected]>"],
97
"dependencies": {
108
"babel-runtime": "^6.26.0",
119
"coffee-react-transform": "^5.0.0",
@@ -15,10 +13,10 @@
1513
"babel-cli": "^6.26.0",
1614
"cross-env": "^5.0.5"
1715
},
18-
"keywords": [
19-
"gatsby",
20-
"coffeescript"
21-
],
16+
"peerDependencies": {
17+
"gatsby": "^1.0.0"
18+
},
19+
"keywords": ["gatsby", "coffeescript"],
2220
"license": "MIT",
2321
"main": "index.js",
2422
"readme": "README.md",
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
22
"name": "gatsby-plugin-create-client-paths",
33
"version": "1.0.3",
4-
"description": "Gatsby-plugin for creating paths that exist only on the client",
4+
"description":
5+
"Gatsby-plugin for creating paths that exist only on the client",
56
"main": "index.js",
67
"scripts": {
78
"build": "babel src --out-dir . --ignore __tests__",
89
"watch": "babel -w src --out-dir . --ignore __tests__",
910
"prepublish": "cross-env NODE_ENV=production npm run build"
1011
},
11-
"keywords": [
12-
"gatsby"
13-
],
12+
"keywords": ["gatsby"],
1413
"author": "[email protected]",
1514
"license": "MIT",
1615
"dependencies": {
@@ -19,5 +18,8 @@
1918
"devDependencies": {
2019
"babel-cli": "^6.26.0",
2120
"cross-env": "^5.0.5"
21+
},
22+
"peerDependencies": {
23+
"gatsby": "^1.0.0"
2224
}
2325
}

packages/gatsby-plugin-cxs/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby"
13-
],
11+
"keywords": ["gatsby"],
1412
"author": "Kyle Mathews &lt;[email protected]&gt;",
1513
"license": "MIT",
1614
"devDependencies": {
@@ -19,5 +17,8 @@
1917
},
2018
"dependencies": {
2119
"babel-runtime": "^6.26.0"
20+
},
21+
"peerDependencies": {
22+
"gatsby": "^1.0.0"
2223
}
2324
}

packages/gatsby-plugin-emotion/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby",
13-
"emotion"
14-
],
11+
"keywords": ["gatsby", "emotion"],
1512
"author": "Tegan Churchill <[email protected]>",
1613
"license": "MIT",
1714
"devDependencies": {
@@ -23,6 +20,7 @@
2320
},
2421
"peerDependencies": {
2522
"emotion": "7 || 8 ",
26-
"emotion-server": "7 || 8"
23+
"emotion-server": "7 || 8",
24+
"gatsby": "^1.0.0"
2725
}
2826
}

packages/gatsby-plugin-feed/package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby",
13-
"gatsby-plugin",
14-
"rss",
15-
"atom",
16-
"feed"
17-
],
11+
"keywords": ["gatsby", "gatsby-plugin", "rss", "atom", "feed"],
1812
"author": "Nicholas Young <[email protected]>",
1913
"license": "MIT",
2014
"devDependencies": {
@@ -26,5 +20,8 @@
2620
"lodash.merge": "^4.6.0",
2721
"pify": "^3.0.0",
2822
"rss": "^1.2.2"
23+
},
24+
"peerDependencies": {
25+
"gatsby": "^1.0.0"
2926
}
3027
}

packages/gatsby-plugin-glamor/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@
1111
"babel-cli": "^6.26.0",
1212
"cross-env": "^5.0.5"
1313
},
14-
"keywords": [
15-
"gatsby",
16-
"gatsby-plugin",
17-
"glamor"
18-
],
14+
"peerDependencies": {
15+
"gatsby": "^1.0.0"
16+
},
17+
"keywords": ["gatsby", "gatsby-plugin", "glamor"],
1918
"license": "MIT",
2019
"main": "index.js",
2120
"scripts": {

packages/gatsby-plugin-glamorous/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
"watch": "babel -w src --out-dir . --ignore __tests__",
99
"prepublish": "cross-env NODE_ENV=production npm run build"
1010
},
11-
"keywords": [
12-
"gatsby"
13-
],
11+
"keywords": ["gatsby"],
1412
"author": "Kyle Mathews &lt;[email protected]&gt;",
1513
"license": "MIT",
1614
"devDependencies": {
@@ -19,5 +17,8 @@
1917
},
2018
"dependencies": {
2119
"babel-runtime": "^6.26.0"
20+
},
21+
"peerDependencies": {
22+
"gatsby": "^1.0.0"
2223
}
2324
}

0 commit comments

Comments
 (0)