@scayle/storefront-nuxt 7.64.0 → 7.64.1

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,14 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.64.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Format code with dprint
8
+ - Updated dependencies
9
+ - @scayle/unstorage-compression-driver@0.1.3
10
+ - @scayle/h3-session@0.3.6
11
+
3
12
  ## 7.64.0
4
13
 
5
14
  ### Minor Changes
@@ -14,8 +23,8 @@
14
23
 
15
24
  ```ts
16
25
  const { data: externalIDPRedirects } = await useIDP({
17
- queryParams: { redirectTo: '/account' },
18
- })
26
+ queryParams: { redirectTo: "/account" },
27
+ });
19
28
  ```
20
29
 
21
30
  Please note that `code` and `state` are not supported as these are used by the SCAYLE Authentication API.
@@ -434,16 +443,16 @@ There is an `unwrap` function exported by this package (>=7.55.0) that can be us
434
443
  Before:
435
444
 
436
445
  ```typescript
437
- toCurrency(100, { currency: 'EUR' })
438
- formatPrice(100, { currencyFractionDigits: 2 })
446
+ toCurrency(100, { currency: "EUR" });
447
+ formatPrice(100, { currencyFractionDigits: 2 });
439
448
  ```
440
449
 
441
450
  After:
442
451
 
443
452
  ```typescript
444
- const { formatCurrency } = useFormatHelpers()
445
- formatCurrency(100, { currency: 'EUR' })
446
- formatCurrency(100, { style: 'decimal', currencyFractionDigits: 2 })
453
+ const { formatCurrency } = useFormatHelpers();
454
+ formatCurrency(100, { currency: "EUR" });
455
+ formatCurrency(100, { style: "decimal", currencyFractionDigits: 2 });
447
456
  ```
448
457
 
449
458
  ## 7.44.1
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.9.0"
6
6
  },
7
- "version": "7.63.0"
7
+ "version": "7.64.0"
8
8
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "7.64.0",
4
+ "version": "7.64.1",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -49,8 +49,8 @@
49
49
  "dev": "nuxi dev playground",
50
50
  "dev:build": "nuxi build playground",
51
51
  "prep": "nuxi prepare playground",
52
- "format": "prettier --ignore-unknown --log-level warn --check .",
53
- "format:fix": "prettier --ignore-unknown --log-level warn --write .",
52
+ "format": "dprint check",
53
+ "format:fix": "dprint fmt",
54
54
  "lint": "eslint . --format gitlab",
55
55
  "lint:fix": "eslint . --fix",
56
56
  "typecheck": "vue-tsc --noEmit -p tsconfig.check.json",
@@ -61,9 +61,9 @@
61
61
  },
62
62
  "dependencies": {
63
63
  "@nuxt/kit": "3.11.1",
64
- "@scayle/h3-session": "0.3.5",
64
+ "@scayle/h3-session": "0.3.6",
65
65
  "@scayle/storefront-core": "7.48.0",
66
- "@scayle/unstorage-compression-driver": "0.1.2",
66
+ "@scayle/unstorage-compression-driver": "0.1.3",
67
67
  "@vueuse/core": "10.9.0",
68
68
  "consola": "3.2.3",
69
69
  "core-js": "3.36.1",
@@ -82,16 +82,15 @@
82
82
  "@nuxt/module-builder": "0.5.5",
83
83
  "@nuxt/schema": "3.11.1",
84
84
  "@nuxt/test-utils": "3.12.0",
85
- "@scayle/eslint-config-storefront": "3.2.6",
85
+ "@scayle/eslint-config-storefront": "3.2.7",
86
86
  "@scayle/eslint-plugin-vue-composable": "0.1.1",
87
- "@scayle/prettier-config-storefront": "2.0.2",
88
- "@types/node": "20.12.5",
87
+ "@types/node": "20.12.6",
88
+ "dprint": "0.45.1",
89
89
  "eslint": "8.57.0",
90
90
  "eslint-formatter-gitlab": "5.1.0",
91
91
  "h3": "1.11.1",
92
92
  "node-mocks-http": "1.14.1",
93
93
  "nuxt": "3.11.1",
94
- "prettier": "3.0.0",
95
94
  "publint": "0.2.7",
96
95
  "vitest": "1.4.0",
97
96
  "vue-tsc": "2.0.11"