gdu 4.0.11 → 4.1.2

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.
@@ -17,11 +17,6 @@ const buildSSR = async (guruConfig) => {
17
17
  stdio: 'inherit',
18
18
  cwd: roots_1.PROJECT_ROOT,
19
19
  localDir: roots_1.GDU_ROOT,
20
- extendEnv: true,
21
- env: {
22
- NODE_ENV: 'production',
23
- APP_ENV: process.env.APP_ENV || 'prod',
24
- },
25
20
  })
26
21
  .then((result) => {
27
22
  console.log(`${kleur_1.dim('SUCCESS!')}`, `${kleur_1.dim('Listening')}: ${kleur_1.blue(result === null || result === void 0 ? void 0 : result.all)}`);
@@ -11,7 +11,6 @@ declare function _exports(guruConfig: any): {
11
11
  haste: boolean;
12
12
  isDevVariable: string;
13
13
  eagerESModules: boolean;
14
- artifactDirectory: string;
15
14
  })[])[];
16
15
  };
17
16
  export = _exports;
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  const { join } = require('path');
3
3
  const browsers = require('browserslist-config-autoguru');
4
- const { PROJECT_ROOT } = require('../lib/roots');
5
4
  module.exports = (guruConfig) => {
6
5
  let hasRelay = false;
7
6
  try {
@@ -41,7 +40,6 @@ module.exports = (guruConfig) => {
41
40
  haste: false,
42
41
  isDevVariable: '__DEV__',
43
42
  eagerESModules: true,
44
- artifactDirectory: join(PROJECT_ROOT, '../../', 'packages', 'relay', '__generated__'),
45
43
  },
46
44
  ],
47
45
  require.resolve('babel-plugin-treat'),
@@ -1,22 +1,20 @@
1
1
  export declare const withTM: (nextConfig?: {}) => {};
2
+ export declare const defaultSecurityHeaders: {
3
+ key: string;
4
+ value: string;
5
+ }[];
2
6
  export declare const createNextJSConfig: (buildEnv: any) => {
3
7
  distDir: string;
4
8
  reactStrictMode: boolean;
5
- swcMinify: boolean;
6
- assetPrefix: string;
7
- i18n: {
8
- locales: string[];
9
- defaultLocale: string;
10
- };
11
- typescript: {
12
- transpileOnly: boolean;
13
- ignoreDevErrors: boolean;
14
- ignoreBuildErrors: boolean;
9
+ experimental: {
10
+ esmExternals: boolean;
11
+ externalDir: boolean;
15
12
  };
16
13
  images: {
17
- domains: string[];
18
14
  formats: string[];
15
+ deviceSizes: number[];
19
16
  imageSizes: number[];
17
+ domains: string[];
20
18
  };
21
19
  webpack: (defaultConfig: any) => any;
22
20
  };
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
22
22
  return (mod && mod.__esModule) ? mod : { "default": mod };
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.createNextJSTranspiledConfig = exports.createNextJSConfig = exports.withTM = void 0;
25
+ exports.createNextJSTranspiledConfig = exports.createNextJSConfig = exports.defaultSecurityHeaders = exports.withTM = void 0;
26
26
  const path_1 = __importStar(require("path"));
27
27
  const next_plugin_1 = require("@vanilla-extract/next-plugin");
28
28
  const dotenv_webpack_1 = __importDefault(require("dotenv-webpack"));
@@ -31,7 +31,6 @@ const webpack_1 = require("webpack");
31
31
  const misc_1 = require("../lib/misc");
32
32
  const roots_1 = require("../lib/roots");
33
33
  const configs_1 = require("../utils/configs");
34
- const config_1 = require("../lib/config");
35
34
  const withVanillaExtract = next_plugin_1.createVanillaExtractPlugin();
36
35
  exports.withTM = next_transpile_modules_1.default([
37
36
  '@autoguru/themes',
@@ -45,35 +44,88 @@ exports.withTM = next_transpile_modules_1.default([
45
44
  '@autoguru/layout',
46
45
  '@popperjs/core',
47
46
  ]);
47
+ const allowedScriptSources = [
48
+ "'self'",
49
+ "'unsafe-inline'",
50
+ '*.autoguru.com.au',
51
+ '*.googletagmanager.com',
52
+ '*.google-analytics.com',
53
+ '*.google.com',
54
+ '*.google.com.au',
55
+ '*.gstatic.com',
56
+ '*.googleadservices.com',
57
+ '*.heapanalytics.com',
58
+ '*.doubleclick.net',
59
+ '*.mapbox.com',
60
+ '*.quantserve.com',
61
+ '*.wisepops.com',
62
+ '*.tvsquared.com',
63
+ '*.quantcount.com',
64
+ ].join(' ');
65
+ const allowedStyleSources = [
66
+ "'self'",
67
+ "'unsafe-inline'",
68
+ 'https://*.autoguru.com.au',
69
+ 'https://*.googleapis.com',
70
+ ].join(' ');
71
+ const allowedIFrameSources = [
72
+ "'self'",
73
+ 'https://www.youtube.com',
74
+ 'https://www.google.com',
75
+ ].join(' ');
76
+ const allowedImageSources = ["'self'"].join(' ');
77
+ const allowedDataDomains = ['https://*'].join(' ');
78
+ const allowedFontSources = [
79
+ 'https://*.autoguru.com.au',
80
+ 'https://*.googleapis.com',
81
+ 'https://*.gstatic.com',
82
+ ].join(' ');
83
+ const allowedDataSources = ["'self'", 'blob:'].join(' ');
84
+ const allowedObjectSources = ["'none'"].join(' ');
85
+ exports.defaultSecurityHeaders = [
86
+ {
87
+ key: 'X-DNS-Prefetch-Control',
88
+ value: 'on',
89
+ },
90
+ {
91
+ key: 'X-XSS-Protection',
92
+ value: '1; mode=block',
93
+ },
94
+ {
95
+ key: 'X-Frame-Options',
96
+ value: 'SAMEORIGIN https://*.autoguru.com.au',
97
+ },
98
+ {
99
+ key: 'Content-Security-Policy',
100
+ value: `frame-ancestors https://*.autoguru.com.au; frame-src ${allowedIFrameSources}; style-src ${allowedStyleSources}; img-src ${allowedImageSources} data: ${allowedDataDomains}; font-src ${allowedFontSources}; worker-src ${allowedDataSources}; child-src ${allowedDataSources}; object-src ${allowedObjectSources}';connect-src ${allowedScriptSources}; script-src-elem ${allowedScriptSources}; script-src ${allowedScriptSources};`,
101
+ },
102
+ ];
48
103
  const createNextJSConfig = (buildEnv) => {
49
- var _a, _b;
50
104
  const isDev = !misc_1.isEnvProduction();
51
105
  const env = process.env.APP_ENV || (isDev ? 'dev' : buildEnv);
52
- const assetPrefix = isDev ? '' : (_b = (_a = config_1.getGuruConfig()) === null || _a === void 0 ? void 0 : _a.publicPath) !== null && _b !== void 0 ? _b : '';
53
106
  return {
54
107
  distDir: `dist/${env}`,
55
108
  reactStrictMode: true,
56
- swcMinify: true,
57
- assetPrefix,
58
- i18n: {
59
- locales: ['en'],
60
- defaultLocale: 'en',
61
- },
62
- typescript: {
63
- transpileOnly: true,
64
- ignoreDevErrors: true,
65
- ignoreBuildErrors: true,
109
+ experimental: {
110
+ esmExternals: false,
111
+ externalDir: false,
66
112
  },
67
113
  images: {
114
+ formats: ['image/avif', 'image/webp'],
115
+ deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
116
+ imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
68
117
  domains: [
118
+ 'www.autoguru.com.au',
119
+ 'dev.autoguru.com.au',
120
+ 'test.autoguru.com.au',
121
+ 'uat.autoguru.com.au',
122
+ 'preprod.autoguru.com.au',
69
123
  'cdn.autoguru.com.au',
70
124
  'cdn-dev.autoguru.com.au',
71
125
  'cdn-test.autoguru.com.au',
72
126
  'cdn-uat.autoguru.com.au',
73
127
  'cdn-preprod.autoguru.com.au',
74
128
  ],
75
- formats: ['image/avif', 'image/webp'],
76
- imageSizes: [16, 32, 48, 64, 96, 128, 256, 384, 512],
77
129
  },
78
130
  webpack: (defaultConfig) => {
79
131
  defaultConfig.plugins.push(new webpack_1.DefinePlugin({
@@ -98,5 +150,5 @@ const createNextJSConfig = (buildEnv) => {
98
150
  };
99
151
  };
100
152
  exports.createNextJSConfig = createNextJSConfig;
101
- const createNextJSTranspiledConfig = () => withVanillaExtract(exports.withTM(exports.createNextJSConfig('prod')));
153
+ const createNextJSTranspiledConfig = () => withVanillaExtract(exports.withTM(exports.createNextJSConfig('uat')));
102
154
  exports.createNextJSTranspiledConfig = createNextJSTranspiledConfig;
@@ -76,6 +76,7 @@ const baseOptions = (buildEnv, isMultiEnv) => ({
76
76
  mode: isDev ? 'development' : 'production',
77
77
  entry: {
78
78
  main: [
79
+ !isDev && path_1.join(gduEntryPath, '/spa/set-public-path.js'),
79
80
  path_1.join(gduEntryPath, '/polyfill.js'),
80
81
  path_1.join(gduEntryPath, '/spa/client.js'),
81
82
  ].filter(Boolean),
@@ -297,23 +298,22 @@ const baseOptions = (buildEnv, isMultiEnv) => ({
297
298
  ].filter(Boolean),
298
299
  });
299
300
  const { outputPath } = config_1.getGuruConfig();
300
- const makeWebpackConfig = (buildEnv, isMultiEnv) => ({
301
- name: buildEnv,
302
- output: {
303
- path: `${outputPath}/${!isMultiEnv && buildEnv === 'prod' ? '' : buildEnv}`,
304
- publicPath: isDev
305
- ? '/'
306
- : buildEnv === 'prod'
307
- ? `#{PUBLIC_PATH_BASE}/${config_1.getProjectFolderName()}/`
308
- : `https://static-mfe-${buildEnv}.autoguru.io/${config_1.getProjectFolderName()}/`,
309
- filename: `${fileMask}.js`,
310
- chunkFilename: `chunks/${fileMask}.js`,
311
- hashFunction: 'sha256',
312
- crossOriginLoading: 'anonymous',
313
- sourceMapFilename: 'sourceMaps/[file].map',
314
- pathinfo: false,
315
- },
316
- });
301
+ const makeWebpackConfig = (buildEnv, isMultiEnv) => {
302
+ var _a, _b;
303
+ return ({
304
+ name: buildEnv,
305
+ output: {
306
+ path: `${outputPath}/${!isMultiEnv && buildEnv === 'prod' ? '' : buildEnv}`,
307
+ publicPath: isDev ? '/' : (_b = (_a = config_1.getGuruConfig()) === null || _a === void 0 ? void 0 : _a.publicPath) !== null && _b !== void 0 ? _b : '/',
308
+ filename: `${fileMask}.js`,
309
+ chunkFilename: `chunks/${fileMask}.js`,
310
+ hashFunction: 'sha256',
311
+ crossOriginLoading: 'anonymous',
312
+ sourceMapFilename: 'sourceMaps/[file].map',
313
+ pathinfo: false,
314
+ },
315
+ });
316
+ };
317
317
  const buildConfigs = () => {
318
318
  const buildEnvs = configs_1.getBuildEnvs();
319
319
  return buildEnvs.map((buildEnv) => ({
@@ -12,4 +12,3 @@ export interface GuruConfig {
12
12
  export declare const getGuruConfig: (location?: string) => GuruConfig | null;
13
13
  export declare const decorateConfig: (guruConfig: Partial<GuruConfig>) => GuruConfig;
14
14
  export declare const getProjectName: (location?: string) => any;
15
- export declare const getProjectFolderName: (location?: string) => string;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getProjectFolderName = exports.getProjectName = exports.decorateConfig = exports.getGuruConfig = void 0;
3
+ exports.getProjectName = exports.decorateConfig = exports.getGuruConfig = void 0;
4
4
  const path_1 = require("path");
5
5
  const diary_1 = require("diary");
6
6
  const resolve_1 = require("./resolve");
@@ -52,5 +52,3 @@ const decorateConfig = (guruConfig) => {
52
52
  exports.decorateConfig = decorateConfig;
53
53
  const getProjectName = (location = roots_1.PROJECT_ROOT) => require(path_1.join(exports.getGuruConfig(location).__configPath, './package.json')).name;
54
54
  exports.getProjectName = getProjectName;
55
- const getProjectFolderName = (location = roots_1.PROJECT_ROOT) => path_1.basename(path_1.join(exports.getGuruConfig(location).__configPath));
56
- exports.getProjectFolderName = getProjectFolderName;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdu",
3
- "version": "4.0.11",
3
+ "version": "4.1.2",
4
4
  "private": false,
5
5
  "description": "AutoGuru's development toolkit",
6
6
  "homepage": "https://github.com/autoguru-au/octane/tree/master/packages/gdu#readme",
@@ -40,7 +40,7 @@
40
40
  "babel-loader": "^8.2.2",
41
41
  "babel-plugin-relay": "^11.0.2",
42
42
  "babel-plugin-treat": "^1.6.2",
43
- "browserslist-config-autoguru": "^2.0.1",
43
+ "browserslist-config-autoguru": "^2.1.2",
44
44
  "clean-webpack-plugin": "^4.0.0-alpha.0",
45
45
  "core-js": "^3.9.1",
46
46
  "css-loader": "^6.4.0",
package/CHANGELOG.md DELETED
@@ -1,402 +0,0 @@
1
- # gdu
2
-
3
- ## 4.0.11
4
-
5
- ### Patch Changes
6
-
7
- - GDU: Updates public paths
8
-
9
- ## 4.0.10
10
-
11
- ### Patch Changes
12
-
13
- - GDU: Fixes prod env public path
14
-
15
- ## 4.0.9
16
-
17
- ### Patch Changes
18
-
19
- - GDU: Fixes spa public path for prod env
20
-
21
- ## 4.0.8
22
-
23
- ### Patch Changes
24
-
25
- - GDU: Fixes public path for prod builds
26
-
27
- ## 4.0.7
28
-
29
- ### Patch Changes
30
-
31
- - GDU: sets unique ourput dirs
32
-
33
- ## 4.0.6
34
-
35
- ### Patch Changes
36
-
37
- - GDU: sets octopus var for prod public path
38
-
39
- ## 4.0.5
40
-
41
- ### Patch Changes
42
-
43
- - GDU: Sets public asset paths
44
-
45
- ## 4.0.4
46
-
47
- ### Patch Changes
48
-
49
- - GDU: Passes on app and node envs to build command
50
-
51
- ## 4.0.3
52
-
53
- ### Patch Changes
54
-
55
- - SSR apps: Get changes to their nextjs config defaults
56
-
57
- ## 4.0.2
58
-
59
- ### Patch Changes
60
-
61
- - GDU: Fixes spa relay artifact resoluton
62
-
63
- ## 4.0.1
64
-
65
- ### Patch Changes
66
-
67
- - GDU: Supports artifact directory for relay generated files
68
-
69
- ## 4.0.0
70
-
71
- ### Major Changes
72
-
73
- - Upgrades browserlist
74
- - a08a3f9: GDU: Upgrades babel
75
- - 2486c59: GDU: Applies caching to babel
76
- - 2486c59: GDU fixed build commads
77
-
78
- ### Patch Changes
79
-
80
- - cdd95c9: Fixes ssr builds
81
- - 7c65b2c: GDU: Uses dotenv for env variables
82
- - 7b7fecc: Upgrades webpack dependencies
83
- - c0130be: GDU: Puts prod artifacts in folder when building for multiple envs
84
- - 2adfc80: Adds AG cdn to next image domains
85
- - 0185749: GDU: Improves build maniset plugin
86
- - 7f3b1ac: Add multi env build support for nextJS apps
87
- - 3acac86: GDU: Fixes build manifest plugin
88
- - f7d42ea: Adds fleet
89
- - 4288672: GDU: Exposes naked nextjs configs
90
- - 3acac86: GDU Assumed prod env fro build commands
91
- - 1f93d6c: GDU: Support vanilla extract
92
- - 33c60da: GDU: Moves build cache to project root level
93
- - 2750501: GDU: Allows app level configs
94
- - 33c60da: GDU uses APP_ENV instead of NODE_ENV for environment configs
95
- - 94bb85b: Fixes for ssr apps
96
- - 6c1f212: GDU: Fixed config file paths
97
- - 9a144dc: GDU: Uses next cli dev command to start dev server
98
- - 2486c59: GDU Updated GuruBuildManifest plugin
99
- - 7c65b2c: Dev server: Removed invalid options
100
- - 61f1da4: GDU upgrades webpack dependency to v5
101
- - Updated dependencies [undefined]
102
- - browserslist-config-autoguru@2.0.1
103
-
104
- ## 4.0.0-next.20
105
-
106
- ### Patch Changes
107
-
108
- - Add multi env build support for nextJS apps
109
-
110
- ## 4.0.0-next.19
111
-
112
- ### Patch Changes
113
-
114
- - Fixes ssr builds
115
-
116
- ## 4.0.0-next.18
117
-
118
- ### Patch Changes
119
-
120
- - GDU: Puts prod artifacts in folder when building for multiple envs
121
-
122
- ## 4.0.0-next.17
123
-
124
- ### Patch Changes
125
-
126
- - GDU: Improves build maniset plugin
127
-
128
- ## 4.0.0-next.16
129
-
130
- ### Patch Changes
131
-
132
- - GDU: Fixes build manifest plugin
133
-
134
- ## 4.0.0-next.15
135
-
136
- ### Patch Changes
137
-
138
- - GDU Assumed prod env fro build commands
139
-
140
- ## 4.0.0-next.14
141
-
142
- ### Patch Changes
143
-
144
- - GDU: Exposes naked nextjs configs
145
-
146
- ## 4.0.0-next.13
147
-
148
- ### Patch Changes
149
-
150
- - Adds fleet
151
-
152
- ## 4.0.0-next.12
153
-
154
- ### Patch Changes
155
-
156
- - 2adfc80: Adds AG cdn to next image domains
157
-
158
- ## 4.0.0-next.11
159
-
160
- ### Patch Changes
161
-
162
- - Fixes for ssr apps
163
-
164
- ## 4.0.0-next.10
165
-
166
- ### Patch Changes
167
-
168
- - GDU: Uses next cli dev command to start dev server
169
-
170
- ## 4.0.0-next.9
171
-
172
- ### Patch Changes
173
-
174
- - GDU: Support vanilla extract
175
-
176
- ## 4.0.0-next.8
177
-
178
- ### Major Changes
179
-
180
- - GDU: Applies caching to babel
181
- - GDU fixed build commads
182
-
183
- ## 4.0.0-next.7
184
-
185
- ### Patch Changes
186
-
187
- - GDU Updated GuruBuildManifest plugin
188
-
189
- ## 4.0.0-next.6
190
-
191
- ### Patch Changes
192
-
193
- - GDU: Moves build cache to project root level
194
- - GDU uses APP_ENV instead of NODE_ENV for environment configs
195
-
196
- ## 4.0.0-next.5
197
-
198
- ### Patch Changes
199
-
200
- - GDU: Allows app level configs
201
-
202
- ## 4.0.0-next.4
203
-
204
- ### Patch Changes
205
-
206
- - GDU: Fixed config file paths
207
-
208
- ## 4.0.0-next.3
209
-
210
- ### Patch Changes
211
-
212
- - GDU: Uses dotenv for env variables
213
- - Dev server: Removed invalid options
214
-
215
- ## 4.0.0-next.2
216
-
217
- ### Patch Changes
218
-
219
- - GDU upgrades webpack dependency to v5
220
-
221
- ## 4.0.0-next.1
222
-
223
- ### Patch Changes
224
-
225
- - Upgrades webpack dependencies
226
-
227
- ## 4.0.0-next.0
228
-
229
- ### Major Changes
230
-
231
- - GDU: Upgrades babel
232
-
233
- ## 3.3.0
234
-
235
- ### Minor Changes
236
-
237
- - 55153b1: GDU: Upgrades treat to latest version
238
-
239
- ### Patch Changes
240
-
241
- - Updated dependencies [14e78dc]
242
- - browserslist-config-autoguru@2.0.0
243
-
244
- ## 3.2.1
245
-
246
- ### Patch Changes
247
-
248
- - e625578: GDU: No longer follows "unicorn/prefer-node-protocol" rule
249
-
250
- ## 3.2.0
251
-
252
- ### Minor Changes
253
-
254
- - d80a10b: Unicorn eslint rules: Upgraded to v33
255
-
256
- Prettier: Upgrades to v2.3
257
-
258
- ### Patch Changes
259
-
260
- - Updated dependencies [d80a10b]
261
- - @autoguru/babel-preset@1.2.0
262
- - browserslist-config-autoguru@1.1.0
263
- - @autoguru/utilities@1.1.0
264
-
265
- ## 3.1.0
266
-
267
- ### Minor Changes
268
-
269
- - 7917b5d: graphql config endpoint gets support for optional schema
270
- normalisers patterns
271
- - 4f954f8: graphql config endpoint normaliser pattern gets optional flag
272
-
273
- ## 3.0.1
274
-
275
- ### Patch Changes
276
-
277
- - cdace6e: graphql-schema command expects endpointConfig url to be the
278
- complete url to the schema
279
- - cdace6e: graphql-schema command respects endpointConfig's http method
280
-
281
- ## 3.0.0
282
-
283
- ### Major Changes
284
-
285
- - 41b6042: Uses named webpack chunks
286
-
287
- ## 2.2.2
288
-
289
- ### Patch Changes
290
-
291
- - 3078dbf: Correctly split the chunks such that gdu is included with main
292
-
293
- ## 2.2.1
294
-
295
- ### Patch Changes
296
-
297
- - 5990714: Process all node_modules through babel as well
298
- - ea885c9: Upgrades treat to latest
299
-
300
- ## 2.2.0
301
-
302
- ### Minor Changes
303
-
304
- - 941261e: Supports latest nextjs as well new babel integration
305
- - 68ae99c: Adds support for React Native to use our config strategy.
306
-
307
- Usage:
308
-
309
- ```js
310
- // index.js (the entrypoint)
311
- import 'gdu/react-native/config';
312
- ```
313
-
314
- ```js
315
- // consumer
316
- import * as config from 'gdu/config';
317
- import { api } from 'gdu/config';
318
- import { auth, url as url2 } from 'gdu/config';
319
- ```
320
-
321
- ```js
322
- // babel.config.js
323
-
324
- module.exports = {
325
- plugins: [
326
- require.resolve('babel-plugin-macros'),
327
- require.resolve('gdu/babel/config-plugin'),
328
- ],
329
- };
330
- ```
331
-
332
- > Make sure you have `babel-plugin-macros` added to your project.
333
-
334
- > _**Note**_ Please only use this for react-native projects, config is
335
- > managed via webpack for our browser apps.
336
-
337
- - 00da6cc: Removes sass support, we are now treat through-and-through.
338
-
339
- ### Patch Changes
340
-
341
- - 919e4a0: Upgraded all dev and prod deps
342
- - Updated dependencies [941261e]
343
- - Updated dependencies [919e4a0]
344
- - @autoguru/babel-preset@1.1.0
345
- - browserslist-config-autoguru@1.0.89
346
- - @autoguru/tsconfig@1.0.79
347
- - @autoguru/utilities@1.0.98
348
-
349
- ## 2.1.3
350
-
351
- ### Patch Changes
352
-
353
- - d016ff6: Adds in an intersection observer polyfill
354
-
355
- ## 2.1.2
356
-
357
- ### Patch Changes
358
-
359
- - 4260eb3: Bumps deps and publishes new peerDeeps ranges
360
- - Updated dependencies [4260eb3]
361
- - @autoguru/babel-preset@1.0.98
362
-
363
- ## 2.1.1
364
-
365
- ### Patch Changes
366
-
367
- - 6886f49: GDU will now render a stack trace for errors
368
- - 3deb6b9: Fix issue where the next-babel-loader is at index 0, not 1
369
-
370
- ## 2.1.0
371
-
372
- ### Minor Changes
373
-
374
- - b5c0b8f: Performs schema fetching using HC's `/schema` endpoint
375
- - 69a313d: gdu.d.ts file is now removed in favour of npm maintained file,
376
- allowing for more defined properties and can be _more_ global.
377
-
378
- ### Patch Changes
379
-
380
- - dc79f71: Drops custom sass from NextJs apps
381
-
382
- ## 2.0.46
383
-
384
- ### Patch Changes
385
-
386
- - b0d77f1: Performance metrics added and better global app debug info
387
- - Updated dependencies [b0d77f1]
388
- - @autoguru/babel-preset@1.0.97
389
- - browserslist-config-autoguru@1.0.88
390
- - @autoguru/tsconfig@1.0.78
391
- - @autoguru/utilities@1.0.97
392
-
393
- ## 2.0.39
394
-
395
- ### Patch Changes
396
-
397
- - 724083c: GDU html-webpack-plugin requires template to be a string, and never
398
- undefined.
399
-
400
- **BUG FIXES**
401
-
402
- When no consumer template.html the property should be set to `auto`