@dargmuesli/nuxt-vio 4.0.0 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +18 -17
- package/playwright.config.ts +1 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.1",
|
4
4
|
"type": "module",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -30,33 +30,34 @@
|
|
30
30
|
],
|
31
31
|
"main": "nuxt.config.ts",
|
32
32
|
"scripts": {
|
33
|
-
"build": "pnpm build:node",
|
33
|
+
"build": "pnpm run build:node",
|
34
34
|
"build:node": "nuxt build .playground",
|
35
35
|
"build:static": "SITE_URL=http://localhost:3002 nuxt generate .playground",
|
36
|
-
"
|
37
|
-
"
|
36
|
+
"dev": "pnpm run start:dev",
|
37
|
+
"generate": "pnpm run build:static",
|
38
|
+
"lint:fix": "pnpm run lint:js --fix && pnpm run lint:ts --fix && pnpm run lint:style --fix",
|
38
39
|
"lint:js": "eslint --cache --ext .js,.ts,.vue --ignore-path .gitignore .",
|
39
40
|
"lint:staged": "lint-staged",
|
40
41
|
"lint:style": "stylelint --cache \"**/*.{vue,css}\" --ignore-path .gitignore",
|
41
42
|
"lint:ts": "nuxt typecheck",
|
42
|
-
"lint": "pnpm lint:js && pnpm lint:ts && pnpm lint:style",
|
43
|
+
"lint": "pnpm run lint:js && pnpm run lint:ts && pnpm run lint:style",
|
43
44
|
"prepare": "nuxt prepare .playground",
|
44
45
|
"preview": "nuxt preview .playground",
|
45
46
|
"start:dev": "nuxt dev .playground",
|
46
47
|
"start:node": "node .playground/.output/server/index.mjs",
|
47
48
|
"start:static": "serve .playground/.output/public",
|
48
|
-
"test:e2e:docker:br": "pnpm test:e2e:docker:build && pnpm test:e2e:docker:run",
|
49
|
+
"test:e2e:docker:br": "pnpm run test:e2e:docker:build && pnpm run test:e2e:docker:run",
|
49
50
|
"test:e2e:docker:build": "docker build -t test-e2e_base --build-arg UID=$(id -u) --build-arg GID=$(id -g) --target test-e2e_base ..",
|
50
51
|
"test:e2e:docker:run": "docker run --rm -v \"$PWD/..:/srv/app\" -v \"$(pnpm store path):/srv/.pnpm-store\" test-e2e_base",
|
51
|
-
"test:e2e:docker:server:dev:update": "pnpm test:e2e:docker:server:dev --update-snapshots",
|
52
|
-
"test:e2e:docker:server:dev": "pnpm test:e2e:docker:br pnpm --dir src run test:e2e:server:dev",
|
53
|
-
"test:e2e:docker:server:node:update": "pnpm test:e2e:docker:server:node --update-snapshots",
|
54
|
-
"test:e2e:docker:server:node": "pnpm test:e2e:docker:br pnpm --dir src run test:e2e:server:node",
|
55
|
-
"test:e2e:docker:server:static:update": "pnpm test:e2e:docker:server:static --update-snapshots",
|
56
|
-
"test:e2e:docker:server:static": "pnpm test:e2e:docker:br pnpm --dir src run test:e2e:server:static",
|
57
|
-
"test:e2e:server:dev": "cross-env PORT=3000 SITE_URL=http://localhost:3000 VIO_SERVER=dev pnpm test:e2e",
|
58
|
-
"test:e2e:server:node": "cross-env NODE_ENV=production NUXT_PUBLIC_I18N_BASE_URL=http://localhost:3001 NUXT_PUBLIC_SITE_URL=http://localhost:3001 PORT=3001 VIO_SERVER=node pnpm test:e2e",
|
59
|
-
"test:e2e:server:static": "cross-env NODE_ENV=production PORT=3002 SITE_URL=http://localhost:3002 VIO_SERVER=static pnpm test:e2e",
|
52
|
+
"test:e2e:docker:server:dev:update": "pnpm run test:e2e:docker:server:dev --update-snapshots",
|
53
|
+
"test:e2e:docker:server:dev": "pnpm run test:e2e:docker:br pnpm --dir src run test:e2e:server:dev",
|
54
|
+
"test:e2e:docker:server:node:update": "pnpm run test:e2e:docker:server:node --update-snapshots",
|
55
|
+
"test:e2e:docker:server:node": "pnpm run test:e2e:docker:br pnpm --dir src run test:e2e:server:node",
|
56
|
+
"test:e2e:docker:server:static:update": "pnpm run test:e2e:docker:server:static --update-snapshots",
|
57
|
+
"test:e2e:docker:server:static": "pnpm run test:e2e:docker:br pnpm --dir src run test:e2e:server:static",
|
58
|
+
"test:e2e:server:dev": "cross-env PORT=3000 SITE_URL=http://localhost:3000 VIO_SERVER=dev pnpm run test:e2e",
|
59
|
+
"test:e2e:server:node": "cross-env NODE_ENV=production NUXT_PUBLIC_I18N_BASE_URL=http://localhost:3001 NUXT_PUBLIC_SITE_URL=http://localhost:3001 PORT=3001 VIO_SERVER=node pnpm run test:e2e",
|
60
|
+
"test:e2e:server:static": "cross-env NODE_ENV=production PORT=3002 SITE_URL=http://localhost:3002 VIO_SERVER=static pnpm run test:e2e",
|
60
61
|
"test:e2e": "playwright test"
|
61
62
|
},
|
62
63
|
"dependencies": {
|
@@ -68,7 +69,7 @@
|
|
68
69
|
"@nuxtjs/html-validator": "1.5.2",
|
69
70
|
"@nuxtjs/i18n": "8.0.0-rc.4",
|
70
71
|
"@nuxtjs/tailwindcss": "6.8.0",
|
71
|
-
"@nuxtseo/module": "2.0.0-beta.
|
72
|
+
"@nuxtseo/module": "2.0.0-beta.29",
|
72
73
|
"@pinia/nuxt": "0.4.11",
|
73
74
|
"@playwright/test": "1.37.1",
|
74
75
|
"@tailwindcss/forms": "0.5.6",
|
@@ -103,7 +104,7 @@
|
|
103
104
|
"eslint-plugin-compat": "4.2.0",
|
104
105
|
"eslint-plugin-nuxt": "4.0.0",
|
105
106
|
"eslint-plugin-prettier": "5.0.0",
|
106
|
-
"eslint-plugin-yml": "1.
|
107
|
+
"eslint-plugin-yml": "1.9.0",
|
107
108
|
"lint-staged": "14.0.1",
|
108
109
|
"nuxt": "3.7.1",
|
109
110
|
"prettier": "3.0.3",
|