@alexlit/lint-kit 134.1.0 → 134.2.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 +1 -1
- package/packages/config-commitlint/node_modules/.bin/commitlint +4 -4
- package/packages/config-commitlint/node_modules/.bin/conventional-changelog +2 -2
- package/packages/config-commitlint/node_modules/.bin/tsc +4 -4
- package/packages/config-commitlint/node_modules/.bin/tsserver +4 -4
- package/packages/config-commitlint/package.json +2 -1
- package/packages/config-eslint/node_modules/.bin/eslint +2 -2
- package/packages/config-eslint/node_modules/.bin/eslint-config-prettier +2 -2
- package/packages/config-eslint/node_modules/.bin/tsc +4 -4
- package/packages/config-eslint/node_modules/.bin/tsserver +4 -4
- package/packages/config-eslint/package.json +5 -4
- package/packages/config-hooks/node_modules/.bin/husky +2 -2
- package/packages/config-hooks/node_modules/.bin/lint-staged +2 -2
- package/packages/config-hooks/package.json +2 -1
- package/packages/config-htmllint/node_modules/.bin/linthtml +4 -4
- package/packages/config-htmllint/node_modules/.bin/tsc +4 -4
- package/packages/config-htmllint/node_modules/.bin/tsserver +4 -4
- package/packages/config-htmllint/package.json +2 -1
- package/packages/config-markdownlint/node_modules/.bin/markdownlint +2 -2
- package/packages/config-markdownlint/package.json +2 -1
- package/packages/config-npmlint/node_modules/.bin/lockfile-lint +4 -4
- package/packages/config-npmlint/node_modules/.bin/npmPkgJsonLint +4 -4
- package/packages/config-npmlint/node_modules/.bin/tsc +4 -4
- package/packages/config-npmlint/node_modules/.bin/tsserver +4 -4
- package/packages/config-npmlint/package.json +2 -1
- package/packages/config-prettier/node_modules/.bin/prettier +2 -2
- package/packages/config-prettier/package.json +4 -3
- package/packages/config-stylelint/index.js +1 -0
- package/packages/config-stylelint/node_modules/.bin/prettier +2 -2
- package/packages/config-stylelint/node_modules/.bin/stylelint +4 -4
- package/packages/config-stylelint/node_modules/.bin/tsc +4 -4
- package/packages/config-stylelint/node_modules/.bin/tsserver +4 -4
- package/packages/config-stylelint/package.json +2 -1
- package/scripts/check.editorconfig.sh +2 -2
- package/scripts/i.sh +1 -1
- package/scripts/lint.sh +5 -5
- package/scripts/ou.sh +24 -2
- package/scripts/release.sh +2 -2
- package/scripts/up.sh +26 -9
package/package.json
CHANGED
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules/@commitlint/cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules/@commitlint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules/@commitlint/cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules/@commitlint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.6.1_@types+node@22.10.5_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../@commitlint/cli/cli.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../@commitlint/cli/cli.js" "$@"
|
|
17
17
|
fi
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/conventional-changelog-cli@5.0.0_conventional-commits-filter@5.0.0/node_modules/conventional-changelog-cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/conventional-changelog-cli@5.0.0_conventional-commits-filter@5.0.0/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../conventional-changelog-cli/cli.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../conventional-changelog-cli/cli.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -28,9 +28,10 @@
|
|
|
28
28
|
"index.js"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
+
"ou": "../../scripts/ou.sh --local",
|
|
31
32
|
"release": "../../scripts/release.sh",
|
|
32
33
|
"semver": "../../scripts/semver.sh",
|
|
33
|
-
"up": "../../scripts/up.sh"
|
|
34
|
+
"up": "../../scripts/up.sh --local"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {
|
|
36
37
|
"@commitlint/cli": "^19.6.1",
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint@9.17.0_jiti@2.4.2/node_modules/eslint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint@9.17.0_jiti@2.4.2/node_modules/eslint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint@9.17.0_jiti@2.4.2/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
17
|
fi
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@9.17.0_jiti@2.4.2_/node_modules/eslint-config-prettier/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@9.17.0_jiti@2.4.2_/node_modules/eslint-config-prettier/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@9.17.0_jiti@2.4.2_/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../eslint-config-prettier/bin/cli.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../eslint-config-prettier/bin/cli.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "100.1.
|
|
3
|
+
"version": "100.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Eslint config",
|
|
6
6
|
"keywords": [
|
|
@@ -32,16 +32,17 @@
|
|
|
32
32
|
"scripts": {
|
|
33
33
|
"inspect": "npx @eslint/config-inspector@latest",
|
|
34
34
|
"lint": "cd ../../ && ./scripts/lint.eslint.sh",
|
|
35
|
+
"ou": "../../scripts/ou.sh --local",
|
|
35
36
|
"release": "../../scripts/release.sh",
|
|
36
37
|
"semver": "../../scripts/semver.sh",
|
|
37
|
-
"up": "../../scripts/up.sh"
|
|
38
|
+
"up": "../../scripts/up.sh --local"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"@eslint/js": "^9.17.0",
|
|
41
42
|
"@intlify/eslint-plugin-vue-i18n": "^3.2.0",
|
|
42
43
|
"@stylistic/eslint-plugin": "^2.12.1",
|
|
43
44
|
"@tanstack/eslint-plugin-query": "^5.62.16",
|
|
44
|
-
"@unocss/eslint-config": "^0.65.
|
|
45
|
+
"@unocss/eslint-config": "^0.65.4",
|
|
45
46
|
"eslint": "9.17.0",
|
|
46
47
|
"eslint-config-prettier": "^9.1.0",
|
|
47
48
|
"eslint-plugin-jsdoc": "^50.6.1",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"eslint-plugin-vue": "^9.32.0",
|
|
56
57
|
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
57
58
|
"globals": "^15.14.0",
|
|
58
|
-
"typescript": "^5.7.
|
|
59
|
+
"typescript": "^5.7.3",
|
|
59
60
|
"typescript-eslint": "^8.19.1"
|
|
60
61
|
},
|
|
61
62
|
"engines": {
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/husky@9.1.7/node_modules/husky/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/husky@9.1.7/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../husky/bin.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../husky/bin.js" "$@"
|
|
17
17
|
fi
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lint-staged@15.3.0/node_modules/lint-staged/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lint-staged@15.3.0/node_modules/lint-staged/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lint-staged@15.3.0/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../lint-staged/bin/lint-staged.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../lint-staged/bin/lint-staged.js" "$@"
|
|
17
17
|
fi
|
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
"lint-staged.js"
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
|
+
"ou": "../../scripts/ou.sh --local",
|
|
32
33
|
"release": "../../scripts/release.sh",
|
|
33
34
|
"semver": "../../scripts/semver.sh",
|
|
34
|
-
"up": "../../scripts/up.sh"
|
|
35
|
+
"up": "../../scripts/up.sh --local"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"husky": "^9.1.7",
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/linthtml/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/linthtml/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules/@linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.1_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../@linthtml/linthtml/bin/linthtml.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../@linthtml/linthtml/bin/linthtml.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -31,9 +31,10 @@
|
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
33
|
"lint": "cd ../../ && ./scripts/lint.htmllint.sh",
|
|
34
|
+
"ou": "../../scripts/ou.sh --local",
|
|
34
35
|
"release": "../../scripts/release.sh",
|
|
35
36
|
"semver": "../../scripts/semver.sh",
|
|
36
|
-
"up": "../../scripts/up.sh"
|
|
37
|
+
"up": "../../scripts/up.sh --local"
|
|
37
38
|
},
|
|
38
39
|
"dependencies": {
|
|
39
40
|
"@linthtml/linthtml": "^0.10.1",
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/markdownlint-cli@0.43.0/node_modules/markdownlint-cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/markdownlint-cli@0.43.0/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../markdownlint-cli/markdownlint.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../markdownlint-cli/markdownlint.js" "$@"
|
|
17
17
|
fi
|
|
@@ -28,9 +28,10 @@
|
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"lint": "cd ../../ && ./scripts/lint.markdownlint.sh",
|
|
31
|
+
"ou": "../../scripts/ou.sh --local",
|
|
31
32
|
"release": "../../scripts/release.sh",
|
|
32
33
|
"semver": "../../scripts/semver.sh",
|
|
33
|
-
"up": "../../scripts/up.sh"
|
|
34
|
+
"up": "../../scripts/up.sh --local"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {
|
|
36
37
|
"markdownlint": "^0.37.3",
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../lockfile-lint/bin/lockfile-lint.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../lockfile-lint/bin/lockfile-lint.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../npm-package-json-lint/dist/cli.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../npm-package-json-lint/dist/cli.js" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -32,9 +32,10 @@
|
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
34
|
"lint": "cd ../../ && ./scripts/lint.npmlint.sh",
|
|
35
|
+
"ou": "../../scripts/ou.sh --local",
|
|
35
36
|
"release": "../../scripts/release.sh",
|
|
36
37
|
"semver": "../../scripts/semver.sh",
|
|
37
|
-
"up": "../../scripts/up.sh"
|
|
38
|
+
"up": "../../scripts/up.sh --local"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"lockfile-lint": "^4.14.0",
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules/prettier/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules/prettier/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
17
17
|
fi
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "20.1
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "prettier config",
|
|
6
6
|
"keywords": [
|
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
"plugins"
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
|
+
"ou": "../../scripts/ou.sh --local",
|
|
32
33
|
"release": "../../scripts/release.sh",
|
|
33
34
|
"semver": "../../scripts/semver.sh",
|
|
34
|
-
"up": "../../scripts/up.sh"
|
|
35
|
+
"up": "../../scripts/up.sh --local"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"@prettier/plugin-php": "^0.22.2",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"prettier-plugin-packagejson": "^2.5.6",
|
|
45
46
|
"prettier-plugin-sh": "^0.14.0",
|
|
46
47
|
"prettier-plugin-solidity": "^1.4.2",
|
|
47
|
-
"prettier-plugin-sort-json": "^4.
|
|
48
|
+
"prettier-plugin-sort-json": "^4.1.0",
|
|
48
49
|
"prettier-plugin-sql": "^0.18.1",
|
|
49
50
|
"prettier-plugin-tailwindcss": "^0.6.9",
|
|
50
51
|
"radash": "^12.1.0"
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules/prettier/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules/prettier/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/prettier@3.4.2/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules/stylelint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules/stylelint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules/stylelint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules/stylelint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/stylelint@16.12.0_typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir
|
|
14
|
+
exec "$basedir/node" "$basedir/../stylelint/bin/stylelint.mjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir
|
|
16
|
+
exec node "$basedir/../stylelint/bin/stylelint.mjs" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsc" "$@"
|
|
17
17
|
fi
|
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/tsserver" "$@"
|
|
17
17
|
fi
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
32
|
"lint": "cd ../../ && ./scripts/lint.stylelint.sh",
|
|
33
|
+
"ou": "../../scripts/ou.sh --local",
|
|
33
34
|
"release": "../../scripts/release.sh",
|
|
34
35
|
"semver": "../../scripts/semver.sh",
|
|
35
|
-
"up": "../../scripts/up.sh"
|
|
36
|
+
"up": "../../scripts/up.sh --local"
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"@double-great/stylelint-a11y": "^3.0.2",
|
package/scripts/i.sh
CHANGED
package/scripts/lint.sh
CHANGED
|
@@ -6,10 +6,10 @@ OPTION=${1}
|
|
|
6
6
|
|
|
7
7
|
echo -e "${YELLOW}Запускаю линтеры: ${GREEN}eslint, htmllint, markdownlint, npmlint, stylelint...${WHITE}"
|
|
8
8
|
|
|
9
|
-
pnpm run lint:eslint ${OPTION}
|
|
10
|
-
pnpm run lint:htmllint
|
|
11
|
-
pnpm run lint:markdownlint ${OPTION}
|
|
12
|
-
pnpm run lint:npmlint
|
|
13
|
-
pnpm run lint:stylelint ${OPTION}
|
|
9
|
+
npx pnpm run lint:eslint ${OPTION}
|
|
10
|
+
npx pnpm run lint:htmllint
|
|
11
|
+
npx pnpm run lint:markdownlint ${OPTION}
|
|
12
|
+
npx pnpm run lint:npmlint
|
|
13
|
+
npx pnpm run lint:stylelint ${OPTION}
|
|
14
14
|
|
|
15
15
|
SAY_GOODBYE
|
package/scripts/ou.sh
CHANGED
|
@@ -4,7 +4,29 @@ source "$(dirname $0)"/../bash.config.sh
|
|
|
4
4
|
|
|
5
5
|
echo -e "${YELLOW}Проверяю наличие устаревших пакетов...${WHITE}"
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
# Инициализация переменных
|
|
8
|
+
local_mode=false
|
|
9
|
+
|
|
10
|
+
# Обработка флагов
|
|
11
|
+
while [[ "$#" -gt 0 ]]; do
|
|
12
|
+
case $1 in
|
|
13
|
+
--local | -l) local_mode=true ;;
|
|
14
|
+
*)
|
|
15
|
+
echo "Неизвестный флаг: $1"
|
|
16
|
+
exit 1
|
|
17
|
+
;;
|
|
18
|
+
esac
|
|
19
|
+
shift
|
|
20
|
+
done
|
|
21
|
+
|
|
22
|
+
# Вывод результатов
|
|
23
|
+
if $local_mode; then
|
|
24
|
+
echo -e "${GREY}Режим проверки: ${WHITE}локальный${WHITE}"
|
|
25
|
+
npx pnpm outdated
|
|
26
|
+
else
|
|
27
|
+
echo -e "${GREY}Режим проверки: ${WHITE}глобальный${WHITE}"
|
|
28
|
+
npx pnpm outdated \
|
|
29
|
+
--recursive
|
|
30
|
+
fi
|
|
9
31
|
|
|
10
32
|
SAY_GOODBYE
|
package/scripts/release.sh
CHANGED
|
@@ -4,7 +4,7 @@ source "$(dirname $0)"/../bash.config.sh
|
|
|
4
4
|
|
|
5
5
|
VERSION=${1:-patch} # patch | minor | major
|
|
6
6
|
|
|
7
|
-
pnpm run semver ${VERSION}
|
|
7
|
+
npx pnpm run semver ${VERSION}
|
|
8
8
|
|
|
9
9
|
CURRENT_PACKAGE_NAME=$(node -p "require('./package.json').name")
|
|
10
10
|
CURRENT_PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
|
@@ -15,6 +15,6 @@ echo -e "${YELLOW}Коммит в ${GREEN}git${YELLOW}...${WHITE}"
|
|
|
15
15
|
git push
|
|
16
16
|
|
|
17
17
|
echo -e "${YELLOW}Публикация в ${GREEN}registry.npmjs.org${YELLOW}...${WHITE}"
|
|
18
|
-
pnpm publish --no-git-checks
|
|
18
|
+
npx pnpm publish --no-git-checks
|
|
19
19
|
|
|
20
20
|
SAY_GOODBYE
|
package/scripts/up.sh
CHANGED
|
@@ -2,18 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
source "$(dirname $0)"/../bash.config.sh
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
echo -e "${YELLOW}Обновляю зависимости...${WHITE}"
|
|
6
|
+
|
|
7
|
+
# Инициализация переменных
|
|
8
|
+
local_mode=false
|
|
9
|
+
|
|
10
|
+
# Обработка флагов
|
|
11
|
+
while [[ "$#" -gt 0 ]]; do
|
|
12
|
+
case $1 in
|
|
13
|
+
--local | -l) local_mode=true ;;
|
|
14
|
+
*)
|
|
15
|
+
echo "Неизвестный флаг: $1"
|
|
16
|
+
exit 1
|
|
17
|
+
;;
|
|
18
|
+
esac
|
|
19
|
+
shift
|
|
20
|
+
done
|
|
21
|
+
|
|
22
|
+
# Вывод результатов
|
|
23
|
+
if $local_mode; then
|
|
24
|
+
echo -e "${GREY}Режим проверки: ${WHITE}локальный${WHITE}"
|
|
25
|
+
npx pnpm update \
|
|
26
|
+
--interactive \
|
|
27
|
+
--latest
|
|
28
|
+
else
|
|
29
|
+
echo -e "${GREY}Режим проверки: ${WHITE}глобальный${WHITE}"
|
|
7
30
|
npx pnpm update \
|
|
8
31
|
--interactive \
|
|
9
32
|
--latest \
|
|
10
33
|
--recursive
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
# Подготавливает зависимости для начала работы
|
|
14
|
-
|
|
15
|
-
echo -e "${YELLOW}Обновляю зависимости...${WHITE}"
|
|
16
|
-
|
|
17
|
-
update
|
|
34
|
+
fi
|
|
18
35
|
|
|
19
36
|
SAY_GOODBYE
|