gdu 5.2.1 → 5.2.3
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.
|
@@ -14,8 +14,13 @@ export declare const createNextJSConfig: (buildEnv: any) => {
|
|
|
14
14
|
distDir: string;
|
|
15
15
|
reactStrictMode: boolean;
|
|
16
16
|
swcMinify: boolean;
|
|
17
|
+
generateEtags: boolean;
|
|
17
18
|
poweredByHeader: boolean;
|
|
18
19
|
assetPrefix: string;
|
|
20
|
+
i18n: {
|
|
21
|
+
locales: string[];
|
|
22
|
+
defaultLocale: string;
|
|
23
|
+
};
|
|
19
24
|
typescript: {
|
|
20
25
|
ignoreBuildErrors: boolean;
|
|
21
26
|
};
|
|
@@ -45,6 +45,7 @@ exports.withTM = (0, next_transpile_modules_1.default)([
|
|
|
45
45
|
'@autoguru/fleet',
|
|
46
46
|
'@autoguru/relay',
|
|
47
47
|
'@autoguru/auth',
|
|
48
|
+
'@autoguru/aws',
|
|
48
49
|
'@autoguru/components',
|
|
49
50
|
'@autoguru/layout',
|
|
50
51
|
'@popperjs/core',
|
|
@@ -199,8 +200,13 @@ const createNextJSConfig = (buildEnv) => {
|
|
|
199
200
|
distDir: `dist/${env}`,
|
|
200
201
|
reactStrictMode: !isProductionSite,
|
|
201
202
|
swcMinify: true,
|
|
203
|
+
generateEtags: true,
|
|
202
204
|
poweredByHeader: !isProductionSite,
|
|
203
205
|
assetPrefix,
|
|
206
|
+
i18n: {
|
|
207
|
+
locales: ['en'],
|
|
208
|
+
defaultLocale: 'en',
|
|
209
|
+
},
|
|
204
210
|
typescript: {
|
|
205
211
|
ignoreBuildErrors: true,
|
|
206
212
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdu",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.3",
|
|
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",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
109
|
"@types/node": ">=10",
|
|
110
|
-
"browserslist-config-autoguru": ">=2.2.
|
|
110
|
+
"browserslist-config-autoguru": ">=2.2.3"
|
|
111
111
|
},
|
|
112
112
|
"engines": {
|
|
113
113
|
"node": ">=12.14.0"
|