gatsby-theme-q3 2.3.6 → 2.3.7

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.7](https://github.com/3merge/q/compare/v2.3.6...v2.3.7) (2021-12-16)
7
+
8
+ **Note:** Version bump only for package gatsby-theme-q3
9
+
10
+
11
+
12
+
13
+
6
14
  ## [2.3.6](https://github.com/3merge/q/compare/v2.3.5...v2.3.6) (2021-12-16)
7
15
 
8
16
  **Note:** Version bump only for package gatsby-theme-q3
package/gatsby-node.js CHANGED
@@ -14,7 +14,36 @@ exports.onCreateWebpackConfig = ({
14
14
  });
15
15
 
16
16
  actions.setWebpackConfig({
17
+ module: {
18
+ rules: [
19
+ {
20
+ test: /\.ts$/,
21
+ use: ['ts-loader'],
22
+ },
23
+ {
24
+ test: /unicode-properties[/\\]unicode-properties/,
25
+ use: ['transform-loader?brfs'],
26
+ },
27
+ {
28
+ test: /pdfkit[/\\]js[/\\]/,
29
+ use: ['transform-loader?brfs'],
30
+ },
31
+ {
32
+ test: /fontkit[/\\]index.js$/,
33
+ use: ['transform-loader?brfs'],
34
+ },
35
+ {
36
+ test: /linebreak[/\\]src[/\\]linebreaker.js/,
37
+ use: ['transform-loader?brfs'],
38
+ },
39
+ ],
40
+ },
17
41
  resolve: {
42
+ alias: {
43
+ 'unicode-properties':
44
+ 'unicode-properties/unicode-properties.cjs.js',
45
+ pdfkit: 'pdfkit/js/pdfkit.js',
46
+ },
18
47
  fallback: {
19
48
  util: false,
20
49
  fs: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-theme-q3",
3
- "version": "2.3.6",
3
+ "version": "2.3.7",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -42,5 +42,5 @@
42
42
  "transform-loader": "^0.2.4",
43
43
  "yarn": "^1.22.17"
44
44
  },
45
- "gitHead": "11349608dcc4da10f9e2875be6ae23823b8c6d4d"
45
+ "gitHead": "5f3e85799fea3d2d415916c122bd3140dc48f5a5"
46
46
  }