gatsby-theme-q3 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/gatsby-config.js +2 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.3.1](https://github.com/3merge/q/compare/v2.3.0...v2.3.1) (2021-12-09)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* forward all config ([c4c512d](https://github.com/3merge/q/commit/c4c512da530866327940d56dba3976764cf53293))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
# [2.3.0](https://github.com/3merge/q/compare/v2.2.2...v2.3.0) (2021-12-09)
|
7
18
|
|
8
19
|
|
package/gatsby-config.js
CHANGED
@@ -12,14 +12,12 @@ module.exports = ({
|
|
12
12
|
brandingColor,
|
13
13
|
icon,
|
14
14
|
netlify,
|
15
|
-
|
15
|
+
...options
|
16
16
|
}) => {
|
17
17
|
const plugins = [
|
18
18
|
{
|
19
19
|
resolve: 'gatsby-theme-q3-mui',
|
20
|
-
options
|
21
|
-
theme,
|
22
|
-
},
|
20
|
+
options,
|
23
21
|
},
|
24
22
|
'gatsby-plugin-material-ui',
|
25
23
|
'gatsby-plugin-force-trailing-slashes',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "gatsby-theme-q3",
|
3
|
-
"version": "2.3.
|
3
|
+
"version": "2.3.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"license": "MIT",
|
6
6
|
"peerDependencies": {
|
@@ -41,5 +41,5 @@
|
|
41
41
|
"transform-loader": "^0.2.4",
|
42
42
|
"yarn": "^1.22.17"
|
43
43
|
},
|
44
|
-
"gitHead": "
|
44
|
+
"gitHead": "a74c290023592a55577622eb3530ab72f19702f1"
|
45
45
|
}
|