@dargmuesli/nuxt-vio 1.11.1 → 1.11.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/nuxt.config.ts CHANGED
@@ -41,6 +41,7 @@ export default defineNuxtConfig({
41
41
  runtimeConfig: {
42
42
  public: {
43
43
  googleAnalyticsId: '', // set via environment variable `NUXT_PUBLIC_GOOGLE_ANALYTICS_ID` only
44
+ isTesting: false,
44
45
  ...{
45
46
  siteName: SITE_NAME,
46
47
  siteUrl: BASE_URL,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "1.11.1",
3
+ "version": "1.11.3",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -8,7 +8,7 @@
8
8
  "engines": {
9
9
  "node": "20"
10
10
  },
11
- "packageManager": "pnpm@8.6.3",
11
+ "packageManager": "pnpm@8.6.5",
12
12
  "files": [
13
13
  "assets",
14
14
  "components",
@@ -37,19 +37,19 @@
37
37
  "lint:ts": "nuxt typecheck"
38
38
  },
39
39
  "dependencies": {
40
- "@dargmuesli/nuxt-cookie-control": "5.10.2",
40
+ "@dargmuesli/nuxt-cookie-control": "5.10.3",
41
41
  "@http-util/status-i18n": "0.7.0",
42
- "@nuxtjs/html-validator": "1.4.0",
42
+ "@nuxtjs/html-validator": "1.5.0",
43
43
  "@nuxtjs/i18n": "8.0.0-beta.10",
44
44
  "@nuxtjs/tailwindcss": "6.8.0",
45
45
  "@tailwindcss/typography": "0.5.9",
46
- "nuxt-seo-kit": "1.3.8",
46
+ "nuxt-seo-kit": "1.3.9",
47
47
  "sweetalert2": "11.7.12",
48
48
  "vue-gtag": "2.0.1"
49
49
  },
50
50
  "devDependencies": {
51
- "@commitlint/cli": "17.6.5",
52
- "@commitlint/config-conventional": "17.6.5",
51
+ "@commitlint/cli": "17.6.6",
52
+ "@commitlint/config-conventional": "17.6.6",
53
53
  "@intlify/eslint-plugin-vue-i18n": "3.0.0-beta.1",
54
54
  "@nuxtjs/eslint-config-typescript": "12.0.0",
55
55
  "eslint": "8.43.0",
@@ -58,14 +58,14 @@
58
58
  "eslint-plugin-prettier": "4.2.1",
59
59
  "eslint-plugin-yml": "1.8.0",
60
60
  "husky": "8.0.3",
61
- "lint-staged": "13.2.2",
62
- "nuxt": "3.5.3",
61
+ "lint-staged": "13.2.3",
62
+ "nuxt": "3.6.1",
63
63
  "prettier": "2.8.8",
64
- "stylelint": "15.8.0",
64
+ "stylelint": "15.9.0",
65
65
  "stylelint-config-recommended-vue": "1.4.0",
66
66
  "stylelint-config-standard": "33.0.0",
67
67
  "stylelint-no-unsupported-browser-features": "6.1.0",
68
- "typescript": "5.1.3",
69
- "vue-tsc": "1.8.1"
68
+ "typescript": "5.1.6",
69
+ "vue-tsc": "1.8.3"
70
70
  }
71
71
  }
package/utils/testing.ts DELETED
@@ -1,7 +0,0 @@
1
- export const isTesting = () => process.client && window.Cypress
2
-
3
- declare global {
4
- interface Window {
5
- Cypress: any
6
- }
7
- }