@alexlit/lint-kit 128.4.0 → 128.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "128.4.0",
3
+ "version": "128.6.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": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "95.11.0",
3
+ "version": "95.12.1",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -41,7 +41,7 @@
41
41
  "@tanstack/eslint-plugin-query": "^5.56.1",
42
42
  "eslint": "^9.10.0",
43
43
  "eslint-config-prettier": "^9.1.0",
44
- "eslint-plugin-jsdoc": "^50.2.3",
44
+ "eslint-plugin-jsdoc": "^50.2.4",
45
45
  "eslint-plugin-perfectionist": "^3.6.0",
46
46
  "eslint-plugin-prettier": "^5.2.1",
47
47
  "eslint-plugin-regexp": "^2.6.0",
@@ -52,7 +52,7 @@
52
52
  "eslint-plugin-vuejs-accessibility": "^2.4.1",
53
53
  "globals": "^15.9.0",
54
54
  "typescript": "^5.6.2",
55
- "typescript-eslint": "^8.5.0"
55
+ "typescript-eslint": "^8.6.0"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=18.18"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-stylelint",
3
- "version": "46.1.1",
3
+ "version": "46.2.0",
4
4
  "private": false,
5
5
  "description": "Stylelint config",
6
6
  "keywords": [
@@ -54,7 +54,7 @@
54
54
  "stylelint-order": "^6.0.4",
55
55
  "stylelint-plugin-logical-css": "^1.2.1",
56
56
  "stylelint-prettier": "^5.0.2",
57
- "stylelint-scss": "^6.6.0",
57
+ "stylelint-scss": "^6.7.0",
58
58
  "stylelint-selector-no-empty": "^1.0.9",
59
59
  "stylelint-use-nesting": "^6.0.0"
60
60
  },
@@ -5,3 +5,5 @@ source "$(dirname $0)"/../bash.config.sh
5
5
  echo -e "${YELLOW}Проверяю editorconfig...${WHITE}"
6
6
 
7
7
  npx editorconfig-checker
8
+
9
+ SAY_GOODBYE
package/scripts/i.sh CHANGED
@@ -5,3 +5,5 @@ source "$(dirname $0)"/../bash.config.sh
5
5
  echo -e "${YELLOW}Устанавливаю зависимости...${WHITE}"
6
6
 
7
7
  pnpm install
8
+
9
+ SAY_GOODBYE
package/scripts/lint.sh CHANGED
@@ -11,3 +11,5 @@ pnpm run lint:htmllint
11
11
  pnpm run lint:markdownlint ${OPTION}
12
12
  pnpm run lint:npmlint
13
13
  pnpm run lint:stylelint ${OPTION}
14
+
15
+ SAY_GOODBYE
@@ -12,4 +12,7 @@ if [ $OPTION ] && [ $OPTION = 'fix' ]; then
12
12
  echo -e "${GREY}autofix:${WHITE} true"
13
13
  fi
14
14
 
15
- stylelint ${FILES} --ignore-path .gitignore --allow-empty-input --${OPTION}
15
+ stylelint ${FILES} \
16
+ --${OPTION} \
17
+ --allow-empty-input \
18
+ --ignore-path .gitignore
package/scripts/ou.sh CHANGED
@@ -6,3 +6,5 @@ echo -e "${YELLOW}Проверяю наличие устаревших паке
6
6
 
7
7
  pnpm outdated \
8
8
  --recursive
9
+
10
+ SAY_GOODBYE
@@ -1 +1,5 @@
1
+ echo -e "${YELLOW}Выполняю preinstal-скрипты... ${WHITE}"
2
+
1
3
  npx only-allow pnpm
4
+
5
+ SAY_GOODBYE
@@ -16,3 +16,5 @@ git push
16
16
 
17
17
  echo -e "${YELLOW}Публикация в ${GREEN}registry.npmjs.org${YELLOW}...${WHITE}"
18
18
  pnpm publish --no-git-checks
19
+
20
+ SAY_GOODBYE
package/scripts/semver.sh CHANGED
@@ -6,7 +6,10 @@ VERSION=${1:-patch} # <major | minor | patch | premajor | preminor | prepatch |
6
6
 
7
7
  echo -e "${YELLOW}Поднимаю ${GREEN}${VERSION}${YELLOW} версию пакета ${GREEN}${CURRENT_PACKAGE_NAME}${YELLOW}...${WHITE}"
8
8
 
9
- changelogen --release --no-commit --${VERSION}
9
+ changelogen \
10
+ --${VERSION} \
11
+ --no-commit \
12
+ --release
10
13
 
11
14
  if [ $CURRENT_PACKAGE_NAME != $MAIN_PACKAGE ]; then
12
15
  rm CHANGELOG.md
@@ -14,3 +17,5 @@ fi
14
17
 
15
18
  git add .
16
19
  git commit -m "chore(${CURRENT_PACKAGE_NAME}): bump version"
20
+
21
+ SAY_GOODBYE
package/scripts/up.sh CHANGED
@@ -16,4 +16,4 @@ echo -e "${YELLOW}Обновляю зависимости...${WHITE}"
16
16
 
17
17
  update
18
18
 
19
- echo -e "${GREEN}Готово! "
19
+ SAY_GOODBYE