nuxt-ignis 0.6.0-rc.3 → 0.6.0-rc.5
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/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 +35 -17
- package/bin/templates/nuxtrc.template +1 -0
- package/bin/templates/pnpm-workspace.yaml.template +20 -1
- package/modules/02-features.ts +5 -0
- package/package.json +13 -13
- package/public/_nuxt-config.json +24 -24
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.5/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.5/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.5/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.5/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.5/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
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
+
import { execSync } from 'node:child_process'
|
|
3
4
|
import { readFileSync } from 'node:fs'
|
|
4
5
|
import {
|
|
5
6
|
createFileFromWebTemplate, deletePath, getPackageManager, hasJsonKey,
|
|
6
|
-
pathExists, promptUser, removeFromJsonFile, showMessage,
|
|
7
|
+
pathExists, promptUser, removeFromJsonFile, removeFromTextFile, showMessage,
|
|
7
8
|
updateConfigFile, updateJsonFile, updateTextFile,
|
|
8
9
|
} from 'elrh-cosca'
|
|
9
10
|
|
|
@@ -19,11 +20,12 @@ import {
|
|
|
19
20
|
* 2) remove `nuxt`, `vue` and `vue-router` if present
|
|
20
21
|
* 3) and `packageManager` setting (only if pnpm is used)
|
|
21
22
|
* 4) create/update `pnpm-workspace.yaml` file (only if pnpm is used)
|
|
22
|
-
* 5) add `extends: ['nuxt-ignis']` to `nuxt.config.ts`
|
|
23
|
+
* 5) add `extends: ['nuxt-ignis']` to `nuxt.config.ts` and remove compatibility date if present
|
|
23
24
|
* 6) update `.gitignore` file
|
|
24
25
|
* 7) replace default Nuxt `app/app.vue` with Nuxt Ignis default (if detected)
|
|
25
26
|
* 8) create default `vitest.config.ts` and `.nuxtrc` file, add test-related scripts into `package.json` and create sample test files
|
|
26
27
|
* 9) clear node_modules and lock file(s)
|
|
28
|
+
* 10) run install command
|
|
27
29
|
*/
|
|
28
30
|
export async function nuxtIgnisSetup(autoRun = false) {
|
|
29
31
|
showMessage('NUXT IGNIS SETUP')
|
|
@@ -37,7 +39,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
37
39
|
|
|
38
40
|
// 1 - add nuxt-ignis dependency to package.json
|
|
39
41
|
try {
|
|
40
|
-
await updateJsonFile('package.json', 'dependencies', { 'nuxt-ignis': '0.6.0-rc.
|
|
42
|
+
await updateJsonFile('package.json', 'dependencies', { 'nuxt-ignis': '0.6.0-rc.5' },
|
|
41
43
|
isAutoRun, 'This will add \'nuxt-ignis\' dependency to your \'package.json\'. Proceed?')
|
|
42
44
|
} catch (error) {
|
|
43
45
|
console.error('Error adding \'nuxt-ignis\' dependency:\n', error.message)
|
|
@@ -110,7 +112,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
110
112
|
await updateTextFile('pnpm-workspace.yaml', ['shamefully-hoist: true'], isAutoRun,
|
|
111
113
|
'This will adjust \'pnpm-workspace.yaml\' file in your project. Continue?')
|
|
112
114
|
} else {
|
|
113
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
115
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.5/core/bin/templates/pnpm-workspace.yaml.template',
|
|
114
116
|
'pnpm-workspace.yaml', isAutoRun, 'This will add \'pnpm-workspace.yaml\' file for your project. Continue?')
|
|
115
117
|
}
|
|
116
118
|
} catch (error) {
|
|
@@ -118,15 +120,19 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
118
120
|
}
|
|
119
121
|
}
|
|
120
122
|
|
|
121
|
-
// 5 -
|
|
123
|
+
// 5 - adjust nuxt.config.ts
|
|
122
124
|
try {
|
|
125
|
+
// extend from nuxt-ignis layer
|
|
123
126
|
await updateConfigFile('nuxt.config.ts', {
|
|
124
127
|
extends: [
|
|
125
128
|
'nuxt-ignis',
|
|
126
129
|
],
|
|
127
130
|
}, isAutoRun, 'This will add \'nuxt-ignis\' module to your \'nuxt.config.ts\'. Continue?')
|
|
131
|
+
|
|
132
|
+
// remove compatibility date if present
|
|
133
|
+
await removeFromTextFile('nuxt.config.ts', 'compatibilityDate', isAutoRun, 'This will remove existing compatibility date from your \'nuxt.config.ts\'. Continue?')
|
|
128
134
|
} catch (error) {
|
|
129
|
-
console.error('Error
|
|
135
|
+
console.error('Error adjusting \'nuxt.config.ts\':\n', error.message)
|
|
130
136
|
}
|
|
131
137
|
|
|
132
138
|
// 6 - .gitignore file
|
|
@@ -155,7 +161,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
155
161
|
const replaceAppVue = isAutoRun || await promptUser('Default Nuxt \'app/app.vue\' detected. This will replace it with Nuxt Ignis default. Continue?')
|
|
156
162
|
if (replaceAppVue) {
|
|
157
163
|
try {
|
|
158
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.
|
|
164
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.5/core/app/app.vue', 'app/app.vue', true)
|
|
159
165
|
} catch (error) {
|
|
160
166
|
console.error('Error replacing \'app/app.vue\':\n', error.message)
|
|
161
167
|
}
|
|
@@ -168,7 +174,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
168
174
|
if (setupNuxtSpec) {
|
|
169
175
|
// create vitest.config.ts
|
|
170
176
|
try {
|
|
171
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
177
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/config/templates/vitest.config.ts.template',
|
|
172
178
|
'vitest.config.ts', true, 'This will create a new \'vitest.config.ts\' file for your project. Continue?')
|
|
173
179
|
} catch (error) {
|
|
174
180
|
console.error('Error setting up \'vitest.config.ts\':\n', error.message)
|
|
@@ -177,8 +183,7 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
177
183
|
// create .nuxtrc to prevent @nuxt/test-utils setup from running automatically on first start
|
|
178
184
|
if (!pathExists('.nuxtrc')) {
|
|
179
185
|
try {
|
|
180
|
-
await
|
|
181
|
-
'This will create a \'.nuxtrc\' file to prevent @nuxt/test-utils setup from running automatically when dev server starts. Continue?')
|
|
186
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-ignis/refs/tags/v0.6.0-rc.5/core/bin/templates/nuxtrc.template', '.nuxtrc', isAutoRun, 'This will create a \'.nuxtrc\' file to prevent @nuxt/test-utils setup from running automatically when dev server starts. Continue?')
|
|
182
187
|
} catch (error) {
|
|
183
188
|
console.error('Error creating \'.nuxtrc\':\n', error.message)
|
|
184
189
|
}
|
|
@@ -199,31 +204,31 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
199
204
|
const createSampleTests = isAutoRun || await promptUser('Do you want to create sample tests in \'/test\' folder?')
|
|
200
205
|
if (createSampleTests) {
|
|
201
206
|
try {
|
|
202
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
207
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/test/browser/vitest-browser.test.ts',
|
|
203
208
|
'test/browser/vitest-browser.test.ts', true)
|
|
204
209
|
} catch (error) {
|
|
205
210
|
console.error('Error setting up \'vitest-browser.test.ts\':\n', error.message)
|
|
206
211
|
}
|
|
207
212
|
try {
|
|
208
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
213
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/test/e2e/nuxt-e2e.test.ts',
|
|
209
214
|
'test/e2e/nuxt-e2e.test.ts', true)
|
|
210
215
|
} catch (error) {
|
|
211
216
|
console.error('Error setting up \'nuxt-e2e.test.ts\':\n', error.message)
|
|
212
217
|
}
|
|
213
218
|
try {
|
|
214
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
219
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/test/e2e/nuxt-visual.test.ts',
|
|
215
220
|
'test/e2e/nuxt-visual.test.ts', true)
|
|
216
221
|
} catch (error) {
|
|
217
222
|
console.error('Error setting up \'nuxt-visual.test.ts\':\n', error.message)
|
|
218
223
|
}
|
|
219
224
|
try {
|
|
220
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
225
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/test/nuxt/nuxt-unit.test.ts',
|
|
221
226
|
'test/nuxt/nuxt-unit.test.ts', true)
|
|
222
227
|
} catch (error) {
|
|
223
228
|
console.error('Error setting up \'nuxt-unit.test.ts\':\n', error.message)
|
|
224
229
|
}
|
|
225
230
|
try {
|
|
226
|
-
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.
|
|
231
|
+
await createFileFromWebTemplate('https://raw.githubusercontent.com/AloisSeckar/nuxt-spec/refs/tags/v0.2.3/test/unit/vitest-unit.test.ts',
|
|
227
232
|
'test/unit/vitest-unit.test.ts', true)
|
|
228
233
|
} catch (error) {
|
|
229
234
|
console.error('Error setting up \'vitest-unit.test.ts\':\n', error.message)
|
|
@@ -278,10 +283,23 @@ export async function nuxtIgnisSetup(autoRun = false) {
|
|
|
278
283
|
}
|
|
279
284
|
}
|
|
280
285
|
|
|
281
|
-
//
|
|
286
|
+
// 10 - run install command
|
|
287
|
+
const runInstall = isAutoRun || await promptUser(`Fresh \`${packageManager} install\` is required. Do you want to run it now?`)
|
|
288
|
+
if (runInstall) {
|
|
289
|
+
try {
|
|
290
|
+
showMessage(`Running \`${packageManager} install\`...`)
|
|
291
|
+
execSync(`${packageManager} install`, { stdio: 'inherit' })
|
|
292
|
+
} catch (error) {
|
|
293
|
+
console.error(`Error running \`${packageManager} install\`:\n`, error.message)
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
// inform user
|
|
282
298
|
showMessage('')
|
|
283
299
|
showMessage('NUXT IGNIS SETUP COMPLETE', 2)
|
|
284
|
-
|
|
300
|
+
if (!runInstall) {
|
|
301
|
+
showMessage(`Proceed with \`${packageManager} install\` to get started.`)
|
|
302
|
+
}
|
|
285
303
|
|
|
286
304
|
// make sure the process won't hang
|
|
287
305
|
process.exit(0)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
setups.@nuxt/test-utils="4.0.3"
|
|
@@ -17,8 +17,16 @@ minimumReleaseAge: 4320
|
|
|
17
17
|
|
|
18
18
|
# trusted and verified packages may be excluded
|
|
19
19
|
minimumReleaseAgeExclude:
|
|
20
|
-
# nuxt-ignis must be excluded to allow
|
|
20
|
+
# nuxt-ignis and its submodules must be excluded to allow
|
|
21
|
+
# installing latest version without 3 days cooldown
|
|
21
22
|
- nuxt-ignis
|
|
23
|
+
- '@nuxt-ignis/content'
|
|
24
|
+
- '@nuxt-ignis/default'
|
|
25
|
+
- '@nuxt-ignis/db'
|
|
26
|
+
- '@nuxt-ignis/forms'
|
|
27
|
+
- '@nuxt-ignis/ui'
|
|
28
|
+
- '@nuxt-ignis/utils'
|
|
29
|
+
- '@nuxt-ignis/validation'
|
|
22
30
|
# add more if needed
|
|
23
31
|
# - package-name
|
|
24
32
|
|
|
@@ -38,3 +46,14 @@ allowBuilds:
|
|
|
38
46
|
puppeteer: false
|
|
39
47
|
# add more if needed
|
|
40
48
|
# - package-name: boolean
|
|
49
|
+
|
|
50
|
+
# recommended overrides for various (mostly security) reasons
|
|
51
|
+
overrides:
|
|
52
|
+
# suspicious v4 comming from @formkit/nuxt@2.0.0
|
|
53
|
+
chokidar: ^5.0.0
|
|
54
|
+
# suspicious v6 comming from nuxt-security@2.6.0
|
|
55
|
+
semver: ^7.7.0
|
|
56
|
+
# suspicious v6 comming from nuxt-neon@0.8.3
|
|
57
|
+
undici-types: ^7.22.0
|
|
58
|
+
# untrusted version included in nuxt@4.4.7
|
|
59
|
+
tinyclip: ^0.1.14
|
package/modules/02-features.ts
CHANGED
|
@@ -182,6 +182,11 @@ export default defineNuxtModule<IgnisOptions>({
|
|
|
182
182
|
|
|
183
183
|
// additional processing
|
|
184
184
|
|
|
185
|
+
// remove Nuxt UI-specific components from Vue resolution
|
|
186
|
+
// if Nuxt UI integration is disabled
|
|
187
|
+
nuxt.options.vue.compilerOptions ||= {}
|
|
188
|
+
nuxt.options.vue.compilerOptions.isCustomElement = (tag: string) => tag === 'Icon' || tag === 'UApp'
|
|
189
|
+
|
|
185
190
|
// warn if duplicate modules find
|
|
186
191
|
// this means e.g. 2 database modules or 2 form solutions
|
|
187
192
|
if (ignisOpts.config?.warn?.duplicates) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.5",
|
|
6
6
|
"config": {
|
|
7
7
|
"date": "2026-06-01"
|
|
8
8
|
},
|
|
@@ -44,24 +44,24 @@
|
|
|
44
44
|
"nuxt-ignis": "./bin/cli.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@nuxt-ignis/content": "0.0.
|
|
48
|
-
"@nuxt-ignis/db": "0.0.
|
|
49
|
-
"@nuxt-ignis/default": "0.0.
|
|
50
|
-
"@nuxt-ignis/forms": "0.0.
|
|
51
|
-
"@nuxt-ignis/ui": "0.0.
|
|
52
|
-
"@nuxt-ignis/utils": "0.0.
|
|
53
|
-
"@nuxt-ignis/validation": "0.0.
|
|
47
|
+
"@nuxt-ignis/content": "0.0.67",
|
|
48
|
+
"@nuxt-ignis/db": "0.0.21",
|
|
49
|
+
"@nuxt-ignis/default": "0.0.20",
|
|
50
|
+
"@nuxt-ignis/forms": "0.0.25",
|
|
51
|
+
"@nuxt-ignis/ui": "0.0.20",
|
|
52
|
+
"@nuxt-ignis/utils": "0.0.15",
|
|
53
|
+
"@nuxt-ignis/validation": "0.0.19",
|
|
54
54
|
"@nuxt/eslint": "1.15.2",
|
|
55
55
|
"consola": "3.4.2",
|
|
56
56
|
"cross-env": "^10.1.0",
|
|
57
57
|
"date-fns": "4.1.0",
|
|
58
58
|
"defu": "6.1.7",
|
|
59
|
-
"elrh-cosca": "0.3.
|
|
60
|
-
"nuxt": "4.4.
|
|
61
|
-
"nuxt-spec": "0.2.
|
|
59
|
+
"elrh-cosca": "0.3.6",
|
|
60
|
+
"nuxt": "4.4.7",
|
|
61
|
+
"nuxt-spec": "0.2.3",
|
|
62
62
|
"typescript": "6.0.3",
|
|
63
|
-
"vue": "3.5.
|
|
64
|
-
"vue-router": "5.0
|
|
63
|
+
"vue": "3.5.35",
|
|
64
|
+
"vue-router": "5.1.0"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"analyze": "nuxt analyze",
|
package/public/_nuxt-config.json
CHANGED
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
}
|
|
142
142
|
},
|
|
143
143
|
"app": {
|
|
144
|
-
"buildId": "
|
|
144
|
+
"buildId": "d78242fa-1c7b-44fa-a6bd-7b3795f7e969",
|
|
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/d78242fa-1c7b-44fa-a6bd-7b3795f7e969.json"
|
|
883
883
|
},
|
|
884
884
|
"buildDir": "C:/Git/nuxt-ignis/core/node_modules/.cache/nuxt/.nuxt",
|
|
885
885
|
"_layers": [
|
|
@@ -1056,7 +1056,7 @@
|
|
|
1056
1056
|
}
|
|
1057
1057
|
]
|
|
1058
1058
|
},
|
|
1059
|
-
"compatibilityDate": "2026-
|
|
1059
|
+
"compatibilityDate": "2026-06-01",
|
|
1060
1060
|
"eslint": {
|
|
1061
1061
|
"config": {
|
|
1062
1062
|
"stylistic": true
|
|
@@ -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": "d78242fa-1c7b-44fa-a6bd-7b3795f7e969",
|
|
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": 102.43
|
|
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.46
|
|
1882
1882
|
},
|
|
1883
1883
|
"entryPath": "@nuxt/test-utils/module"
|
|
1884
1884
|
},
|
|
@@ -1889,7 +1889,7 @@
|
|
|
1889
1889
|
"disabled": false
|
|
1890
1890
|
},
|
|
1891
1891
|
"timings": {
|
|
1892
|
-
"setup": 0.
|
|
1892
|
+
"setup": 0.07
|
|
1893
1893
|
},
|
|
1894
1894
|
"entryPath": "C:/Git/nuxt-ignis/core/modules/01-config.ts"
|
|
1895
1895
|
},
|
|
@@ -1916,7 +1916,7 @@
|
|
|
1916
1916
|
"disabled": false
|
|
1917
1917
|
},
|
|
1918
1918
|
"timings": {
|
|
1919
|
-
"setup":
|
|
1919
|
+
"setup": 191.72
|
|
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": 37.99
|
|
1931
1931
|
}
|
|
1932
1932
|
},
|
|
1933
1933
|
{
|
|
@@ -1937,7 +1937,7 @@
|
|
|
1937
1937
|
"disabled": false
|
|
1938
1938
|
},
|
|
1939
1939
|
"timings": {
|
|
1940
|
-
"setup":
|
|
1940
|
+
"setup": 2.06
|
|
1941
1941
|
}
|
|
1942
1942
|
},
|
|
1943
1943
|
{
|
|
@@ -1947,7 +1947,7 @@
|
|
|
1947
1947
|
"disabled": false
|
|
1948
1948
|
},
|
|
1949
1949
|
"timings": {
|
|
1950
|
-
"setup":
|
|
1950
|
+
"setup": 12.77
|
|
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.16
|
|
1961
1961
|
}
|
|
1962
1962
|
},
|
|
1963
1963
|
{
|
|
@@ -1967,7 +1967,7 @@
|
|
|
1967
1967
|
"disabled": false
|
|
1968
1968
|
},
|
|
1969
1969
|
"timings": {
|
|
1970
|
-
"setup": 1.
|
|
1970
|
+
"setup": 1.09
|
|
1971
1971
|
}
|
|
1972
1972
|
},
|
|
1973
1973
|
{
|
|
@@ -1992,7 +1992,7 @@
|
|
|
1992
1992
|
"disabled": false
|
|
1993
1993
|
},
|
|
1994
1994
|
"timings": {
|
|
1995
|
-
"setup": 0.
|
|
1995
|
+
"setup": 0.1
|
|
1996
1996
|
},
|
|
1997
1997
|
"entryPath": "@nuxt/telemetry"
|
|
1998
1998
|
},
|
|
@@ -2000,7 +2000,7 @@
|
|
|
2000
2000
|
"meta": {
|
|
2001
2001
|
"name": "@nuxt-ignis/default",
|
|
2002
2002
|
"configKey": "@nuxt-ignis/default",
|
|
2003
|
-
"version": "0.0.
|
|
2003
|
+
"version": "0.0.20",
|
|
2004
2004
|
"builder": {
|
|
2005
2005
|
"@nuxt/module-builder": "1.0.2",
|
|
2006
2006
|
"unbuild": "3.6.1"
|
|
@@ -2008,7 +2008,7 @@
|
|
|
2008
2008
|
"disabled": false
|
|
2009
2009
|
},
|
|
2010
2010
|
"timings": {
|
|
2011
|
-
"setup": 0.
|
|
2011
|
+
"setup": 0.86
|
|
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.51
|
|
2028
2028
|
},
|
|
2029
2029
|
"entryPath": "@nuxt/fonts"
|
|
2030
2030
|
},
|
|
@@ -2043,7 +2043,7 @@
|
|
|
2043
2043
|
"disabled": false
|
|
2044
2044
|
},
|
|
2045
2045
|
"timings": {
|
|
2046
|
-
"setup":
|
|
2046
|
+
"setup": 1.23
|
|
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": 165.92
|
|
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.54
|
|
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": 1.71
|
|
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.07
|
|
2109
2109
|
},
|
|
2110
2110
|
"entryPath": "@vueuse/nuxt"
|
|
2111
2111
|
},
|
|
@@ -2124,7 +2124,7 @@
|
|
|
2124
2124
|
"disabled": false
|
|
2125
2125
|
},
|
|
2126
2126
|
"timings": {
|
|
2127
|
-
"setup": 0.
|
|
2127
|
+
"setup": 0.55
|
|
2128
2128
|
},
|
|
2129
2129
|
"entryPath": "@pinia/nuxt"
|
|
2130
2130
|
}
|
|
@@ -2407,7 +2407,7 @@
|
|
|
2407
2407
|
}
|
|
2408
2408
|
},
|
|
2409
2409
|
"app": {
|
|
2410
|
-
"buildId": "
|
|
2410
|
+
"buildId": "d78242fa-1c7b-44fa-a6bd-7b3795f7e969",
|
|
2411
2411
|
"baseURL": "/",
|
|
2412
2412
|
"buildAssetsDir": "/_nuxt/",
|
|
2413
2413
|
"cdnURL": ""
|