@planfredapp/eslint-config 1.0.34 → 1.0.42

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.
Files changed (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planfredapp/eslint-config",
3
- "version": "1.0.34",
3
+ "version": "1.0.42",
4
4
  "description": "Shared ESLint configurations for Planfred monorepo",
5
5
  "keywords": [
6
6
  "eslint",
@@ -41,28 +41,28 @@
41
41
  "test": "vitest",
42
42
  "test:run": "vitest run",
43
43
  "upgrade": "git stash; NCU_OUTPUT=$(node --run ncu); if echo \"$NCU_OUTPUT\" | grep -q \"All dependencies match the latest package versions\"; then echo \"No packages to upgrade\"; else npm install; echo \"$NCU_OUTPUT\"; git add .; git commit -m \"Upgrade npm packages: \n\n$NCU_OUTPUT\" || echo \"Commit failed, continuing...\"; git push --force-with-lease; npm run version:patch; fi",
44
- "version:major": "PACKAGE_VERSION=$(npm version major); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION; git push origin main",
45
- "version:minor": "PACKAGE_VERSION=$(npm version minor); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION; git push origin main",
46
- "version:patch": "PACKAGE_VERSION=$(npm version patch); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION; git push origin main"
44
+ "version:major": "npm version major 2>&1 || true; PACKAGE_VERSION=\"v$(node -p \"require('./package.json').version\")\"; echo \"$PACKAGE_VERSION\"; if ! git rev-parse \"$PACKAGE_VERSION\" >/dev/null 2>&1; then git tag \"$PACKAGE_VERSION\"; fi; git push origin \"$PACKAGE_VERSION\" 2>&1 || echo \"Tag already exists on remote, continuing...\"; git push origin main",
45
+ "version:minor": "npm version minor 2>&1 || true; PACKAGE_VERSION=\"v$(node -p \"require('./package.json').version\")\"; echo \"$PACKAGE_VERSION\"; if ! git rev-parse \"$PACKAGE_VERSION\" >/dev/null 2>&1; then git tag \"$PACKAGE_VERSION\"; fi; git push origin \"$PACKAGE_VERSION\" 2>&1 || echo \"Tag already exists on remote, continuing...\"; git push origin main",
46
+ "version:patch": "npm version patch 2>&1 || true; PACKAGE_VERSION=\"v$(node -p \"require('./package.json').version\")\"; echo \"$PACKAGE_VERSION\"; if ! git rev-parse \"$PACKAGE_VERSION\" >/dev/null 2>&1; then git tag \"$PACKAGE_VERSION\"; fi; git push origin \"$PACKAGE_VERSION\" 2>&1 || echo \"Tag already exists on remote, continuing...\"; git push origin main"
47
47
  },
48
48
  "dependencies": {
49
- "@eslint/js": "9.38.0",
50
- "@stylistic/eslint-plugin": "5.5.0",
51
- "@vitest/eslint-plugin": "1.4.0",
49
+ "@eslint/js": "9.39.2",
50
+ "@stylistic/eslint-plugin": "5.6.1",
51
+ "@vitest/eslint-plugin": "1.6.5",
52
52
  "eslint-plugin-cypress": "5.2.0",
53
53
  "eslint-plugin-import": "2.32.0",
54
54
  "eslint-plugin-n": "17.23.1",
55
55
  "eslint-plugin-no-only-tests": "3.3.0",
56
56
  "eslint-plugin-no-relative-import-paths": "1.6.1",
57
57
  "eslint-plugin-promise": "7.2.1",
58
- "eslint-plugin-vue": "10.5.1",
59
- "globals": "16.5.0",
60
- "typescript-eslint": "8.46.2"
58
+ "eslint-plugin-vue": "10.6.2",
59
+ "globals": "17.0.0",
60
+ "typescript-eslint": "8.51.0"
61
61
  },
62
62
  "devDependencies": {
63
- "eslint": "9.38.0",
63
+ "eslint": "9.39.2",
64
64
  "typescript": "5.9.3",
65
- "vitest": "4.0.6",
65
+ "vitest": "4.0.16",
66
66
  "vue-eslint-parser": "10.2.0"
67
67
  },
68
68
  "peerDependencies": {