@planfredapp/eslint-config 1.0.17 → 1.0.26

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 +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planfredapp/eslint-config",
3
- "version": "1.0.17",
3
+ "version": "1.0.26",
4
4
  "description": "Shared ESLint configurations for Planfred monorepo",
5
5
  "keywords": [
6
6
  "eslint",
@@ -40,16 +40,16 @@
40
40
  "release": "npm publish --access public",
41
41
  "test": "vitest",
42
42
  "test:run": "vitest run",
43
- "upgrade": "git stash; NCU_OUTPUT=${node --run ncu}; npm install; echo \"$NCU_OUTPUT\"; git commit -am \"Upgrade npm packages: \n\n$NCU_OUTPUT\"; git push --force-with-lease;",
44
- "version:major": "PACKAGE_VERSION=$(npm version major); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION",
45
- "version:minor": "PACKAGE_VERSION=$(npm version minor); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION",
46
- "version:patch": "PACKAGE_VERSION=$(npm version patch); echo \"$PACKAGE_VERSION\"; git tag $PACKAGE_VERSION; git push origin $PACKAGE_VERSION"
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"
47
47
  },
48
48
  "dependencies": {
49
- "@eslint/js": "9.36.0",
49
+ "@eslint/js": "9.37.0",
50
50
  "@stylistic/eslint-plugin": "5.4.0",
51
- "@vitest/eslint-plugin": "1.3.13",
52
- "eslint-plugin-cypress": "5.1.1",
51
+ "@vitest/eslint-plugin": "1.3.16",
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",
@@ -57,11 +57,11 @@
57
57
  "eslint-plugin-promise": "7.2.1",
58
58
  "eslint-plugin-vue": "10.5.0",
59
59
  "globals": "16.4.0",
60
- "typescript-eslint": "8.44.0"
60
+ "typescript-eslint": "8.45.0"
61
61
  },
62
62
  "devDependencies": {
63
- "eslint": "9.36.0",
64
- "typescript": "5.9.2",
63
+ "eslint": "9.37.0",
64
+ "typescript": "5.9.3",
65
65
  "vitest": "3.2.4",
66
66
  "vue-eslint-parser": "10.2.0"
67
67
  },