@alexlit/lint-kit 71.1.0 → 71.4.0

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,3 +1,15 @@
1
+ # [71.4.0](https://github.com/alex-lit/lint-kit/compare/v71.3.0...v71.4.0) (2022-06-30)
2
+
3
+
4
+
5
+ # [71.3.0](https://github.com/alex-lit/lint-kit/compare/v71.2.0...v71.3.0) (2022-06-29)
6
+
7
+
8
+
9
+ # [71.2.0](https://github.com/alex-lit/lint-kit/compare/v71.1.0...v71.2.0) (2022-06-22)
10
+
11
+
12
+
1
13
  # [71.1.0](https://github.com/alex-lit/lint-kit/compare/v71.0.0...v71.1.0) (2022-06-20)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "71.1.0",
3
+ "version": "71.4.0",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -63,15 +63,15 @@
63
63
  "version": "./scripts/version.sh"
64
64
  },
65
65
  "dependencies": {
66
- "@alexlit/config-commitlint": "^6.0.2",
67
- "@alexlit/config-eslint": "^47.8.0",
66
+ "@alexlit/config-commitlint": "^6.0.3",
67
+ "@alexlit/config-eslint": "^47.11.0",
68
68
  "@alexlit/config-htmllint": "^0.1.5",
69
- "@alexlit/config-markdownlint": "0.10.1",
69
+ "@alexlit/config-markdownlint": "0.11.0",
70
70
  "@alexlit/config-npmlint": "^3.2.1",
71
- "@alexlit/config-prettier": "^9.1.0",
71
+ "@alexlit/config-prettier": "^9.2.0",
72
72
  "@alexlit/config-stylelint": "^18.0.1",
73
73
  "husky": "^4.3.8",
74
- "lint-staged": "^13.0.2"
74
+ "lint-staged": "^13.0.3"
75
75
  },
76
76
  "devDependencies": {
77
77
  "typescript": "^4.7.4"
@@ -0,0 +1,19 @@
1
+ npm run up && npm run semver patch && npm pu && git push
2
+
3
+ # Update dependencies (latest, newest, greatest, minor, patch)
4
+
5
+ VERSION=${1:-minor}
6
+ YELLOW='\e[33m'
7
+ DEFAULT='\e[39m'
8
+
9
+ echo "Upgrading dependencies to version: ${YELLOW}${VERSION}${DEFAULT}"
10
+
11
+ npm run up
12
+ npm run semver ${VERSION}
13
+
14
+ echo "Pushing updates to: ${YELLOW}npm, git${DEFAULT}"
15
+
16
+ npm pu
17
+ git push
18
+
19
+ echo "Done!"