skyltmax_config 2.0.0 → 3.0.0.beta.1
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.
- checksums.yaml +4 -4
- data/.devcontainer/boot.sh +7 -46
- data/.devcontainer/docker-compose.yml +1 -1
- data/CHANGELOG.md +2 -0
- data/Gemfile.lock +5 -5
- data/fixture/package.json +1 -1
- data/fixture/pnpm-lock.yaml +98 -98
- data/lib/skyltmax_config/version.rb +1 -1
- data/package.json +6 -6
- data/pnpm-lock.yaml +172 -180
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f551fa54ae3fc20ceb290e8336375723845f8243bf876d6f554e892a5ffc3d96
|
|
4
|
+
data.tar.gz: a284c72546620297c153039a6e10e0e3a19413b78395ddacc05a2fc19bc87a16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c317fdf35669ae761443b9f6a308d9a7f711008f767327583f01274604d29d6ee03e14121c7841b8c79ab1dad5ea53d6825590634a3457cea0cd48bd1d99506
|
|
7
|
+
data.tar.gz: 288ffb81e61a897ab46263c26f0cf2cf7242f66f7fbc3e7aded273f457d119967743b7ca9f36fd9d594990170fef8fe2123054be7cef4e606485053e28fc0c15
|
data/.devcontainer/boot.sh
CHANGED
|
@@ -2,54 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
set -eo pipefail
|
|
4
4
|
|
|
5
|
-
function bootcmd() {
|
|
6
|
-
printf "\n"
|
|
7
|
-
toilet -f term -t -F border:metal "$1"
|
|
8
|
-
printf "+ $2\n"
|
|
9
|
-
}
|
|
10
|
-
|
|
11
5
|
MARKER_FILE=".devcontainer/.bootdone"
|
|
12
6
|
|
|
13
7
|
if [ -f "${MARKER_FILE}" ]; then
|
|
14
8
|
source "${MARKER_FILE}"
|
|
15
9
|
fi
|
|
16
10
|
|
|
17
|
-
# Per-user shared volume (skyltmax-dc template), reachable at the same path as on the host.
|
|
18
|
-
if [ -d "/home/$HOSTLOGNAME/shared" ]; then
|
|
19
|
-
ln -sfn "/home/$HOSTLOGNAME/shared" /home/vscode/shared
|
|
20
|
-
fi
|
|
21
|
-
|
|
22
|
-
if [ -d "/home/$HOSTLOGNAME/.config" ]; then
|
|
23
|
-
sudo chown -R vscode:vscode /home/$HOSTLOGNAME/.config
|
|
24
|
-
fi
|
|
25
|
-
|
|
26
|
-
# Commit signing config written by the Coder template on the workspace host (home.sh in
|
|
27
|
-
# skyltmax/infra); the key path inside it resolves in-container through the host-home bind.
|
|
28
|
-
# Inert when absent — git skips missing [include] paths (the dotfiles .gitconfig carries the include).
|
|
29
|
-
if [ -f "/home/$HOSTLOGNAME/.config/git/coder-signing" ]; then
|
|
30
|
-
mkdir -p /home/vscode/.config/git
|
|
31
|
-
cp "/home/$HOSTLOGNAME/.config/git/coder-signing" /home/vscode/.config/git/coder-signing
|
|
32
|
-
fi
|
|
33
|
-
|
|
34
11
|
sudo chown -R vscode:vscode .ruby-lsp
|
|
35
12
|
sudo chown -R vscode:vscode /usr/local/bundle
|
|
36
13
|
|
|
37
14
|
git config --global --add safe.directory $DEVC_WORKSPACE
|
|
38
15
|
|
|
39
|
-
#
|
|
40
|
-
|
|
41
|
-
# dependency resolves from the public registry.
|
|
42
|
-
if [ -f "/home/$HOSTLOGNAME/.npmrc" ]; then
|
|
43
|
-
cp "/home/$HOSTLOGNAME/.npmrc" "${DEVC_WORKSPACE}/.npmrc"
|
|
44
|
-
fi
|
|
45
|
-
|
|
46
|
-
# Both halves of this repo get set up: the gem and the @signmax/config package.
|
|
47
|
-
if [ "${PNPM_ALREADY_INSTALLED_1}" != "true" ]; then
|
|
16
|
+
# node_modules outlives the image, so modules built against the previous major have to go.
|
|
17
|
+
if [ "${PNPM_ALREADY_RESET_1}" != "true" ]; then
|
|
48
18
|
rm -rf $DEVC_WORKSPACE/node_modules
|
|
49
|
-
bootcmd "Installing NPM packages" "pnpm install"
|
|
50
|
-
pnpm install
|
|
51
19
|
|
|
52
|
-
|
|
20
|
+
PNPM_ALREADY_RESET_1="true"
|
|
53
21
|
fi
|
|
54
22
|
|
|
55
23
|
# The bundle volume outlives the image, so gems built against the previous Ruby have to go.
|
|
@@ -60,27 +28,20 @@ if [ "${GEMS_ALREADY_RESET_1}" != "true" ]; then
|
|
|
60
28
|
GEMS_ALREADY_RESET_1="true"
|
|
61
29
|
fi
|
|
62
30
|
|
|
63
|
-
if [ "${
|
|
64
|
-
bootcmd "Installing gems" "bundle install"
|
|
65
|
-
bundle install
|
|
66
|
-
BUNDLE_ALREADY_INSTALLED_2="true"
|
|
67
|
-
fi
|
|
68
|
-
|
|
69
|
-
if [ "${CHANGELOG_DISPLAYED_7}" != "true" ]; then
|
|
31
|
+
if [ "${CHANGELOG_DISPLAYED_35}" != "true" ]; then
|
|
70
32
|
if [ -f "/var/lib/smdevc/changelog" ]; then
|
|
71
33
|
printf "\n"
|
|
72
34
|
toilet -f term -t -F border:metal "Latest Changes"
|
|
73
35
|
cat /var/lib/smdevc/changelog
|
|
74
36
|
fi
|
|
75
37
|
|
|
76
|
-
|
|
38
|
+
CHANGELOG_DISPLAYED_35="true"
|
|
77
39
|
fi
|
|
78
40
|
|
|
79
41
|
echo -e "\
|
|
80
42
|
GEMS_ALREADY_RESET_1=${GEMS_ALREADY_RESET_1}\n\
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
CHANGELOG_DISPLAYED_7=${CHANGELOG_DISPLAYED_7}" > "${MARKER_FILE}"
|
|
43
|
+
PNPM_ALREADY_RESET_1=${PNPM_ALREADY_RESET_1}\n\
|
|
44
|
+
CHANGELOG_DISPLAYED_35=${CHANGELOG_DISPLAYED_35}" > "${MARKER_FILE}"
|
|
84
45
|
|
|
85
46
|
printf "\n\n\e[38;2;252;163;17m"
|
|
86
47
|
toilet -f standard "Config"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
services:
|
|
2
2
|
app:
|
|
3
|
-
image: harbor.signmax.cloud/public/devcontainer:
|
|
3
|
+
image: harbor.signmax.cloud/public/devcontainer:35@sha256:c2c72d7655656ce2f6eae44047526f0fb8774115aab4d2907f78e28000c69611
|
|
4
4
|
volumes:
|
|
5
5
|
- ..:/workspaces/config:cached
|
|
6
6
|
shm_size: "1gb"
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
skyltmax_config (
|
|
4
|
+
skyltmax_config (3.0.0.beta.1)
|
|
5
5
|
rubocop (>= 1.84.2, < 2)
|
|
6
6
|
rubocop-performance (>= 1.26.0, < 2)
|
|
7
7
|
rubocop-rails (>= 2.33.0, < 3)
|
|
@@ -61,15 +61,15 @@ GEM
|
|
|
61
61
|
rubocop-ast (1.50.0)
|
|
62
62
|
parser (>= 3.3.7.2)
|
|
63
63
|
prism (~> 1.7)
|
|
64
|
-
rubocop-performance (1.
|
|
64
|
+
rubocop-performance (1.27.0)
|
|
65
65
|
lint_roller (~> 1.1)
|
|
66
|
-
rubocop (>= 1.
|
|
66
|
+
rubocop (>= 1.89.0, < 2.0)
|
|
67
67
|
rubocop-ast (>= 1.47.1, < 2.0)
|
|
68
|
-
rubocop-rails (2.
|
|
68
|
+
rubocop-rails (2.37.0)
|
|
69
69
|
activesupport (>= 4.2.0)
|
|
70
70
|
lint_roller (~> 1.1)
|
|
71
71
|
rack (>= 1.1)
|
|
72
|
-
rubocop (>= 1.
|
|
72
|
+
rubocop (>= 1.89.0, < 2.0)
|
|
73
73
|
rubocop-ast (>= 1.44.0, < 2.0)
|
|
74
74
|
ruby-progressbar (1.13.0)
|
|
75
75
|
securerandom (0.4.1)
|
data/fixture/package.json
CHANGED
data/fixture/pnpm-lock.yaml
CHANGED
|
@@ -10,7 +10,7 @@ importers:
|
|
|
10
10
|
devDependencies:
|
|
11
11
|
'@signmax/config':
|
|
12
12
|
specifier: file:..
|
|
13
|
-
version: file:..(@typescript-eslint/eslint-plugin@8.
|
|
13
|
+
version: file:..(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(prettier@3.9.6)(typescript@6.0.3)
|
|
14
14
|
eslint:
|
|
15
15
|
specifier: 10.8.1
|
|
16
16
|
version: 10.8.1
|
|
@@ -174,12 +174,12 @@ packages:
|
|
|
174
174
|
'@jridgewell/trace-mapping@0.3.31':
|
|
175
175
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
176
176
|
|
|
177
|
-
'@napi-rs/wasm-runtime@1.2.
|
|
178
|
-
resolution: {integrity: sha512-
|
|
177
|
+
'@napi-rs/wasm-runtime@1.2.3':
|
|
178
|
+
resolution: {integrity: sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==}
|
|
179
179
|
engines: {node: ^20.19.0 || ^22.13.0 || >=23.5.0}
|
|
180
180
|
peerDependencies:
|
|
181
|
-
'@emnapi/core': ^1.7.1 || ^2.0.0-alpha.
|
|
182
|
-
'@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.
|
|
181
|
+
'@emnapi/core': ^1.7.1 || ^2.0.0-alpha.4
|
|
182
|
+
'@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.4
|
|
183
183
|
|
|
184
184
|
'@pkgr/core@0.3.6':
|
|
185
185
|
resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==}
|
|
@@ -208,63 +208,63 @@ packages:
|
|
|
208
208
|
'@types/json-schema@7.0.15':
|
|
209
209
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
210
210
|
|
|
211
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
212
|
-
resolution: {integrity: sha512-
|
|
211
|
+
'@typescript-eslint/eslint-plugin@8.67.0':
|
|
212
|
+
resolution: {integrity: sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==}
|
|
213
213
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
214
214
|
peerDependencies:
|
|
215
|
-
'@typescript-eslint/parser': ^8.
|
|
215
|
+
'@typescript-eslint/parser': ^8.67.0
|
|
216
216
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
217
217
|
typescript: '>=4.8.4 <6.1.0'
|
|
218
218
|
|
|
219
|
-
'@typescript-eslint/parser@8.
|
|
220
|
-
resolution: {integrity: sha512-
|
|
219
|
+
'@typescript-eslint/parser@8.67.0':
|
|
220
|
+
resolution: {integrity: sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==}
|
|
221
221
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
222
222
|
peerDependencies:
|
|
223
223
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
224
224
|
typescript: '>=4.8.4 <6.1.0'
|
|
225
225
|
|
|
226
|
-
'@typescript-eslint/project-service@8.
|
|
227
|
-
resolution: {integrity: sha512-
|
|
226
|
+
'@typescript-eslint/project-service@8.67.0':
|
|
227
|
+
resolution: {integrity: sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==}
|
|
228
228
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
229
229
|
peerDependencies:
|
|
230
230
|
typescript: '>=4.8.4 <6.1.0'
|
|
231
231
|
|
|
232
|
-
'@typescript-eslint/scope-manager@8.
|
|
233
|
-
resolution: {integrity: sha512-
|
|
232
|
+
'@typescript-eslint/scope-manager@8.67.0':
|
|
233
|
+
resolution: {integrity: sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==}
|
|
234
234
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
235
235
|
|
|
236
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
237
|
-
resolution: {integrity: sha512-
|
|
236
|
+
'@typescript-eslint/tsconfig-utils@8.67.0':
|
|
237
|
+
resolution: {integrity: sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==}
|
|
238
238
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
239
239
|
peerDependencies:
|
|
240
240
|
typescript: '>=4.8.4 <6.1.0'
|
|
241
241
|
|
|
242
|
-
'@typescript-eslint/type-utils@8.
|
|
243
|
-
resolution: {integrity: sha512-
|
|
242
|
+
'@typescript-eslint/type-utils@8.67.0':
|
|
243
|
+
resolution: {integrity: sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==}
|
|
244
244
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
245
245
|
peerDependencies:
|
|
246
246
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
247
247
|
typescript: '>=4.8.4 <6.1.0'
|
|
248
248
|
|
|
249
|
-
'@typescript-eslint/types@8.
|
|
250
|
-
resolution: {integrity: sha512-
|
|
249
|
+
'@typescript-eslint/types@8.67.0':
|
|
250
|
+
resolution: {integrity: sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==}
|
|
251
251
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
252
252
|
|
|
253
|
-
'@typescript-eslint/typescript-estree@8.
|
|
254
|
-
resolution: {integrity: sha512-
|
|
253
|
+
'@typescript-eslint/typescript-estree@8.67.0':
|
|
254
|
+
resolution: {integrity: sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==}
|
|
255
255
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
256
256
|
peerDependencies:
|
|
257
257
|
typescript: '>=4.8.4 <6.1.0'
|
|
258
258
|
|
|
259
|
-
'@typescript-eslint/utils@8.
|
|
260
|
-
resolution: {integrity: sha512-
|
|
259
|
+
'@typescript-eslint/utils@8.67.0':
|
|
260
|
+
resolution: {integrity: sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==}
|
|
261
261
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
262
262
|
peerDependencies:
|
|
263
263
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
264
264
|
typescript: '>=4.8.4 <6.1.0'
|
|
265
265
|
|
|
266
|
-
'@typescript-eslint/visitor-keys@8.
|
|
267
|
-
resolution: {integrity: sha512-
|
|
266
|
+
'@typescript-eslint/visitor-keys@8.67.0':
|
|
267
|
+
resolution: {integrity: sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==}
|
|
268
268
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
269
269
|
|
|
270
270
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
|
@@ -474,8 +474,8 @@ packages:
|
|
|
474
474
|
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
475
475
|
engines: {node: 18 || 20 || >=22}
|
|
476
476
|
|
|
477
|
-
baseline-browser-mapping@2.11.
|
|
478
|
-
resolution: {integrity: sha512-
|
|
477
|
+
baseline-browser-mapping@2.11.14:
|
|
478
|
+
resolution: {integrity: sha512-JyJ954WzuIR8/FFzX0o5krdSTrBAkcCSRfWSleRsIHSWV+cZe2FI1PKggVkFke1hBldRs+LRxUczzE9iPmgZww==}
|
|
479
479
|
engines: {node: '>=6.0.0'}
|
|
480
480
|
hasBin: true
|
|
481
481
|
|
|
@@ -563,8 +563,8 @@ packages:
|
|
|
563
563
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
564
564
|
engines: {node: '>= 0.4'}
|
|
565
565
|
|
|
566
|
-
electron-to-chromium@1.5.
|
|
567
|
-
resolution: {integrity: sha512-
|
|
566
|
+
electron-to-chromium@1.5.406:
|
|
567
|
+
resolution: {integrity: sha512-hWH5ORBi3d0IipnMh7BN5GDTaAmrSSSWmznwt2zltdiRNEWoEQyTwF0FFSBxzHO7hLSRT6loQu3IQGV0wg/Tvg==}
|
|
568
568
|
|
|
569
569
|
emoji-regex@9.2.2:
|
|
570
570
|
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
|
@@ -801,15 +801,15 @@ packages:
|
|
|
801
801
|
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
|
|
802
802
|
engines: {node: '>= 0.4'}
|
|
803
803
|
|
|
804
|
-
get-tsconfig@4.14.
|
|
805
|
-
resolution: {integrity: sha512-
|
|
804
|
+
get-tsconfig@4.14.2:
|
|
805
|
+
resolution: {integrity: sha512-XpwZALwwl/BaKTAyC6+c5T8y6kCg2jk+XGqOVrKIQmW49pNypYLMRjCUXqa28tQgJlhS2RlzP7sc+Rx7W6qsfw==}
|
|
806
806
|
|
|
807
807
|
glob-parent@6.0.2:
|
|
808
808
|
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
809
809
|
engines: {node: '>=10.13.0'}
|
|
810
810
|
|
|
811
|
-
globals@17.
|
|
812
|
-
resolution: {integrity: sha512-
|
|
811
|
+
globals@17.11.0:
|
|
812
|
+
resolution: {integrity: sha512-Z2I8hM+PbJDXQDq3Icgpzv+mPdwr68iZUU9d5WW4FuXfDUQfkZaZuvjMv42/5crNyw154+9+VWXbYrUgDXbxNw==}
|
|
813
813
|
engines: {node: '>=18'}
|
|
814
814
|
|
|
815
815
|
globalthis@1.0.4:
|
|
@@ -1354,8 +1354,8 @@ packages:
|
|
|
1354
1354
|
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
|
1355
1355
|
engines: {node: '>= 0.4'}
|
|
1356
1356
|
|
|
1357
|
-
typescript-eslint@8.
|
|
1358
|
-
resolution: {integrity: sha512-
|
|
1357
|
+
typescript-eslint@8.67.0:
|
|
1358
|
+
resolution: {integrity: sha512-S2udFs8tCKEKffuJ4TB1idGUZiXdCPGi3IPBGWXarbLQ5UPXORV8QEVzJ4gCRduURMb5EkpNCdjbk0eDIuI8Yg==}
|
|
1359
1359
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1360
1360
|
peerDependencies:
|
|
1361
1361
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -1610,7 +1610,7 @@ snapshots:
|
|
|
1610
1610
|
'@jridgewell/resolve-uri': 3.1.2
|
|
1611
1611
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1612
1612
|
|
|
1613
|
-
'@napi-rs/wasm-runtime@1.2.
|
|
1613
|
+
'@napi-rs/wasm-runtime@1.2.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
|
1614
1614
|
dependencies:
|
|
1615
1615
|
'@emnapi/core': 1.10.0
|
|
1616
1616
|
'@emnapi/runtime': 1.10.0
|
|
@@ -1619,26 +1619,26 @@ snapshots:
|
|
|
1619
1619
|
|
|
1620
1620
|
'@pkgr/core@0.3.6': {}
|
|
1621
1621
|
|
|
1622
|
-
'@signmax/config@file:..(@typescript-eslint/eslint-plugin@8.
|
|
1622
|
+
'@signmax/config@file:..(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(prettier@3.9.6)(typescript@6.0.3)':
|
|
1623
1623
|
dependencies:
|
|
1624
1624
|
'@eslint/js': 10.0.1(eslint@10.8.1)
|
|
1625
1625
|
'@total-typescript/ts-reset': 0.6.1
|
|
1626
|
-
'@vitest/eslint-plugin': 1.6.27(@typescript-eslint/eslint-plugin@8.
|
|
1626
|
+
'@vitest/eslint-plugin': 1.6.27(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)
|
|
1627
1627
|
eslint: 10.8.1
|
|
1628
1628
|
eslint-config-prettier: 10.1.8(eslint@10.8.1)
|
|
1629
|
-
eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.
|
|
1629
|
+
eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)
|
|
1630
1630
|
eslint-plugin-jest-dom: 5.10.1(eslint@10.8.1)
|
|
1631
1631
|
eslint-plugin-jsx-a11y: 6.10.2(eslint@10.8.1)
|
|
1632
1632
|
eslint-plugin-prettier: 5.5.6(eslint-config-prettier@10.1.8(eslint@10.8.1))(eslint@10.8.1)(prettier@3.9.6)
|
|
1633
1633
|
eslint-plugin-react: 7.37.5(eslint@10.8.1)
|
|
1634
1634
|
eslint-plugin-react-hooks: 7.1.1(eslint@10.8.1)
|
|
1635
1635
|
eslint-plugin-testing-library: 7.16.2(eslint@10.8.1)(typescript@6.0.3)
|
|
1636
|
-
globals: 17.
|
|
1636
|
+
globals: 17.11.0
|
|
1637
1637
|
prettier: 3.9.6
|
|
1638
1638
|
prettier-plugin-ignored: 1.0.0(prettier@3.9.6)
|
|
1639
1639
|
prettier-plugin-tailwindcss: 0.8.1(prettier@3.9.6)
|
|
1640
1640
|
typescript: 6.0.3
|
|
1641
|
-
typescript-eslint: 8.
|
|
1641
|
+
typescript-eslint: 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1642
1642
|
transitivePeerDependencies:
|
|
1643
1643
|
- '@ianvs/prettier-plugin-sort-imports'
|
|
1644
1644
|
- '@prettier/plugin-hermes'
|
|
@@ -1677,14 +1677,14 @@ snapshots:
|
|
|
1677
1677
|
|
|
1678
1678
|
'@types/json-schema@7.0.15': {}
|
|
1679
1679
|
|
|
1680
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
1680
|
+
'@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)':
|
|
1681
1681
|
dependencies:
|
|
1682
1682
|
'@eslint-community/regexpp': 4.12.2
|
|
1683
|
-
'@typescript-eslint/parser': 8.
|
|
1684
|
-
'@typescript-eslint/scope-manager': 8.
|
|
1685
|
-
'@typescript-eslint/type-utils': 8.
|
|
1686
|
-
'@typescript-eslint/utils': 8.
|
|
1687
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1683
|
+
'@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1684
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
1685
|
+
'@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1686
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1687
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
1688
1688
|
eslint: 10.8.1
|
|
1689
1689
|
ignore: 7.0.6
|
|
1690
1690
|
natural-compare: 1.4.0
|
|
@@ -1693,41 +1693,41 @@ snapshots:
|
|
|
1693
1693
|
transitivePeerDependencies:
|
|
1694
1694
|
- supports-color
|
|
1695
1695
|
|
|
1696
|
-
'@typescript-eslint/parser@8.
|
|
1696
|
+
'@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
1697
1697
|
dependencies:
|
|
1698
|
-
'@typescript-eslint/scope-manager': 8.
|
|
1699
|
-
'@typescript-eslint/types': 8.
|
|
1700
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
1701
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1698
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
1699
|
+
'@typescript-eslint/types': 8.67.0
|
|
1700
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
1701
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
1702
1702
|
debug: 4.4.3
|
|
1703
1703
|
eslint: 10.8.1
|
|
1704
1704
|
typescript: 6.0.3
|
|
1705
1705
|
transitivePeerDependencies:
|
|
1706
1706
|
- supports-color
|
|
1707
1707
|
|
|
1708
|
-
'@typescript-eslint/project-service@8.
|
|
1708
|
+
'@typescript-eslint/project-service@8.67.0(typescript@6.0.3)':
|
|
1709
1709
|
dependencies:
|
|
1710
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
1711
|
-
'@typescript-eslint/types': 8.
|
|
1710
|
+
'@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3)
|
|
1711
|
+
'@typescript-eslint/types': 8.67.0
|
|
1712
1712
|
debug: 4.4.3
|
|
1713
1713
|
typescript: 6.0.3
|
|
1714
1714
|
transitivePeerDependencies:
|
|
1715
1715
|
- supports-color
|
|
1716
1716
|
|
|
1717
|
-
'@typescript-eslint/scope-manager@8.
|
|
1717
|
+
'@typescript-eslint/scope-manager@8.67.0':
|
|
1718
1718
|
dependencies:
|
|
1719
|
-
'@typescript-eslint/types': 8.
|
|
1720
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1719
|
+
'@typescript-eslint/types': 8.67.0
|
|
1720
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
1721
1721
|
|
|
1722
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
1722
|
+
'@typescript-eslint/tsconfig-utils@8.67.0(typescript@6.0.3)':
|
|
1723
1723
|
dependencies:
|
|
1724
1724
|
typescript: 6.0.3
|
|
1725
1725
|
|
|
1726
|
-
'@typescript-eslint/type-utils@8.
|
|
1726
|
+
'@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
1727
1727
|
dependencies:
|
|
1728
|
-
'@typescript-eslint/types': 8.
|
|
1729
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
1730
|
-
'@typescript-eslint/utils': 8.
|
|
1728
|
+
'@typescript-eslint/types': 8.67.0
|
|
1729
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
1730
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1731
1731
|
debug: 4.4.3
|
|
1732
1732
|
eslint: 10.8.1
|
|
1733
1733
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
@@ -1735,14 +1735,14 @@ snapshots:
|
|
|
1735
1735
|
transitivePeerDependencies:
|
|
1736
1736
|
- supports-color
|
|
1737
1737
|
|
|
1738
|
-
'@typescript-eslint/types@8.
|
|
1738
|
+
'@typescript-eslint/types@8.67.0': {}
|
|
1739
1739
|
|
|
1740
|
-
'@typescript-eslint/typescript-estree@8.
|
|
1740
|
+
'@typescript-eslint/typescript-estree@8.67.0(typescript@6.0.3)':
|
|
1741
1741
|
dependencies:
|
|
1742
|
-
'@typescript-eslint/project-service': 8.
|
|
1743
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
1744
|
-
'@typescript-eslint/types': 8.
|
|
1745
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1742
|
+
'@typescript-eslint/project-service': 8.67.0(typescript@6.0.3)
|
|
1743
|
+
'@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3)
|
|
1744
|
+
'@typescript-eslint/types': 8.67.0
|
|
1745
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
1746
1746
|
debug: 4.4.3
|
|
1747
1747
|
minimatch: 10.2.6
|
|
1748
1748
|
semver: 7.8.5
|
|
@@ -1752,20 +1752,20 @@ snapshots:
|
|
|
1752
1752
|
transitivePeerDependencies:
|
|
1753
1753
|
- supports-color
|
|
1754
1754
|
|
|
1755
|
-
'@typescript-eslint/utils@8.
|
|
1755
|
+
'@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
1756
1756
|
dependencies:
|
|
1757
1757
|
'@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1)
|
|
1758
|
-
'@typescript-eslint/scope-manager': 8.
|
|
1759
|
-
'@typescript-eslint/types': 8.
|
|
1760
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
1758
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
1759
|
+
'@typescript-eslint/types': 8.67.0
|
|
1760
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
1761
1761
|
eslint: 10.8.1
|
|
1762
1762
|
typescript: 6.0.3
|
|
1763
1763
|
transitivePeerDependencies:
|
|
1764
1764
|
- supports-color
|
|
1765
1765
|
|
|
1766
|
-
'@typescript-eslint/visitor-keys@8.
|
|
1766
|
+
'@typescript-eslint/visitor-keys@8.67.0':
|
|
1767
1767
|
dependencies:
|
|
1768
|
-
'@typescript-eslint/types': 8.
|
|
1768
|
+
'@typescript-eslint/types': 8.67.0
|
|
1769
1769
|
eslint-visitor-keys: 5.0.1
|
|
1770
1770
|
|
|
1771
1771
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
|
@@ -1826,7 +1826,7 @@ snapshots:
|
|
|
1826
1826
|
dependencies:
|
|
1827
1827
|
'@emnapi/core': 1.10.0
|
|
1828
1828
|
'@emnapi/runtime': 1.10.0
|
|
1829
|
-
'@napi-rs/wasm-runtime': 1.2.
|
|
1829
|
+
'@napi-rs/wasm-runtime': 1.2.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
1830
1830
|
optional: true
|
|
1831
1831
|
|
|
1832
1832
|
'@unrs/resolver-binding-win32-arm64-msvc@1.12.2':
|
|
@@ -1838,13 +1838,13 @@ snapshots:
|
|
|
1838
1838
|
'@unrs/resolver-binding-win32-x64-msvc@1.12.2':
|
|
1839
1839
|
optional: true
|
|
1840
1840
|
|
|
1841
|
-
'@vitest/eslint-plugin@1.6.27(@typescript-eslint/eslint-plugin@8.
|
|
1841
|
+
'@vitest/eslint-plugin@1.6.27(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)':
|
|
1842
1842
|
dependencies:
|
|
1843
|
-
'@typescript-eslint/scope-manager': 8.
|
|
1844
|
-
'@typescript-eslint/utils': 8.
|
|
1843
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
1844
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
1845
1845
|
eslint: 10.8.1
|
|
1846
1846
|
optionalDependencies:
|
|
1847
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
1847
|
+
'@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)
|
|
1848
1848
|
typescript: 6.0.3
|
|
1849
1849
|
transitivePeerDependencies:
|
|
1850
1850
|
- supports-color
|
|
@@ -1937,7 +1937,7 @@ snapshots:
|
|
|
1937
1937
|
|
|
1938
1938
|
balanced-match@4.0.4: {}
|
|
1939
1939
|
|
|
1940
|
-
baseline-browser-mapping@2.11.
|
|
1940
|
+
baseline-browser-mapping@2.11.14: {}
|
|
1941
1941
|
|
|
1942
1942
|
brace-expansion@1.1.18:
|
|
1943
1943
|
dependencies:
|
|
@@ -1950,9 +1950,9 @@ snapshots:
|
|
|
1950
1950
|
|
|
1951
1951
|
browserslist@4.28.8:
|
|
1952
1952
|
dependencies:
|
|
1953
|
-
baseline-browser-mapping: 2.11.
|
|
1953
|
+
baseline-browser-mapping: 2.11.14
|
|
1954
1954
|
caniuse-lite: 1.0.30001809
|
|
1955
|
-
electron-to-chromium: 1.5.
|
|
1955
|
+
electron-to-chromium: 1.5.406
|
|
1956
1956
|
node-releases: 2.0.53
|
|
1957
1957
|
update-browserslist-db: 1.3.1(browserslist@4.28.8)
|
|
1958
1958
|
|
|
@@ -2035,7 +2035,7 @@ snapshots:
|
|
|
2035
2035
|
es-errors: 1.3.0
|
|
2036
2036
|
gopd: 1.2.0
|
|
2037
2037
|
|
|
2038
|
-
electron-to-chromium@1.5.
|
|
2038
|
+
electron-to-chromium@1.5.406: {}
|
|
2039
2039
|
|
|
2040
2040
|
emoji-regex@9.2.2: {}
|
|
2041
2041
|
|
|
@@ -2160,14 +2160,14 @@ snapshots:
|
|
|
2160
2160
|
|
|
2161
2161
|
eslint-import-context@0.1.9(unrs-resolver@1.12.2):
|
|
2162
2162
|
dependencies:
|
|
2163
|
-
get-tsconfig: 4.14.
|
|
2163
|
+
get-tsconfig: 4.14.2
|
|
2164
2164
|
stable-hash-x: 0.2.0
|
|
2165
2165
|
optionalDependencies:
|
|
2166
2166
|
unrs-resolver: 1.12.2
|
|
2167
2167
|
|
|
2168
|
-
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.
|
|
2168
|
+
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1):
|
|
2169
2169
|
dependencies:
|
|
2170
|
-
'@typescript-eslint/types': 8.
|
|
2170
|
+
'@typescript-eslint/types': 8.67.0
|
|
2171
2171
|
comment-parser: 1.4.8
|
|
2172
2172
|
debug: 4.4.3
|
|
2173
2173
|
eslint: 10.8.1
|
|
@@ -2178,7 +2178,7 @@ snapshots:
|
|
|
2178
2178
|
stable-hash-x: 0.2.0
|
|
2179
2179
|
unrs-resolver: 1.12.2
|
|
2180
2180
|
optionalDependencies:
|
|
2181
|
-
'@typescript-eslint/utils': 8.
|
|
2181
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2182
2182
|
transitivePeerDependencies:
|
|
2183
2183
|
- supports-color
|
|
2184
2184
|
|
|
@@ -2250,8 +2250,8 @@ snapshots:
|
|
|
2250
2250
|
|
|
2251
2251
|
eslint-plugin-testing-library@7.16.2(eslint@10.8.1)(typescript@6.0.3):
|
|
2252
2252
|
dependencies:
|
|
2253
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2254
|
-
'@typescript-eslint/utils': 8.
|
|
2253
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2254
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2255
2255
|
eslint: 10.8.1
|
|
2256
2256
|
transitivePeerDependencies:
|
|
2257
2257
|
- supports-color
|
|
@@ -2397,7 +2397,7 @@ snapshots:
|
|
|
2397
2397
|
es-errors: 1.3.0
|
|
2398
2398
|
get-intrinsic: 1.3.0
|
|
2399
2399
|
|
|
2400
|
-
get-tsconfig@4.14.
|
|
2400
|
+
get-tsconfig@4.14.2:
|
|
2401
2401
|
dependencies:
|
|
2402
2402
|
resolve-pkg-maps: 1.0.0
|
|
2403
2403
|
|
|
@@ -2405,7 +2405,7 @@ snapshots:
|
|
|
2405
2405
|
dependencies:
|
|
2406
2406
|
is-glob: 4.0.3
|
|
2407
2407
|
|
|
2408
|
-
globals@17.
|
|
2408
|
+
globals@17.11.0: {}
|
|
2409
2409
|
|
|
2410
2410
|
globalthis@1.0.4:
|
|
2411
2411
|
dependencies:
|
|
@@ -2969,12 +2969,12 @@ snapshots:
|
|
|
2969
2969
|
possible-typed-array-names: 1.1.0
|
|
2970
2970
|
reflect.getprototypeof: 1.0.10
|
|
2971
2971
|
|
|
2972
|
-
typescript-eslint@8.
|
|
2972
|
+
typescript-eslint@8.67.0(eslint@10.8.1)(typescript@6.0.3):
|
|
2973
2973
|
dependencies:
|
|
2974
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
2975
|
-
'@typescript-eslint/parser': 8.
|
|
2976
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
2977
|
-
'@typescript-eslint/utils': 8.
|
|
2974
|
+
'@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)
|
|
2975
|
+
'@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2976
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2977
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2978
2978
|
eslint: 10.8.1
|
|
2979
2979
|
typescript: 6.0.3
|
|
2980
2980
|
transitivePeerDependencies:
|