@shopbite-de/storefront 1.17.0 → 1.17.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.
@@ -77,7 +77,12 @@ jobs:
77
77
  - name: Install dependencies
78
78
  run: pnpm install --frozen-lockfile
79
79
 
80
+ - name: Set version from release tag
81
+ run: |
82
+ VERSION="${{ github.event.release.tag_name }}"
83
+ pnpm version "${VERSION#v}" --no-git-tag-version
84
+
80
85
  - name: Publish to npm
81
- run: pnpm publish --no-git-checks --access public
86
+ run: pnpm publish --no-git-checks --access public --provenance
82
87
  env:
83
88
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopbite-de/storefront",
3
- "version": "1.17.0",
3
+ "version": "1.17.4",
4
4
  "main": "nuxt.config.ts",
5
5
  "description": "Shopware storefront for food delivery shops",
6
6
  "keywords": [
@@ -10,6 +10,10 @@
10
10
  "vue",
11
11
  "food delivery"
12
12
  ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/shopbite-de/storefront"
16
+ },
13
17
  "author": "@veliu",
14
18
  "license": "MIT",
15
19
  "type": "module",
@@ -57,7 +61,7 @@
57
61
  "eslint": "^10.0.3",
58
62
  "eslint-config-prettier": "^10.1.8",
59
63
  "happy-dom": "^20.8.4",
60
- "jsdom": "^28.1.0",
64
+ "jsdom": "^29.0.0",
61
65
  "playwright-core": "^1.58.2",
62
66
  "prettier": "^3.8.1",
63
67
  "tailwindcss": "^4.2.1",
package/renovate.json CHANGED
@@ -3,10 +3,11 @@
3
3
  "extends": ["config:recommended"],
4
4
  "packageRules": [
5
5
  {
6
- "matchUpdateTypes": ["minor", "patch"],
6
+ "matchUpdateTypes": ["minor", "patch", "lockfileUpdate"],
7
7
  "automerge": true,
8
8
  "automergeType": "pr",
9
- "automergeStrategy": "rebase"
9
+ "automergeStrategy": "rebase",
10
+ "platformAutomerge": true
10
11
  }
11
12
  ]
12
13
  }
@@ -1,21 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(find:*)",
5
- "Bash(grep:*)",
6
- "Bash(pnpm add:*)",
7
- "Bash(pnpm nuxt:*)",
8
- "Bash(ls /home/lirim/workspace/shopbite/storefront/.nuxt/eslint* 2>&1)",
9
- "Bash(pnpm typecheck:*)",
10
- "Bash(git stash:*)",
11
- "Bash(ls node_modules/.bin/vue-tsc 2>&1 && node_modules/.bin/vue-tsc --version 2>&1)",
12
- "Bash(cat /home/lirim/workspace/shopbite/storefront/node_modules/.pnpm/nuxt@4.2.2_*/node_modules/nuxt/package.json 2>/dev/null | python3 -c \"import json,sys; p=json.load\\(sys.stdin\\); deps={**p.get\\('dependencies',{}\\),**p.get\\('devDependencies',{}\\),**p.get\\('peerDependencies',{}\\)}; print\\({k:v for k,v in deps.items\\(\\) if 'tsc' in k or 'volar' in k or 'vue-tsc' in k}\\)\" 2>/dev/null | head -5)",
13
- "Bash(find /home/lirim/workspace/shopbite/storefront/node_modules/.pnpm -path \"*/nuxt@4.2.2*/nuxt/package.json\" 2>/dev/null | head -2 | xargs -I{} python3 -c \"import json,sys; p=json.load\\(open\\('{}',\\)\\); all_deps={**p.get\\('dependencies',{}\\),**p.get\\('devDependencies',{}\\),**p.get\\('optionalDependencies',{}\\)}; [print\\(k,v\\) for k,v in all_deps.items\\(\\) if any\\(x in k for x in ['tsc','volar','typescript']\\)]\" 2>/dev/null)",
14
- "Bash(pnpm run:*)",
15
- "Bash(git log:*)",
16
- "Bash(pnpm test:unit 2>&1 | tail -80)",
17
- "Bash(pnpm test:unit 2>&1 | grep -E \"\\(FAIL|PASS|TypeError|ContextError|error\\)\" | head -30)",
18
- "Bash(pnpm test:unit 2>&1 | tail -30)"
19
- ]
20
- }
21
- }