openc3 5.12.0 → 5.13.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of openc3 might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/bin/openc3cli +3 -3
- data/data/config/graph_settings.yaml +1 -1
- data/data/config/item_modifiers.yaml +1 -2
- data/data/config/parameter_modifiers.yaml +13 -14
- data/data/config/screen.yaml +1 -2
- data/data/config/target_config.yaml +2 -6
- data/lib/openc3/api/cmd_api.rb +99 -35
- data/lib/openc3/api/tlm_api.rb +63 -24
- data/lib/openc3/interfaces/mqtt_interface.rb +11 -9
- data/lib/openc3/interfaces/mqtt_stream_interface.rb +78 -0
- data/lib/openc3/logs/packet_log_reader.rb +2 -2
- data/lib/openc3/logs/text_log_writer.rb +3 -2
- data/lib/openc3/microservices/trigger_group_microservice.rb +2 -1
- data/lib/openc3/models/plugin_model.rb +38 -4
- data/lib/openc3/packets/json_packet.rb +46 -15
- data/lib/openc3/packets/packet_config.rb +2 -1
- data/lib/openc3/packets/parsers/xtce_parser.rb +5 -1
- data/lib/openc3/script/api_shared.rb +31 -31
- data/lib/openc3/script/commands.rb +18 -12
- data/lib/openc3/script/limits.rb +1 -1
- data/lib/openc3/script/storage.rb +4 -4
- data/lib/openc3/script/web_socket_api.rb +2 -2
- data/lib/openc3/streams/mqtt_stream.rb +109 -0
- data/lib/openc3/utilities/cli_generator.rb +33 -20
- data/lib/openc3/utilities/local_mode.rb +2 -2
- data/lib/openc3/utilities/logger.rb +17 -16
- data/lib/openc3/utilities/process_manager.rb +1 -1
- data/lib/openc3/version.rb +5 -5
- data/templates/conversion/conversion.py +28 -0
- data/templates/conversion/conversion.rb +1 -18
- data/templates/limits_response/response.py +37 -0
- data/templates/limits_response/response.rb +0 -17
- data/templates/microservice/microservices/TEMPLATE/microservice.py +54 -0
- data/templates/microservice/microservices/TEMPLATE/microservice.rb +0 -7
- data/templates/plugin/.gitignore +1 -0
- data/templates/target/targets/TARGET/lib/target.py +9 -0
- data/templates/target/targets/TARGET/procedures/procedure.py +3 -0
- data/templates/tool_angular/package.json +20 -19
- data/templates/tool_angular/yarn.lock +2222 -3212
- data/templates/tool_react/package.json +12 -12
- data/templates/tool_react/yarn.lock +586 -521
- data/templates/tool_svelte/package.json +11 -10
- data/templates/tool_svelte/src/services/openc3-api.js +17 -22
- data/templates/tool_svelte/yarn.lock +600 -516
- data/templates/tool_vue/package.json +10 -9
- data/templates/tool_vue/yarn.lock +113 -41
- data/templates/widget/package.json +9 -8
- data/templates/widget/yarn.lock +96 -35
- metadata +26 -4
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.13.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vue-cli-service serve",
|
@@ -11,8 +11,9 @@
|
|
11
11
|
"test:components": "vue-cli-service test:components"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
|
-
"@openc3/tool-common": "5.
|
15
|
-
"
|
14
|
+
"@openc3/tool-common": "5.13.0",
|
15
|
+
"@astrouxds/astro-web-components": "7.19.1",
|
16
|
+
"axios": "1.6.2",
|
16
17
|
"date-fns": "2.30.0",
|
17
18
|
"portal-vue": "2.1.7",
|
18
19
|
"single-spa-vue": "2.5.1",
|
@@ -24,7 +25,7 @@
|
|
24
25
|
"vuex": "3.6.2"
|
25
26
|
},
|
26
27
|
"devDependencies": {
|
27
|
-
"@babel/eslint-parser": "7.
|
28
|
+
"@babel/eslint-parser": "7.23.3",
|
28
29
|
"@vue/babel-preset-app": "5.0.8",
|
29
30
|
"@vue/cli": "5.0.8",
|
30
31
|
"@vue/cli-plugin-babel": "5.0.8",
|
@@ -36,12 +37,12 @@
|
|
36
37
|
"@vue/test-utils": "1.3.0",
|
37
38
|
"babel-loader": "9.1.3",
|
38
39
|
"babel-plugin-istanbul": "6.1.1",
|
39
|
-
"eslint": "8.
|
40
|
-
"eslint-config-prettier": "9.
|
40
|
+
"eslint": "8.55.0",
|
41
|
+
"eslint-config-prettier": "9.1.0",
|
41
42
|
"eslint-plugin-prettier": "5.0.1",
|
42
|
-
"eslint-plugin-vue": "9.
|
43
|
-
"html-webpack-plugin": "^5.5.
|
44
|
-
"prettier": "3.
|
43
|
+
"eslint-plugin-vue": "9.19.2",
|
44
|
+
"html-webpack-plugin": "^5.5.4",
|
45
|
+
"prettier": "3.1.1",
|
45
46
|
"sass": "1.69.5",
|
46
47
|
"sass-loader": "13.3.2",
|
47
48
|
"vue-cli-plugin-single-spa": "3.3.0",
|
@@ -139,6 +139,16 @@
|
|
139
139
|
dependencies:
|
140
140
|
xss "^1.0.8"
|
141
141
|
|
142
|
+
"@astrouxds/astro-web-components@7.19.1":
|
143
|
+
version "7.19.1"
|
144
|
+
resolved "https://registry.yarnpkg.com/@astrouxds/astro-web-components/-/astro-web-components-7.19.1.tgz#ccd6cea003afe2a007c4abaa9703ce3aeb339acf"
|
145
|
+
integrity sha512-jYkcCxk09abPper9iFB6zNV+dE2E21c4jo6rvLRSwjxjoWFE7BGqhzGmONhoKwG/z2cRjsE6X+P0JlzK9V6fgw==
|
146
|
+
dependencies:
|
147
|
+
"@floating-ui/dom" "~1.0.6"
|
148
|
+
"@stencil/core" "~3.4.1"
|
149
|
+
date-fns "~2.21.3"
|
150
|
+
date-fns-tz "~1.3.7"
|
151
|
+
|
142
152
|
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.5":
|
143
153
|
version "7.22.5"
|
144
154
|
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz"
|
@@ -172,10 +182,10 @@
|
|
172
182
|
json5 "^2.2.2"
|
173
183
|
semver "^6.3.0"
|
174
184
|
|
175
|
-
"@babel/eslint-parser@7.
|
176
|
-
version "7.
|
177
|
-
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.
|
178
|
-
integrity sha512-
|
185
|
+
"@babel/eslint-parser@7.23.3":
|
186
|
+
version "7.23.3"
|
187
|
+
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz#7bf0db1c53b54da0c8a12627373554a0828479ca"
|
188
|
+
integrity sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==
|
179
189
|
dependencies:
|
180
190
|
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
|
181
191
|
eslint-visitor-keys "^2.1.0"
|
@@ -1232,10 +1242,10 @@
|
|
1232
1242
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8"
|
1233
1243
|
integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
|
1234
1244
|
|
1235
|
-
"@eslint/eslintrc@^2.1.
|
1236
|
-
version "2.1.
|
1237
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
1238
|
-
integrity sha512-
|
1245
|
+
"@eslint/eslintrc@^2.1.4":
|
1246
|
+
version "2.1.4"
|
1247
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
|
1248
|
+
integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
|
1239
1249
|
dependencies:
|
1240
1250
|
ajv "^6.12.4"
|
1241
1251
|
debug "^4.3.2"
|
@@ -1247,10 +1257,29 @@
|
|
1247
1257
|
minimatch "^3.1.2"
|
1248
1258
|
strip-json-comments "^3.1.1"
|
1249
1259
|
|
1250
|
-
"@eslint/js@8.
|
1251
|
-
version "8.
|
1252
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
1253
|
-
integrity sha512-
|
1260
|
+
"@eslint/js@8.55.0":
|
1261
|
+
version "8.55.0"
|
1262
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.55.0.tgz#b721d52060f369aa259cf97392403cb9ce892ec6"
|
1263
|
+
integrity sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==
|
1264
|
+
|
1265
|
+
"@floating-ui/core@^1.0.4":
|
1266
|
+
version "1.5.2"
|
1267
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.2.tgz#53a0f7a98c550e63134d504f26804f6b83dbc071"
|
1268
|
+
integrity sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==
|
1269
|
+
dependencies:
|
1270
|
+
"@floating-ui/utils" "^0.1.3"
|
1271
|
+
|
1272
|
+
"@floating-ui/dom@~1.0.6":
|
1273
|
+
version "1.0.12"
|
1274
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.0.12.tgz#07c870a05d9b825a6d7657524f48fe6761722800"
|
1275
|
+
integrity sha512-HeG/wHoa2laUHlDX3xkzqlUqliAfa+zqV04LaKIwNCmCNaW2p0fQi4/Kd0LB4GdFoJ2UllLFq5gWnXAd67lg7w==
|
1276
|
+
dependencies:
|
1277
|
+
"@floating-ui/core" "^1.0.4"
|
1278
|
+
|
1279
|
+
"@floating-ui/utils@^0.1.3":
|
1280
|
+
version "0.1.6"
|
1281
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9"
|
1282
|
+
integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==
|
1254
1283
|
|
1255
1284
|
"@graphql-tools/merge@8.3.1":
|
1256
1285
|
version "8.3.1"
|
@@ -1562,6 +1591,11 @@
|
|
1562
1591
|
resolved "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz"
|
1563
1592
|
integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==
|
1564
1593
|
|
1594
|
+
"@stencil/core@~3.4.1":
|
1595
|
+
version "3.4.2"
|
1596
|
+
resolved "https://registry.yarnpkg.com/@stencil/core/-/core-3.4.2.tgz#57ce7f71fe18c2ec0967821bec667fc453cca962"
|
1597
|
+
integrity sha512-FAUhUVaakCy29nU2GwO/HQBRV1ihPRvncz3PUc8oR+UJLAxGabTmP8PLY7wvHfbw+Cvi4VXfJFTBvdfDu6iKPQ==
|
1598
|
+
|
1565
1599
|
"@trysound/sax@0.2.0":
|
1566
1600
|
version "0.2.0"
|
1567
1601
|
resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
|
@@ -2165,6 +2199,15 @@
|
|
2165
2199
|
postcss "^8.4.14"
|
2166
2200
|
source-map "^0.6.1"
|
2167
2201
|
|
2202
|
+
"@vue/compiler-sfc@2.7.15":
|
2203
|
+
version "2.7.15"
|
2204
|
+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz#62135fb2f69559fc723fd9c56b8e8b0ac7864a0b"
|
2205
|
+
integrity sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==
|
2206
|
+
dependencies:
|
2207
|
+
"@babel/parser" "^7.18.4"
|
2208
|
+
postcss "^8.4.14"
|
2209
|
+
source-map "^0.6.1"
|
2210
|
+
|
2168
2211
|
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
2169
2212
|
version "3.3.0"
|
2170
2213
|
resolved "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz"
|
@@ -2718,13 +2761,14 @@ autoprefixer@^10.2.4:
|
|
2718
2761
|
picocolors "^1.0.0"
|
2719
2762
|
postcss-value-parser "^4.2.0"
|
2720
2763
|
|
2721
|
-
axios@
|
2722
|
-
version "
|
2723
|
-
resolved "https://registry.
|
2724
|
-
integrity sha512-
|
2764
|
+
axios@1.6.2:
|
2765
|
+
version "1.6.2"
|
2766
|
+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.2.tgz#de67d42c755b571d3e698df1b6504cde9b0ee9f2"
|
2767
|
+
integrity sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==
|
2725
2768
|
dependencies:
|
2726
|
-
follow-redirects "^1.
|
2769
|
+
follow-redirects "^1.15.0"
|
2727
2770
|
form-data "^4.0.0"
|
2771
|
+
proxy-from-env "^1.1.0"
|
2728
2772
|
|
2729
2773
|
babel-core@^7.0.0-bridge.0:
|
2730
2774
|
version "7.0.0-bridge.0"
|
@@ -3668,6 +3712,11 @@ csstype@^3.1.0:
|
|
3668
3712
|
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
|
3669
3713
|
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
3670
3714
|
|
3715
|
+
date-fns-tz@~1.3.7:
|
3716
|
+
version "1.3.8"
|
3717
|
+
resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.3.8.tgz#083e3a4e1f19b7857fa0c18deea6c2bc46ded7b9"
|
3718
|
+
integrity sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==
|
3719
|
+
|
3671
3720
|
date-fns@2.30.0:
|
3672
3721
|
version "2.30.0"
|
3673
3722
|
resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz"
|
@@ -3675,6 +3724,11 @@ date-fns@2.30.0:
|
|
3675
3724
|
dependencies:
|
3676
3725
|
"@babel/runtime" "^7.21.0"
|
3677
3726
|
|
3727
|
+
date-fns@~2.21.3:
|
3728
|
+
version "2.21.3"
|
3729
|
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.21.3.tgz#8f5f6889d7a96bbcc1f0ea50239b397a83357f9b"
|
3730
|
+
integrity sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==
|
3731
|
+
|
3678
3732
|
de-indent@^1.0.2:
|
3679
3733
|
version "1.0.2"
|
3680
3734
|
resolved "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz"
|
@@ -4120,10 +4174,10 @@ escape-string-regexp@^4.0.0:
|
|
4120
4174
|
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
|
4121
4175
|
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
4122
4176
|
|
4123
|
-
eslint-config-prettier@9.
|
4124
|
-
version "9.
|
4125
|
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.
|
4126
|
-
integrity sha512-
|
4177
|
+
eslint-config-prettier@9.1.0:
|
4178
|
+
version "9.1.0"
|
4179
|
+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
|
4180
|
+
integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
|
4127
4181
|
|
4128
4182
|
eslint-config-prettier@^8.8.0:
|
4129
4183
|
version "8.10.0"
|
@@ -4146,10 +4200,10 @@ eslint-plugin-prettier@^5.0.0:
|
|
4146
4200
|
prettier-linter-helpers "^1.0.0"
|
4147
4201
|
synckit "^0.8.5"
|
4148
4202
|
|
4149
|
-
eslint-plugin-vue@9.
|
4150
|
-
version "9.
|
4151
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4152
|
-
integrity sha512-
|
4203
|
+
eslint-plugin-vue@9.19.2:
|
4204
|
+
version "9.19.2"
|
4205
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.19.2.tgz#7ab83a001a1ac8bccae013c5b9cb5d2c644fb376"
|
4206
|
+
integrity sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA==
|
4153
4207
|
dependencies:
|
4154
4208
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4155
4209
|
natural-compare "^1.4.0"
|
@@ -4209,15 +4263,15 @@ eslint-webpack-plugin@^3.1.0:
|
|
4209
4263
|
normalize-path "^3.0.0"
|
4210
4264
|
schema-utils "^4.0.0"
|
4211
4265
|
|
4212
|
-
eslint@8.
|
4213
|
-
version "8.
|
4214
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4215
|
-
integrity sha512-
|
4266
|
+
eslint@8.55.0:
|
4267
|
+
version "8.55.0"
|
4268
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.55.0.tgz#078cb7b847d66f2c254ea1794fa395bf8e7e03f8"
|
4269
|
+
integrity sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==
|
4216
4270
|
dependencies:
|
4217
4271
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4218
4272
|
"@eslint-community/regexpp" "^4.6.1"
|
4219
|
-
"@eslint/eslintrc" "^2.1.
|
4220
|
-
"@eslint/js" "8.
|
4273
|
+
"@eslint/eslintrc" "^2.1.4"
|
4274
|
+
"@eslint/js" "8.55.0"
|
4221
4275
|
"@humanwhocodes/config-array" "^0.11.13"
|
4222
4276
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4223
4277
|
"@nodelib/fs.walk" "^1.2.8"
|
@@ -4772,11 +4826,16 @@ flow-parser@0.*:
|
|
4772
4826
|
resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.208.0.tgz"
|
4773
4827
|
integrity sha512-nuoC/kw8BH0gw7ykHNlKJVvtQWh/j5+CE3P/54RBMy63IoGlj9ScTQOC1ntLzwnnfzm9gT5OOukWG0TKrgKyug==
|
4774
4828
|
|
4775
|
-
follow-redirects@^1.0.0
|
4829
|
+
follow-redirects@^1.0.0:
|
4776
4830
|
version "1.15.2"
|
4777
4831
|
resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"
|
4778
4832
|
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
|
4779
4833
|
|
4834
|
+
follow-redirects@^1.15.0:
|
4835
|
+
version "1.15.3"
|
4836
|
+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a"
|
4837
|
+
integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==
|
4838
|
+
|
4780
4839
|
for-in@^1.0.2:
|
4781
4840
|
version "1.0.2"
|
4782
4841
|
resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
|
@@ -5238,10 +5297,10 @@ html-webpack-plugin@^5.1.0:
|
|
5238
5297
|
pretty-error "^4.0.0"
|
5239
5298
|
tapable "^2.0.0"
|
5240
5299
|
|
5241
|
-
html-webpack-plugin@^5.5.
|
5242
|
-
version "5.5.
|
5243
|
-
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.
|
5244
|
-
integrity sha512-
|
5300
|
+
html-webpack-plugin@^5.5.4:
|
5301
|
+
version "5.5.4"
|
5302
|
+
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz#517a48e6f046ff1ae1a172c983cd993eb79d2f6a"
|
5303
|
+
integrity sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==
|
5245
5304
|
dependencies:
|
5246
5305
|
"@types/html-minifier-terser" "^6.0.0"
|
5247
5306
|
html-minifier-terser "^6.0.2"
|
@@ -7361,10 +7420,10 @@ prettier-linter-helpers@^1.0.0:
|
|
7361
7420
|
dependencies:
|
7362
7421
|
fast-diff "^1.1.2"
|
7363
7422
|
|
7364
|
-
prettier@3.
|
7365
|
-
version "3.
|
7366
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.
|
7367
|
-
integrity sha512-
|
7423
|
+
prettier@3.1.1:
|
7424
|
+
version "3.1.1"
|
7425
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848"
|
7426
|
+
integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==
|
7368
7427
|
|
7369
7428
|
"prettier@^1.18.2 || ^2.0.0":
|
7370
7429
|
version "2.8.8"
|
@@ -7432,6 +7491,11 @@ proxy-addr@~2.0.7:
|
|
7432
7491
|
forwarded "0.2.0"
|
7433
7492
|
ipaddr.js "1.9.1"
|
7434
7493
|
|
7494
|
+
proxy-from-env@^1.1.0:
|
7495
|
+
version "1.1.0"
|
7496
|
+
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
|
7497
|
+
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
|
7498
|
+
|
7435
7499
|
ps-list@^6.3.0:
|
7436
7500
|
version "6.3.0"
|
7437
7501
|
resolved "https://registry.npmjs.org/ps-list/-/ps-list-6.3.0.tgz"
|
@@ -8971,7 +9035,15 @@ vue-template-es2015-compiler@^1.9.0:
|
|
8971
9035
|
resolved "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"
|
8972
9036
|
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
|
8973
9037
|
|
8974
|
-
vue@2.7.
|
9038
|
+
vue@2.7.15:
|
9039
|
+
version "2.7.15"
|
9040
|
+
resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.15.tgz#94cd34e6e9f22cd2d35a02143f96a5beac1c1f54"
|
9041
|
+
integrity sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==
|
9042
|
+
dependencies:
|
9043
|
+
"@vue/compiler-sfc" "2.7.15"
|
9044
|
+
csstype "^3.1.0"
|
9045
|
+
|
9046
|
+
vue@^2.6.14:
|
8975
9047
|
version "2.7.14"
|
8976
9048
|
resolved "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz"
|
8977
9049
|
integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==
|
@@ -1,18 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "widget",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.13.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"build": "vue-cli-service build --target lib --dest tools/widgets/<%= widget_name %> --formats umd-min <%= widget_path %> --name <%= widget_name %>"
|
7
7
|
},
|
8
8
|
"dependencies": {
|
9
|
-
"@openc3/tool-common": "5.
|
9
|
+
"@openc3/tool-common": "5.13.0",
|
10
|
+
"@astrouxds/astro-web-components": "7.19.1",
|
10
11
|
"vue": "2.7.15",
|
11
12
|
"vuetify": "2.7.1"
|
12
13
|
},
|
13
14
|
"devDependencies": {
|
14
|
-
"@babel/eslint-parser": "7.
|
15
|
-
"@rushstack/eslint-patch": "1.
|
15
|
+
"@babel/eslint-parser": "7.23.3",
|
16
|
+
"@rushstack/eslint-patch": "1.6.0",
|
16
17
|
"@vue/babel-preset-app": "5.0.8",
|
17
18
|
"@vue/cli": "5.0.8",
|
18
19
|
"@vue/cli-plugin-babel": "5.0.8",
|
@@ -21,11 +22,11 @@
|
|
21
22
|
"@vue/eslint-config-prettier": "8.0.0",
|
22
23
|
"babel-loader": "9.1.3",
|
23
24
|
"babel-plugin-istanbul": "6.1.1",
|
24
|
-
"eslint": "8.
|
25
|
-
"eslint-config-prettier": "9.
|
25
|
+
"eslint": "8.55.0",
|
26
|
+
"eslint-config-prettier": "9.1.0",
|
26
27
|
"eslint-plugin-prettier": "5.0.1",
|
27
|
-
"eslint-plugin-vue": "9.
|
28
|
-
"prettier": "3.
|
28
|
+
"eslint-plugin-vue": "9.19.2",
|
29
|
+
"prettier": "3.1.1",
|
29
30
|
"sass": "1.69.5",
|
30
31
|
"sass-loader": "13.3.2",
|
31
32
|
"vue-cli-plugin-vuetify": "2.5.8",
|
data/templates/widget/yarn.lock
CHANGED
@@ -139,6 +139,16 @@
|
|
139
139
|
dependencies:
|
140
140
|
xss "^1.0.8"
|
141
141
|
|
142
|
+
"@astrouxds/astro-web-components@7.19.1":
|
143
|
+
version "7.19.1"
|
144
|
+
resolved "https://registry.yarnpkg.com/@astrouxds/astro-web-components/-/astro-web-components-7.19.1.tgz#ccd6cea003afe2a007c4abaa9703ce3aeb339acf"
|
145
|
+
integrity sha512-jYkcCxk09abPper9iFB6zNV+dE2E21c4jo6rvLRSwjxjoWFE7BGqhzGmONhoKwG/z2cRjsE6X+P0JlzK9V6fgw==
|
146
|
+
dependencies:
|
147
|
+
"@floating-ui/dom" "~1.0.6"
|
148
|
+
"@stencil/core" "~3.4.1"
|
149
|
+
date-fns "~2.21.3"
|
150
|
+
date-fns-tz "~1.3.7"
|
151
|
+
|
142
152
|
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
|
143
153
|
version "7.18.6"
|
144
154
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
|
@@ -172,10 +182,10 @@
|
|
172
182
|
json5 "^2.2.2"
|
173
183
|
semver "^6.3.0"
|
174
184
|
|
175
|
-
"@babel/eslint-parser@7.
|
176
|
-
version "7.
|
177
|
-
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.
|
178
|
-
integrity sha512-
|
185
|
+
"@babel/eslint-parser@7.23.3":
|
186
|
+
version "7.23.3"
|
187
|
+
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz#7bf0db1c53b54da0c8a12627373554a0828479ca"
|
188
|
+
integrity sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==
|
179
189
|
dependencies:
|
180
190
|
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
|
181
191
|
eslint-visitor-keys "^2.1.0"
|
@@ -1170,10 +1180,10 @@
|
|
1170
1180
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8"
|
1171
1181
|
integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
|
1172
1182
|
|
1173
|
-
"@eslint/eslintrc@^2.1.
|
1174
|
-
version "2.1.
|
1175
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
1176
|
-
integrity sha512-
|
1183
|
+
"@eslint/eslintrc@^2.1.4":
|
1184
|
+
version "2.1.4"
|
1185
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
|
1186
|
+
integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
|
1177
1187
|
dependencies:
|
1178
1188
|
ajv "^6.12.4"
|
1179
1189
|
debug "^4.3.2"
|
@@ -1185,10 +1195,29 @@
|
|
1185
1195
|
minimatch "^3.1.2"
|
1186
1196
|
strip-json-comments "^3.1.1"
|
1187
1197
|
|
1188
|
-
"@eslint/js@8.
|
1189
|
-
version "8.
|
1190
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
1191
|
-
integrity sha512-
|
1198
|
+
"@eslint/js@8.55.0":
|
1199
|
+
version "8.55.0"
|
1200
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.55.0.tgz#b721d52060f369aa259cf97392403cb9ce892ec6"
|
1201
|
+
integrity sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==
|
1202
|
+
|
1203
|
+
"@floating-ui/core@^1.0.4":
|
1204
|
+
version "1.5.2"
|
1205
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.2.tgz#53a0f7a98c550e63134d504f26804f6b83dbc071"
|
1206
|
+
integrity sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==
|
1207
|
+
dependencies:
|
1208
|
+
"@floating-ui/utils" "^0.1.3"
|
1209
|
+
|
1210
|
+
"@floating-ui/dom@~1.0.6":
|
1211
|
+
version "1.0.12"
|
1212
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.0.12.tgz#07c870a05d9b825a6d7657524f48fe6761722800"
|
1213
|
+
integrity sha512-HeG/wHoa2laUHlDX3xkzqlUqliAfa+zqV04LaKIwNCmCNaW2p0fQi4/Kd0LB4GdFoJ2UllLFq5gWnXAd67lg7w==
|
1214
|
+
dependencies:
|
1215
|
+
"@floating-ui/core" "^1.0.4"
|
1216
|
+
|
1217
|
+
"@floating-ui/utils@^0.1.3":
|
1218
|
+
version "0.1.6"
|
1219
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9"
|
1220
|
+
integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==
|
1192
1221
|
|
1193
1222
|
"@graphql-tools/merge@8.3.1":
|
1194
1223
|
version "8.3.1"
|
@@ -1466,10 +1495,10 @@
|
|
1466
1495
|
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
1467
1496
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
1468
1497
|
|
1469
|
-
"@rushstack/eslint-patch@1.
|
1470
|
-
version "1.
|
1471
|
-
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.
|
1472
|
-
integrity sha512-
|
1498
|
+
"@rushstack/eslint-patch@1.6.0":
|
1499
|
+
version "1.6.0"
|
1500
|
+
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.6.0.tgz#1898e7a7b943680d757417a47fb10f5fcc230b39"
|
1501
|
+
integrity sha512-2/U3GXA6YiPYQDLGwtGlnNgKYBSwCFIHf8Y9LUY5VATHdtbLlU0Y1R3QoBnT0aB4qv/BEiVVsj7LJXoQCgJ2vA==
|
1473
1502
|
|
1474
1503
|
"@sideway/address@^4.1.3":
|
1475
1504
|
version "4.1.4"
|
@@ -1508,6 +1537,11 @@
|
|
1508
1537
|
resolved "https://registry.yarnpkg.com/@soda/get-current-script/-/get-current-script-1.0.2.tgz#a53515db25d8038374381b73af20bb4f2e508d87"
|
1509
1538
|
integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==
|
1510
1539
|
|
1540
|
+
"@stencil/core@~3.4.1":
|
1541
|
+
version "3.4.2"
|
1542
|
+
resolved "https://registry.yarnpkg.com/@stencil/core/-/core-3.4.2.tgz#57ce7f71fe18c2ec0967821bec667fc453cca962"
|
1543
|
+
integrity sha512-FAUhUVaakCy29nU2GwO/HQBRV1ihPRvncz3PUc8oR+UJLAxGabTmP8PLY7wvHfbw+Cvi4VXfJFTBvdfDu6iKPQ==
|
1544
|
+
|
1511
1545
|
"@trysound/sax@0.2.0":
|
1512
1546
|
version "0.2.0"
|
1513
1547
|
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
|
@@ -2102,6 +2136,15 @@
|
|
2102
2136
|
postcss "^8.4.14"
|
2103
2137
|
source-map "^0.6.1"
|
2104
2138
|
|
2139
|
+
"@vue/compiler-sfc@2.7.15":
|
2140
|
+
version "2.7.15"
|
2141
|
+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz#62135fb2f69559fc723fd9c56b8e8b0ac7864a0b"
|
2142
|
+
integrity sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==
|
2143
|
+
dependencies:
|
2144
|
+
"@babel/parser" "^7.18.4"
|
2145
|
+
postcss "^8.4.14"
|
2146
|
+
source-map "^0.6.1"
|
2147
|
+
|
2105
2148
|
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
2106
2149
|
version "3.3.0"
|
2107
2150
|
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9"
|
@@ -3688,6 +3731,16 @@ csstype@^3.1.0:
|
|
3688
3731
|
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
|
3689
3732
|
integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
|
3690
3733
|
|
3734
|
+
date-fns-tz@~1.3.7:
|
3735
|
+
version "1.3.8"
|
3736
|
+
resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.3.8.tgz#083e3a4e1f19b7857fa0c18deea6c2bc46ded7b9"
|
3737
|
+
integrity sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==
|
3738
|
+
|
3739
|
+
date-fns@~2.21.3:
|
3740
|
+
version "2.21.3"
|
3741
|
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.21.3.tgz#8f5f6889d7a96bbcc1f0ea50239b397a83357f9b"
|
3742
|
+
integrity sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==
|
3743
|
+
|
3691
3744
|
de-indent@^1.0.2:
|
3692
3745
|
version "1.0.2"
|
3693
3746
|
resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
|
@@ -4118,10 +4171,10 @@ escape-string-regexp@^4.0.0:
|
|
4118
4171
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
|
4119
4172
|
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
4120
4173
|
|
4121
|
-
eslint-config-prettier@9.
|
4122
|
-
version "9.
|
4123
|
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.
|
4124
|
-
integrity sha512-
|
4174
|
+
eslint-config-prettier@9.1.0:
|
4175
|
+
version "9.1.0"
|
4176
|
+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
|
4177
|
+
integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
|
4125
4178
|
|
4126
4179
|
eslint-config-prettier@^8.8.0:
|
4127
4180
|
version "8.10.0"
|
@@ -4144,10 +4197,10 @@ eslint-plugin-prettier@^5.0.0:
|
|
4144
4197
|
prettier-linter-helpers "^1.0.0"
|
4145
4198
|
synckit "^0.8.5"
|
4146
4199
|
|
4147
|
-
eslint-plugin-vue@9.
|
4148
|
-
version "9.
|
4149
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4150
|
-
integrity sha512-
|
4200
|
+
eslint-plugin-vue@9.19.2:
|
4201
|
+
version "9.19.2"
|
4202
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.19.2.tgz#7ab83a001a1ac8bccae013c5b9cb5d2c644fb376"
|
4203
|
+
integrity sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA==
|
4151
4204
|
dependencies:
|
4152
4205
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4153
4206
|
natural-compare "^1.4.0"
|
@@ -4212,15 +4265,15 @@ eslint-webpack-plugin@^3.1.0:
|
|
4212
4265
|
normalize-path "^3.0.0"
|
4213
4266
|
schema-utils "^4.0.0"
|
4214
4267
|
|
4215
|
-
eslint@8.
|
4216
|
-
version "8.
|
4217
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4218
|
-
integrity sha512-
|
4268
|
+
eslint@8.55.0:
|
4269
|
+
version "8.55.0"
|
4270
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.55.0.tgz#078cb7b847d66f2c254ea1794fa395bf8e7e03f8"
|
4271
|
+
integrity sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==
|
4219
4272
|
dependencies:
|
4220
4273
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4221
4274
|
"@eslint-community/regexpp" "^4.6.1"
|
4222
|
-
"@eslint/eslintrc" "^2.1.
|
4223
|
-
"@eslint/js" "8.
|
4275
|
+
"@eslint/eslintrc" "^2.1.4"
|
4276
|
+
"@eslint/js" "8.55.0"
|
4224
4277
|
"@humanwhocodes/config-array" "^0.11.13"
|
4225
4278
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4226
4279
|
"@nodelib/fs.walk" "^1.2.8"
|
@@ -7308,10 +7361,10 @@ prettier-linter-helpers@^1.0.0:
|
|
7308
7361
|
dependencies:
|
7309
7362
|
fast-diff "^1.1.2"
|
7310
7363
|
|
7311
|
-
prettier@3.
|
7312
|
-
version "3.
|
7313
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.
|
7314
|
-
integrity sha512-
|
7364
|
+
prettier@3.1.1:
|
7365
|
+
version "3.1.1"
|
7366
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848"
|
7367
|
+
integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==
|
7315
7368
|
|
7316
7369
|
"prettier@^1.18.2 || ^2.0.0":
|
7317
7370
|
version "2.8.6"
|
@@ -8870,7 +8923,15 @@ vue-template-es2015-compiler@^1.9.0:
|
|
8870
8923
|
resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825"
|
8871
8924
|
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
|
8872
8925
|
|
8873
|
-
vue@2.7.
|
8926
|
+
vue@2.7.15:
|
8927
|
+
version "2.7.15"
|
8928
|
+
resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.15.tgz#94cd34e6e9f22cd2d35a02143f96a5beac1c1f54"
|
8929
|
+
integrity sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==
|
8930
|
+
dependencies:
|
8931
|
+
"@vue/compiler-sfc" "2.7.15"
|
8932
|
+
csstype "^3.1.0"
|
8933
|
+
|
8934
|
+
vue@^2.6.14:
|
8874
8935
|
version "2.7.14"
|
8875
8936
|
resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.14.tgz#3743dcd248fd3a34d421ae456b864a0246bafb17"
|
8876
8937
|
integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==
|