@t2ca/gatsby-theme-showcase 1.0.84 → 1.0.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.babelrc +13 -0
  2. package/package.json +3 -3
package/.babelrc ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "plugins": [
3
+ [
4
+ "@babel/plugin-transform-react-jsx",
5
+ {
6
+ // TODO: This is to handle theme-ui pragma issues: https://github.com/system-ui/theme-ui/issues/1160
7
+ "throwIfNamespace": true, // defaults to true
8
+ "runtime": "classic", // defaults to classic
9
+ "importSource": "react" // defaults to react
10
+ }
11
+ ]
12
+ ]
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2ca/gatsby-theme-showcase",
3
- "version": "1.0.84",
3
+ "version": "1.0.86",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "devDependencies": {
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "peerDependencies": {
20
20
  "gatsby": "^2.24.51",
21
- "react": "^17.0.0-rc.1",
22
- "react-dom": "^17.0.0-rc.1"
21
+ "react": "16.3.1",
22
+ "react-dom": "16.3.1"
23
23
  },
24
24
  "dependencies": {
25
25
  "@emotion/styled": "^10.0.17",