@scayle/omnichannel-nuxt 4.0.2 → 4.0.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scayle/omnichannel-nuxt
2
2
 
3
+ ## 4.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Ensure the module meta has the correct package version
8
+
9
+ ## 4.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - We've updated to `nuxt@3.14`
14
+
3
15
  ## 4.0.2
4
16
 
5
17
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@scayle/omnichannel-nuxt",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
+ "configKey": "@scayle/omnichannel-nuxt",
4
5
  "builder": {
5
6
  "@nuxt/module-builder": "0.8.4",
6
- "unbuild": "2.0.0"
7
+ "unbuild": "3.2.0"
7
8
  }
8
9
  }
package/dist/module.mjs CHANGED
@@ -1,7 +1,12 @@
1
1
  import { defineNuxtModule, isNuxt2, createResolver, addServerHandler, addImportsDir } from '@nuxt/kit';
2
2
 
3
+ const PACKAGE_NAME = "@scayle/omnichannel-nuxt";
4
+ const PACKAGE_VERSION = "4.0.4";
3
5
  const module = defineNuxtModule({
4
- meta: {},
6
+ meta: {
7
+ name: PACKAGE_NAME,
8
+ version: PACKAGE_VERSION
9
+ },
5
10
  async setup(moduleOptions, nuxt) {
6
11
  if (isNuxt2()) {
7
12
  throw new Error(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/omnichannel-nuxt",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "description": "Collection of essential utilities to work with omnichannel",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -47,9 +47,10 @@
47
47
  "lint": "eslint . --format gitlab",
48
48
  "lint:fix": "eslint . --fix",
49
49
  "package:lint": "publint",
50
+ "typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
50
51
  "test": "vitest --run --passWithNoTests",
51
52
  "test:watch": "vitest --passWithNoTests",
52
- "test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit"
53
+ "test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
53
54
  },
54
55
  "dependencies": {
55
56
  "@nuxt/kit": "^3.12.2",
@@ -57,22 +58,23 @@
57
58
  "utility-types": "^3.11.0"
58
59
  },
59
60
  "devDependencies": {
60
- "@nuxt/eslint": "0.6.0",
61
+ "@nuxt/eslint": "0.7.4",
61
62
  "@nuxt/module-builder": "0.8.4",
62
- "@nuxt/schema": "3.13.2",
63
- "@scayle/eslint-config-storefront": "4.3.2",
64
- "@types/node": "20.16.11",
65
- "@types/qs": "6.9.16",
66
- "dprint": "0.47.2",
67
- "eslint": "9.12.0",
63
+ "@nuxt/schema": "3.14.1592",
64
+ "@scayle/eslint-config-storefront": "4.4.0",
65
+ "@types/node": "22.10.5",
66
+ "@types/qs": "6.9.17",
67
+ "dprint": "0.48.0",
68
+ "eslint": "9.17.0",
68
69
  "eslint-formatter-gitlab": "5.1.0",
69
70
  "h3": "1.13.0",
70
- "nuxi": "3.14.0",
71
- "nuxt": "3.13.2",
72
- "typescript": "5.6.3",
73
- "vitest": "2.1.3"
71
+ "nuxi": "3.19.1",
72
+ "nuxt": "3.14.1592",
73
+ "typescript": "5.7.3",
74
+ "vitest": "2.1.8",
75
+ "vue-tsc": "2.2.0"
74
76
  },
75
77
  "volta": {
76
- "node": "20.18.0"
78
+ "node": "22.12.0"
77
79
  }
78
80
  }