nuxt-ignis 0.6.0-rc.2 → 0.6.0-rc.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.
- package/app/app.vue +2 -2
- package/app/components/CurrentTime.vue +1 -1
- package/app/components/ignis/IgnisContentFeatures.vue +29 -29
- package/app/components/ignis/IgnisContentFeaturesDetail.vue +1 -1
- package/app/components/ignis/IgnisContentWelcome.vue +1 -1
- package/app/composables/useTranslation.ts +1 -1
- package/app/plugins/errorHandler.ts +1 -1
- package/app/utils/consola.ts +3 -3
- package/bin/set-app-vue.js +1 -1
- package/bin/set-css.js +1 -1
- package/bin/set-eslint.js +1 -1
- package/bin/set-netlify.js +1 -1
- package/bin/set-vscode.js +1 -1
- package/bin/setup.js +14 -4
- package/nuxt.config.ts +1 -1
- package/package.json +2 -2
- package/public/_nuxt-config.json +22 -22
package/app/app.vue
CHANGED
|
@@ -19,8 +19,8 @@ useHead({
|
|
|
19
19
|
initConsola()
|
|
20
20
|
|
|
21
21
|
const config = useRuntimeConfig().public.ignis
|
|
22
|
-
const pages = config.config
|
|
23
|
-
const ui = config.ui
|
|
22
|
+
const pages = config.config?.nuxt?.pages ?? true
|
|
23
|
+
const ui = config.ui?.ui ?? false
|
|
24
24
|
|
|
25
25
|
log.info('Nuxt Ignis initialized')
|
|
26
26
|
</script>
|
|
@@ -28,40 +28,40 @@ import { useIgnisT } from '#imports' // requires explicit import for some reason
|
|
|
28
28
|
|
|
29
29
|
const setup = useRuntimeConfig().public.ignis
|
|
30
30
|
|
|
31
|
-
const ui = setup.preset
|
|
32
|
-
const db = setup.preset
|
|
33
|
-
const forms = setup.preset
|
|
34
|
-
const validation = setup.preset
|
|
31
|
+
const ui = setup.preset?.ui
|
|
32
|
+
const db = setup.preset?.db
|
|
33
|
+
const forms = setup.preset?.forms
|
|
34
|
+
const validation = setup.preset?.validation
|
|
35
35
|
|
|
36
36
|
const features = [
|
|
37
37
|
{ text: useIgnisT('features.nuxt'), active: true },
|
|
38
38
|
{ text: useIgnisT('features.consola'), active: true },
|
|
39
|
-
{ text: useIgnisT('features.eslint'), active: setup.default
|
|
40
|
-
{ text: useIgnisT('features.security'), active: setup.default
|
|
41
|
-
{ text: useIgnisT('features.image'), active: setup.default
|
|
42
|
-
{ text: useIgnisT('features.scripts'), active: setup.default
|
|
43
|
-
{ text: useIgnisT('features.fonts'), active: setup.default
|
|
44
|
-
{ text: useIgnisT('features.pinia'), active: setup.default
|
|
45
|
-
{ text: useIgnisT('features.vueuse'), active: setup.default
|
|
46
|
-
{ text: useIgnisT('features.auth'), active: setup.default
|
|
39
|
+
{ text: useIgnisT('features.eslint'), active: setup.default?.eslint },
|
|
40
|
+
{ text: useIgnisT('features.security'), active: setup.default?.security },
|
|
41
|
+
{ text: useIgnisT('features.image'), active: setup.default?.image },
|
|
42
|
+
{ text: useIgnisT('features.scripts'), active: setup.default?.scripts },
|
|
43
|
+
{ text: useIgnisT('features.fonts'), active: setup.default?.fonts, class: 'fonts' },
|
|
44
|
+
{ text: useIgnisT('features.pinia'), active: setup.default?.pinia },
|
|
45
|
+
{ text: useIgnisT('features.vueuse'), active: setup.default?.vueuse },
|
|
46
|
+
{ text: useIgnisT('features.auth'), active: setup.default?.auth },
|
|
47
47
|
{ text: useIgnisT('features.time'), active: true },
|
|
48
|
-
{ text: useIgnisT('features.ui'), active: ui === 'nuxt-ui' || setup.ui
|
|
49
|
-
{ text: useIgnisT('features.tailwind'), active: ui !== 'off' || setup.ui
|
|
50
|
-
{ text: useIgnisT('features.icon'), active: ui === 'nuxt-ui' || setup.ui
|
|
51
|
-
{ text: useIgnisT('features.neon'), active: db === 'neon' || (db === 'off' && setup.db
|
|
52
|
-
{ text: useIgnisT('features.supabase'), active: db === 'supabase' || (db === 'off' && setup.db
|
|
53
|
-
{ text: useIgnisT('features.vueform'), active: forms === 'vueform' || (forms === 'off' && setup.forms
|
|
54
|
-
{ text: useIgnisT('features.formkit'), active: forms === 'formkit' || (forms === 'off' && setup.forms
|
|
55
|
-
{ text: useIgnisT('features.valibot'), active: validation === 'valibot' || (validation === 'off' && setup.validation
|
|
56
|
-
{ text: useIgnisT('features.zod'), active: validation === 'zod' || (validation === 'off' && setup.validation
|
|
57
|
-
{ text: useIgnisT('features.content'), active: setup.content
|
|
58
|
-
{ text: useIgnisT('features.i18n'), active: setup.content
|
|
59
|
-
{ text: useIgnisT('features.seo'), active: setup.content
|
|
60
|
-
{ text: useIgnisT('features.social'), active: setup.content
|
|
61
|
-
{ text: useIgnisT('features.equipment'), active: setup.utils
|
|
62
|
-
{ text: useIgnisT('features.regexp'), active: setup.utils
|
|
63
|
-
{ text: useIgnisT('features.charts'), active: setup.ui
|
|
64
|
-
{ text: useIgnisT('features.openprops'), active: setup.ui
|
|
48
|
+
{ text: useIgnisT('features.ui'), active: ui === 'nuxt-ui' || setup.ui?.ui },
|
|
49
|
+
{ text: useIgnisT('features.tailwind'), active: ui !== 'off' || setup.ui?.tailwind || setup.ui?.tailwind },
|
|
50
|
+
{ text: useIgnisT('features.icon'), active: ui === 'nuxt-ui' || setup.ui?.ui },
|
|
51
|
+
{ text: useIgnisT('features.neon'), active: db === 'neon' || (db === 'off' && setup.db?.neon?.enabled) },
|
|
52
|
+
{ text: useIgnisT('features.supabase'), active: db === 'supabase' || (db === 'off' && setup.db?.supabase?.enabled) },
|
|
53
|
+
{ text: useIgnisT('features.vueform'), active: forms === 'vueform' || (forms === 'off' && setup.forms?.vueform?.enabled) },
|
|
54
|
+
{ text: useIgnisT('features.formkit'), active: forms === 'formkit' || (forms === 'off' && setup.forms?.formkit?.enabled) },
|
|
55
|
+
{ text: useIgnisT('features.valibot'), active: validation === 'valibot' || (validation === 'off' && setup.validation?.valibot) },
|
|
56
|
+
{ text: useIgnisT('features.zod'), active: validation === 'zod' || (validation === 'off' && setup.validation?.zod) },
|
|
57
|
+
{ text: useIgnisT('features.content'), active: setup.content?.content?.enabled },
|
|
58
|
+
{ text: useIgnisT('features.i18n'), active: setup.content?.i18n?.enabled },
|
|
59
|
+
{ text: useIgnisT('features.seo'), active: setup.content?.seo?.enabled },
|
|
60
|
+
{ text: useIgnisT('features.social'), active: setup.content?.social?.enabled },
|
|
61
|
+
{ text: useIgnisT('features.equipment'), active: setup.utils?.equipment?.enabled },
|
|
62
|
+
{ text: useIgnisT('features.regexp'), active: setup.utils?.regexp?.enabled },
|
|
63
|
+
{ text: useIgnisT('features.charts'), active: setup.ui?.charts },
|
|
64
|
+
{ text: useIgnisT('features.openprops'), active: setup.ui?.openprops, class: 'openprops-feature' },
|
|
65
65
|
]
|
|
66
66
|
</script>
|
|
67
67
|
|
|
@@ -52,7 +52,7 @@ const props = defineProps({
|
|
|
52
52
|
* `Icon` component can only be used if `@nuxt/ui` module is activated.
|
|
53
53
|
*/
|
|
54
54
|
const config = useRuntimeConfig().public.ignis
|
|
55
|
-
const showIcon = config.ui
|
|
55
|
+
const showIcon = config.ui?.ui ?? false
|
|
56
56
|
|
|
57
57
|
// In setup section, you have to adress properties like this.
|
|
58
58
|
// You cannot reach them directly like in template.
|
|
@@ -17,7 +17,7 @@ import lang from '@/../i18n/locales/en.json'
|
|
|
17
17
|
* @returns translated text from i18n sources
|
|
18
18
|
*/
|
|
19
19
|
export function useT(key: string): string {
|
|
20
|
-
if (useRuntimeConfig().public.ignis.content
|
|
20
|
+
if (useRuntimeConfig().public.ignis.content?.i18n?.enabled) {
|
|
21
21
|
// i18n available => just use it
|
|
22
22
|
return (useNuxtApp().$i18n as { t: (key: string) => string }).t(key)
|
|
23
23
|
} else {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// This feature can be disbled via `ignis.config.nuxt.error` flag.
|
|
5
5
|
|
|
6
6
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
7
|
-
if (useRuntimeConfig().public.ignis.config
|
|
7
|
+
if (useRuntimeConfig().public.ignis.config?.nuxt?.error) {
|
|
8
8
|
nuxtApp.vueApp.config.errorHandler = (err, instance, info) => {
|
|
9
9
|
log.error(err)
|
|
10
10
|
// capture additional context
|
package/app/utils/consola.ts
CHANGED
|
@@ -35,7 +35,7 @@ export const log = createConsola({
|
|
|
35
35
|
*/
|
|
36
36
|
export async function initConsola() {
|
|
37
37
|
// set default log level from config
|
|
38
|
-
const logLevel = useRuntimeConfig().public.ignis.config
|
|
38
|
+
const logLevel = useRuntimeConfig().public.ignis.config?.log?.level
|
|
39
39
|
log.level = getLogLevel(logLevel)
|
|
40
40
|
defaultReporter.level = log.level
|
|
41
41
|
log.debug(`[consola] log level set to '${logLevel}'`)
|
|
@@ -45,8 +45,8 @@ export async function initConsola() {
|
|
|
45
45
|
* Transform text values of logLevel
|
|
46
46
|
* to numeric equivalent used by consola.
|
|
47
47
|
*/
|
|
48
|
-
function getLogLevel(logLevel: string): LogLevel {
|
|
49
|
-
const logLevelString = logLevel
|
|
48
|
+
function getLogLevel(logLevel: string | undefined): LogLevel {
|
|
49
|
+
const logLevelString = logLevel?.toLocaleLowerCase() || 'info'
|
|
50
50
|
switch (logLevelString) {
|
|
51
51
|
case 'fatal': return LogLevels.fatal
|
|
52
52
|
case 'error': return LogLevels.error
|
package/bin/set-app-vue.js
CHANGED
|
@@ -11,7 +11,7 @@ import { createFileFromWebTemplate } from 'elrh-cosca'
|
|
|
11
11
|
*/
|
|
12
12
|
export async function setAppVue() {
|
|
13
13
|
try {
|
|
14
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
14
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/core/app/app.vue', 'app/app.vue')
|
|
15
15
|
} catch (error) {
|
|
16
16
|
console.error('Error creating Ignis `app.vue` file:\n', error.message)
|
|
17
17
|
}
|
package/bin/set-css.js
CHANGED
|
@@ -11,7 +11,7 @@ import { createFileFromWebTemplate } from 'elrh-cosca'
|
|
|
11
11
|
*/
|
|
12
12
|
export async function setCSS() {
|
|
13
13
|
try {
|
|
14
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
14
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/modules/01-default/src/runtime/css/ignis.css', 'app/assets/css/ignis.css')
|
|
15
15
|
} catch (error) {
|
|
16
16
|
console.error('Error creating Ignis CSS file:\n', error.message)
|
|
17
17
|
}
|
package/bin/set-eslint.js
CHANGED
|
@@ -9,7 +9,7 @@ import { createFileFromWebTemplate } from 'elrh-cosca'
|
|
|
9
9
|
*/
|
|
10
10
|
export async function setESLint() {
|
|
11
11
|
try {
|
|
12
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
12
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/core/bin/templates/eslint.config.mjs.template', 'eslint.config.mjs')
|
|
13
13
|
} catch (error) {
|
|
14
14
|
console.error('Error creating ESLint config file:\n', error.message)
|
|
15
15
|
}
|
package/bin/set-netlify.js
CHANGED
|
@@ -11,7 +11,7 @@ import { createFileFromWebTemplate } from 'elrh-cosca'
|
|
|
11
11
|
*/
|
|
12
12
|
export async function setNetlify() {
|
|
13
13
|
try {
|
|
14
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
14
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/core/bin/templates/netlify.toml.template', 'netlify.toml')
|
|
15
15
|
} catch (error) {
|
|
16
16
|
console.error('Error creating Netlify TOML file:\n', error.message)
|
|
17
17
|
}
|
package/bin/set-vscode.js
CHANGED
|
@@ -11,7 +11,7 @@ import { createFileFromWebTemplate } from 'elrh-cosca'
|
|
|
11
11
|
*/
|
|
12
12
|
export async function setVSCode() {
|
|
13
13
|
try {
|
|
14
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
14
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/core/bin/templates/vscode-settings.json.template', '.vscode/settings.json')
|
|
15
15
|
} catch (error) {
|
|
16
16
|
console.error('Error creating VS Code settings file:\n', error.message)
|
|
17
17
|
}
|
package/bin/setup.js
CHANGED
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
* 5) add `extends: ['nuxt-ignis']` to `nuxt.config.ts`
|
|
23
23
|
* 6) update `.gitignore` file
|
|
24
24
|
* 7) replace default Nuxt `app/app.vue` with Nuxt Ignis default (if detected)
|
|
25
|
-
* 8) create default `vitest.config.ts` file
|
|
25
|
+
* 8) create default `vitest.config.ts` and `.nuxtrc` file, add test-related scripts into `package.json` and create sample test files
|
|
26
26
|
* 9) clear node_modules and lock file(s)
|
|
27
27
|
*/
|
|
28
28
|
export async function nuxtIgnisSetup(autoRun = false) {
|
|
@@ -37,7 +37,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
37
37
|
|
|
38
38
|
// 1 - add nuxt-ignis dependency to package.json
|
|
39
39
|
try {
|
|
40
|
-
await updateJsonFile('package.json', 'dependencies', { 'nuxt-ignis': '0.6.0-rc.
|
|
40
|
+
await updateJsonFile('package.json', 'dependencies', { 'nuxt-ignis': '0.6.0-rc.3' },
|
|
41
41
|
isAutoRun, 'This will add \'nuxt-ignis\' dependency to your \'package.json\'. Proceed?')
|
|
42
42
|
} catch (error) {
|
|
43
43
|
console.error('Error adding \'nuxt-ignis\' dependency:\n', error.message)
|
|
@@ -110,7 +110,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
110
110
|
await updateTextFile('pnpm-workspace.yaml', ['shamefully-hoist: true'], isAutoRun,
|
|
111
111
|
'This will adjust \'pnpm-workspace.yaml\' file in your project. Continue?')
|
|
112
112
|
} else {
|
|
113
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
113
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/bin/templates/pnpm-workspace.yaml.template',
|
|
114
114
|
'pnpm-workspace.yaml', isAutoRun, 'This will add \'pnpm-workspace.yaml\' file for your project. Continue?')
|
|
115
115
|
}
|
|
116
116
|
} catch (error) {
|
|
@@ -155,7 +155,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
155
155
|
const replaceAppVue = isAutoRun || await promptUser('Default Nuxt \'app/app.vue\' detected. This will replace it with Nuxt Ignis default. Continue?')
|
|
156
156
|
if (replaceAppVue) {
|
|
157
157
|
try {
|
|
158
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
158
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.3/core/app/app.vue', 'app/app.vue', true)
|
|
159
159
|
} catch (error) {
|
|
160
160
|
console.error('Error replacing \'app/app.vue\':\n', error.message)
|
|
161
161
|
}
|
|
@@ -174,6 +174,16 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
174
174
|
console.error('Error setting up \'vitest.config.ts\':\n', error.message)
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
+
// create .nuxtrc to prevent @nuxt/test-utils setup from running automatically on first start
|
|
178
|
+
if (!pathExists('.nuxtrc')) {
|
|
179
|
+
try {
|
|
180
|
+
await updateTextFile('.nuxtrc', ['setups.@nuxt/test-utils="4.0.2"'], isAutoRun,
|
|
181
|
+
'This will create a \'.nuxtrc\' file to prevent @nuxt/test-utils setup from running automatically when dev server starts. Continue?')
|
|
182
|
+
} catch (error) {
|
|
183
|
+
console.error('Error creating \'.nuxtrc\':\n', error.message)
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
177
187
|
// add scripts for running tests into package.json
|
|
178
188
|
try {
|
|
179
189
|
await updateJsonFile('package.json', 'scripts', {
|
package/nuxt.config.ts
CHANGED
|
@@ -9,7 +9,7 @@ export default defineNuxtConfig({
|
|
|
9
9
|
],
|
|
10
10
|
|
|
11
11
|
// https://nuxt.com/docs/4.x/api/nuxt-config#compatibilitydate
|
|
12
|
-
compatibilityDate: '2026-
|
|
12
|
+
compatibilityDate: '2026-06-01',
|
|
13
13
|
|
|
14
14
|
// supressing misleading Windows warnings (#179)
|
|
15
15
|
// based on https://github.com/nuxt/nuxt/issues/27424#issuecomment-4128539968
|
package/package.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "nuxt-ignis",
|
|
3
3
|
"description": "A ready-to-use setup for your next application in Nuxt",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.6.0-rc.
|
|
5
|
+
"version": "0.6.0-rc.3",
|
|
6
6
|
"config": {
|
|
7
|
-
"date": "2026-
|
|
7
|
+
"date": "2026-06-01"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
10
|
"nuxt",
|
package/public/_nuxt-config.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
16
|
"compatibilityDate": {
|
|
17
|
-
"default": "2026-
|
|
17
|
+
"default": "2026-06-01"
|
|
18
18
|
},
|
|
19
19
|
"eslint": {
|
|
20
20
|
"config": {
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
}
|
|
142
142
|
},
|
|
143
143
|
"app": {
|
|
144
|
-
"buildId": "
|
|
144
|
+
"buildId": "97c84137-b0a7-4d19-982c-521dec493025",
|
|
145
145
|
"baseURL": "/",
|
|
146
146
|
"buildAssetsDir": "/_nuxt/",
|
|
147
147
|
"cdnURL": ""
|
|
@@ -879,7 +879,7 @@
|
|
|
879
879
|
"#imports": "C:/Git/nuxt-ignis/core/node_modules/.cache/nuxt/.nuxt/imports",
|
|
880
880
|
"#nuxt-scripts": "C:/Git/nuxt-ignis/node_modules/@nuxt/scripts/dist/runtime",
|
|
881
881
|
"#auth-utils": "C:/Git/nuxt-ignis/node_modules/nuxt-auth-utils/dist/runtime/types/index",
|
|
882
|
-
"#app-manifest": "C:/Git/nuxt-ignis/core/node_modules/.cache/nuxt/.nuxt/manifest/meta/
|
|
882
|
+
"#app-manifest": "C:/Git/nuxt-ignis/core/node_modules/.cache/nuxt/.nuxt/manifest/meta/97c84137-b0a7-4d19-982c-521dec493025.json"
|
|
883
883
|
},
|
|
884
884
|
"buildDir": "C:/Git/nuxt-ignis/core/node_modules/.cache/nuxt/.nuxt",
|
|
885
885
|
"_layers": [
|
|
@@ -888,7 +888,7 @@
|
|
|
888
888
|
"extends": [
|
|
889
889
|
"nuxt-spec"
|
|
890
890
|
],
|
|
891
|
-
"compatibilityDate": "2026-
|
|
891
|
+
"compatibilityDate": "2026-06-01",
|
|
892
892
|
"nitro": {
|
|
893
893
|
"rollupConfig": {}
|
|
894
894
|
},
|
|
@@ -1695,7 +1695,7 @@
|
|
|
1695
1695
|
"workspaceDir": "C:/Git/nuxt-ignis",
|
|
1696
1696
|
"serverDir": "C:/Git/nuxt-ignis/core/server",
|
|
1697
1697
|
"appId": "nuxt-app",
|
|
1698
|
-
"buildId": "
|
|
1698
|
+
"buildId": "97c84137-b0a7-4d19-982c-521dec493025",
|
|
1699
1699
|
"modulesDir": [
|
|
1700
1700
|
"C:/Git/nuxt-ignis/core/node_modules",
|
|
1701
1701
|
"C:/Git/nuxt-ignis/node_modules",
|
|
@@ -1866,7 +1866,7 @@
|
|
|
1866
1866
|
"disabled": false
|
|
1867
1867
|
},
|
|
1868
1868
|
"timings": {
|
|
1869
|
-
"setup":
|
|
1869
|
+
"setup": 45.79
|
|
1870
1870
|
},
|
|
1871
1871
|
"entryPath": "@nuxt/eslint"
|
|
1872
1872
|
},
|
|
@@ -1878,7 +1878,7 @@
|
|
|
1878
1878
|
"disabled": false
|
|
1879
1879
|
},
|
|
1880
1880
|
"timings": {
|
|
1881
|
-
"setup": 0.
|
|
1881
|
+
"setup": 0.5
|
|
1882
1882
|
},
|
|
1883
1883
|
"entryPath": "@nuxt/test-utils/module"
|
|
1884
1884
|
},
|
|
@@ -1916,7 +1916,7 @@
|
|
|
1916
1916
|
"disabled": false
|
|
1917
1917
|
},
|
|
1918
1918
|
"timings": {
|
|
1919
|
-
"setup":
|
|
1919
|
+
"setup": 130.53
|
|
1920
1920
|
},
|
|
1921
1921
|
"entryPath": "@nuxt/devtools"
|
|
1922
1922
|
},
|
|
@@ -1927,7 +1927,7 @@
|
|
|
1927
1927
|
"disabled": false
|
|
1928
1928
|
},
|
|
1929
1929
|
"timings": {
|
|
1930
|
-
"setup":
|
|
1930
|
+
"setup": 15.73
|
|
1931
1931
|
}
|
|
1932
1932
|
},
|
|
1933
1933
|
{
|
|
@@ -1937,7 +1937,7 @@
|
|
|
1937
1937
|
"disabled": false
|
|
1938
1938
|
},
|
|
1939
1939
|
"timings": {
|
|
1940
|
-
"setup": 1.
|
|
1940
|
+
"setup": 1.06
|
|
1941
1941
|
}
|
|
1942
1942
|
},
|
|
1943
1943
|
{
|
|
@@ -1947,7 +1947,7 @@
|
|
|
1947
1947
|
"disabled": false
|
|
1948
1948
|
},
|
|
1949
1949
|
"timings": {
|
|
1950
|
-
"setup":
|
|
1950
|
+
"setup": 7.25
|
|
1951
1951
|
}
|
|
1952
1952
|
},
|
|
1953
1953
|
{
|
|
@@ -1957,7 +1957,7 @@
|
|
|
1957
1957
|
"disabled": false
|
|
1958
1958
|
},
|
|
1959
1959
|
"timings": {
|
|
1960
|
-
"setup": 0.
|
|
1960
|
+
"setup": 0.11
|
|
1961
1961
|
}
|
|
1962
1962
|
},
|
|
1963
1963
|
{
|
|
@@ -1967,7 +1967,7 @@
|
|
|
1967
1967
|
"disabled": false
|
|
1968
1968
|
},
|
|
1969
1969
|
"timings": {
|
|
1970
|
-
"setup":
|
|
1970
|
+
"setup": 1.25
|
|
1971
1971
|
}
|
|
1972
1972
|
},
|
|
1973
1973
|
{
|
|
@@ -1977,7 +1977,7 @@
|
|
|
1977
1977
|
"disabled": false
|
|
1978
1978
|
},
|
|
1979
1979
|
"timings": {
|
|
1980
|
-
"setup": 0.
|
|
1980
|
+
"setup": 0.31
|
|
1981
1981
|
}
|
|
1982
1982
|
},
|
|
1983
1983
|
{
|
|
@@ -2008,7 +2008,7 @@
|
|
|
2008
2008
|
"disabled": false
|
|
2009
2009
|
},
|
|
2010
2010
|
"timings": {
|
|
2011
|
-
"setup": 0.
|
|
2011
|
+
"setup": 0.37
|
|
2012
2012
|
},
|
|
2013
2013
|
"entryPath": "@nuxt-ignis/default"
|
|
2014
2014
|
},
|
|
@@ -2024,7 +2024,7 @@
|
|
|
2024
2024
|
"disabled": false
|
|
2025
2025
|
},
|
|
2026
2026
|
"timings": {
|
|
2027
|
-
"setup": 1.
|
|
2027
|
+
"setup": 1.1
|
|
2028
2028
|
},
|
|
2029
2029
|
"entryPath": "@nuxt/fonts"
|
|
2030
2030
|
},
|
|
@@ -2043,7 +2043,7 @@
|
|
|
2043
2043
|
"disabled": false
|
|
2044
2044
|
},
|
|
2045
2045
|
"timings": {
|
|
2046
|
-
"setup": 0.
|
|
2046
|
+
"setup": 0.72
|
|
2047
2047
|
},
|
|
2048
2048
|
"entryPath": "@nuxt/image"
|
|
2049
2049
|
},
|
|
@@ -2062,7 +2062,7 @@
|
|
|
2062
2062
|
"disabled": false
|
|
2063
2063
|
},
|
|
2064
2064
|
"timings": {
|
|
2065
|
-
"setup":
|
|
2065
|
+
"setup": 109.07
|
|
2066
2066
|
},
|
|
2067
2067
|
"entryPath": "@nuxt/scripts"
|
|
2068
2068
|
},
|
|
@@ -2078,7 +2078,7 @@
|
|
|
2078
2078
|
"disabled": false
|
|
2079
2079
|
},
|
|
2080
2080
|
"timings": {
|
|
2081
|
-
"setup": 1
|
|
2081
|
+
"setup": 1.04
|
|
2082
2082
|
},
|
|
2083
2083
|
"entryPath": "nuxt-security"
|
|
2084
2084
|
},
|
|
@@ -2094,7 +2094,7 @@
|
|
|
2094
2094
|
"disabled": false
|
|
2095
2095
|
},
|
|
2096
2096
|
"timings": {
|
|
2097
|
-
"setup":
|
|
2097
|
+
"setup": 0.96
|
|
2098
2098
|
},
|
|
2099
2099
|
"entryPath": "nuxt-auth-utils"
|
|
2100
2100
|
},
|
|
@@ -2105,7 +2105,7 @@
|
|
|
2105
2105
|
"disabled": false
|
|
2106
2106
|
},
|
|
2107
2107
|
"timings": {
|
|
2108
|
-
"setup": 0.
|
|
2108
|
+
"setup": 0.09
|
|
2109
2109
|
},
|
|
2110
2110
|
"entryPath": "@vueuse/nuxt"
|
|
2111
2111
|
},
|
|
@@ -2407,7 +2407,7 @@
|
|
|
2407
2407
|
}
|
|
2408
2408
|
},
|
|
2409
2409
|
"app": {
|
|
2410
|
-
"buildId": "
|
|
2410
|
+
"buildId": "97c84137-b0a7-4d19-982c-521dec493025",
|
|
2411
2411
|
"baseURL": "/",
|
|
2412
2412
|
"buildAssetsDir": "/_nuxt/",
|
|
2413
2413
|
"cdnURL": ""
|