@rancher/shell 0.4.0 → 0.5.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.
Files changed (243) hide show
  1. package/assets/images/providers/ovhcloudmks.svg +122 -0
  2. package/assets/images/providers/ovhcloudpubliccloud.svg +122 -0
  3. package/assets/styles/global/_layout.scss +99 -0
  4. package/assets/translations/en-us.yaml +30 -5
  5. package/assets/translations/zh-hans.yaml +1 -1
  6. package/babel.config.js +7 -1
  7. package/chart/monitoring/alerting/index.vue +7 -21
  8. package/chart/monitoring/grafana/index.vue +55 -0
  9. package/chart/monitoring/index.vue +51 -17
  10. package/chart/monitoring/prometheus/index.vue +37 -43
  11. package/chart/rancher-backup/index.vue +2 -1
  12. package/cloud-credential/azure.vue +4 -17
  13. package/components/Certificates.vue +164 -0
  14. package/components/CodeMirror.vue +19 -21
  15. package/components/CruResource.vue +1 -0
  16. package/components/EtcdInfoBanner.vue +1 -1
  17. package/components/ExplorerProjectsNamespaces.vue +25 -1
  18. package/components/IconOrSvg.vue +1 -1
  19. package/components/LandingPagePreference.vue +1 -4
  20. package/components/Questions/index.vue +1 -1
  21. package/components/ResourceDetail/Masthead.vue +16 -3
  22. package/components/ResourceTable.vue +14 -2
  23. package/components/ResourceYaml.vue +5 -0
  24. package/components/SideNav.vue +1 -1
  25. package/components/SingleClusterInfo.vue +1 -4
  26. package/components/Tabbed/index.vue +12 -0
  27. package/components/fleet/FleetRepos.vue +62 -27
  28. package/components/fleet/FleetResources.vue +6 -1
  29. package/components/form/ArrayListSelect.vue +10 -0
  30. package/components/form/KeyValue.vue +4 -0
  31. package/components/form/LabeledSelect.vue +4 -0
  32. package/components/formatter/Checked.vue +11 -3
  33. package/components/formatter/FleetClusterSummaryGraph.vue +27 -0
  34. package/components/formatter/FleetSummaryGraph.vue +23 -11
  35. package/components/formatter/LiveDuration.vue +1 -1
  36. package/components/formatter/PercentageBar.vue +1 -1
  37. package/components/formatter/__tests__/Checked.test.ts +19 -0
  38. package/components/nav/Group.vue +2 -2
  39. package/components/nav/Header.vue +0 -1
  40. package/components/nav/TopLevelMenu.vue +36 -6
  41. package/components/nav/Type.vue +1 -3
  42. package/components/nav/WindowManager/ContainerLogs.vue +101 -3
  43. package/components/nav/WindowManager/ContainerShell.vue +6 -1
  44. package/components/nav/WindowManager/__tests__/ContainerLogs.test.ts +186 -0
  45. package/components/nav/WindowManager/index.vue +11 -10
  46. package/components/nav/__tests__/TopLevelMenu.test.ts +33 -0
  47. package/components/nav/__tests__/Type.test.ts +1 -1
  48. package/components/nuxt/nuxt-child.js +14 -78
  49. package/components/nuxt/nuxt.js +1 -1
  50. package/{layouts → components/templates}/blank.vue +1 -1
  51. package/{layouts → components/templates}/default.vue +8 -98
  52. package/{layouts → components/templates}/error.vue +10 -19
  53. package/{layouts → components/templates}/home.vue +4 -1
  54. package/{layouts → components/templates}/plain.vue +4 -1
  55. package/{layouts → components/templates}/standalone.vue +1 -1
  56. package/{layouts → components/templates}/unauthenticated.vue +1 -1
  57. package/composables/useCompactInput.ts +20 -0
  58. package/composables/useLabeledFormElement.ts +138 -0
  59. package/config/harvester-manager-types.js +2 -0
  60. package/config/private-label.js +22 -0
  61. package/config/product/explorer.js +3 -0
  62. package/config/product/fleet.js +6 -1
  63. package/config/product/manager.js +8 -2
  64. package/config/query-params.js +1 -0
  65. package/config/router.js +385 -364
  66. package/config/settings.ts +1 -0
  67. package/config/store.js +1 -1
  68. package/config/system-namespaces.js +3 -0
  69. package/config/table-headers.js +47 -0
  70. package/core/plugin-routes.ts +56 -114
  71. package/core/plugin.ts +16 -10
  72. package/core/plugins-loader.js +7 -9
  73. package/core/plugins.js +0 -3
  74. package/creators/app/files/.gitlab-ci.yml +1 -1
  75. package/detail/fleet.cattle.io.cluster.vue +11 -1
  76. package/detail/provisioning.cattle.io.cluster.vue +4 -3
  77. package/dialog/ScaleMachineDownDialog.vue +34 -17
  78. package/edit/__tests__/service.test.ts +89 -0
  79. package/edit/auth/googleoauth.vue +1 -5
  80. package/edit/catalog.cattle.io.clusterrepo.vue +18 -0
  81. package/edit/cloudcredential.vue +2 -0
  82. package/edit/configmap.vue +2 -1
  83. package/edit/networking.k8s.io.networkpolicy/__tests__/PolicyRuleTarget.spec.ts +1 -1
  84. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +15 -7
  85. package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +112 -0
  86. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +473 -0
  87. package/edit/provisioning.cattle.io.cluster/__tests__/{CustomCommand.tests.ts → CustomCommand.test.ts} +4 -0
  88. package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +1 -1
  89. package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +73 -0
  90. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +7 -1
  91. package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +386 -0
  92. package/edit/provisioning.cattle.io.cluster/import.vue +2 -2
  93. package/edit/provisioning.cattle.io.cluster/index.vue +92 -36
  94. package/edit/provisioning.cattle.io.cluster/rke2.vue +171 -583
  95. package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +137 -0
  96. package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +157 -0
  97. package/edit/provisioning.cattle.io.cluster/{Basics.vue → tabs/Basics.vue} +94 -19
  98. package/edit/provisioning.cattle.io.cluster/{MachinePool.vue → tabs/MachinePool.vue} +1 -0
  99. package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +135 -0
  100. package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +189 -0
  101. package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +144 -0
  102. package/edit/provisioning.cattle.io.cluster/tabs/upgrade/index.vue +76 -0
  103. package/edit/service.vue +12 -0
  104. package/edit/workload/mixins/workload.js +1 -1
  105. package/initialize/App.js +25 -71
  106. package/initialize/client.js +21 -162
  107. package/initialize/index.js +27 -123
  108. package/list/management.cattle.io.feature.vue +1 -7
  109. package/list/node.vue +1 -0
  110. package/machine-config/__tests__/vmwarevsphere.test.ts +100 -21
  111. package/machine-config/vmwarevsphere.vue +73 -51
  112. package/middleware/authenticated.js +10 -17
  113. package/mixins/auth-config.js +2 -7
  114. package/mixins/brand.js +29 -41
  115. package/mixins/labeled-form-element.ts +6 -1
  116. package/models/__tests__/management.cattle.io.node.ts +85 -0
  117. package/models/__tests__/management.cattle.io.nodepool.ts +83 -0
  118. package/models/__tests__/namespace.test.ts +49 -9
  119. package/models/__tests__/workload.test.ts +91 -0
  120. package/models/cluster/node.js +4 -4
  121. package/models/cluster.x-k8s.io.machinedeployment.js +14 -0
  122. package/models/fleet.cattle.io.cluster.js +4 -0
  123. package/models/fleet.cattle.io.gitrepo.js +56 -13
  124. package/models/management.cattle.io.kontainerdriver.js +1 -1
  125. package/models/management.cattle.io.node.js +18 -14
  126. package/models/management.cattle.io.nodepool.js +17 -0
  127. package/models/namespace.js +1 -1
  128. package/models/pod.js +20 -0
  129. package/models/provisioning.cattle.io.cluster.js +20 -3
  130. package/models/secret.js +117 -18
  131. package/models/workload.js +16 -0
  132. package/models/workload.service.js +18 -0
  133. package/package.json +10 -9
  134. package/pages/about.vue +0 -1
  135. package/pages/account/create-key.vue +0 -1
  136. package/pages/account/index.vue +0 -1
  137. package/pages/auth/login.vue +0 -1
  138. package/pages/auth/logout.vue +0 -2
  139. package/pages/auth/setup.vue +0 -4
  140. package/pages/auth/verify.vue +14 -8
  141. package/pages/c/_cluster/apps/charts/install.vue +4 -4
  142. package/pages/c/_cluster/apps/index.vue +0 -2
  143. package/pages/c/_cluster/auth/index.vue +0 -2
  144. package/pages/c/_cluster/ecm/index.vue +0 -2
  145. package/pages/c/_cluster/explorer/index.vue +28 -2
  146. package/pages/c/_cluster/fleet/index.vue +1 -1
  147. package/pages/c/_cluster/index.vue +0 -2
  148. package/pages/c/_cluster/settings/banners.vue +0 -2
  149. package/pages/c/_cluster/settings/brand.vue +0 -2
  150. package/pages/c/_cluster/settings/index.vue +0 -2
  151. package/pages/c/_cluster/settings/links.vue +0 -1
  152. package/pages/c/_cluster/settings/performance.vue +0 -1
  153. package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +2 -1
  154. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +10 -46
  155. package/pages/c/_cluster/uiplugins/index.vue +0 -2
  156. package/pages/diagnostic.vue +1 -2
  157. package/pages/fail-whale.vue +0 -1
  158. package/pages/prefs.vue +0 -1
  159. package/pages/support/index.vue +2 -8
  160. package/pkg/auto-import.js +1 -1
  161. package/plugins/axios.js +0 -36
  162. package/plugins/back-button.js +3 -5
  163. package/plugins/codemirror-loader.js +1 -1
  164. package/plugins/codemirror.js +41 -0
  165. package/plugins/dashboard-store/__tests__/{mutations.spec.ts → mutations.test.ts} +1 -1
  166. package/plugins/dashboard-store/__tests__/resource-class.test.ts +49 -0
  167. package/plugins/dashboard-store/__tests__/utils/store-mocks.ts +7 -0
  168. package/plugins/dashboard-store/actions.js +30 -4
  169. package/plugins/dashboard-store/classify.js +1 -18
  170. package/plugins/dashboard-store/getters.js +10 -5
  171. package/plugins/dashboard-store/index.js +0 -12
  172. package/plugins/dashboard-store/mutations.js +0 -4
  173. package/plugins/dashboard-store/resource-class.js +59 -18
  174. package/plugins/steve/__tests__/steve-class.spec.ts +59 -0
  175. package/plugins/steve/__tests__/utils/steve-mocks.ts +31 -0
  176. package/plugins/steve/getters.js +4 -1
  177. package/plugins/steve/norman-class.js +19 -0
  178. package/plugins/steve/steve-class.js +22 -0
  179. package/plugins/steve/subscribe.js +4 -10
  180. package/rancher-components/Accordion/Accordion.test.ts +45 -0
  181. package/rancher-components/Accordion/Accordion.vue +85 -0
  182. package/rancher-components/Accordion/index.ts +1 -0
  183. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +19 -2
  184. package/rancher-components/Form/LabeledInput/LabeledInput.vue +12 -1
  185. package/rancher-components/Form/Radio/RadioButton.test.ts +7 -3
  186. package/rancher-components/Form/Radio/RadioGroup.test.ts +30 -0
  187. package/rancher-components/Form/Radio/RadioGroup.vue +4 -0
  188. package/rancher-components/StringList/StringList.test.ts +270 -0
  189. package/rancher-components/StringList/StringList.vue +57 -18
  190. package/rancher-components/components/Accordion/Accordion.test.ts +45 -0
  191. package/rancher-components/components/Accordion/Accordion.vue +85 -0
  192. package/rancher-components/components/Accordion/index.ts +1 -0
  193. package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +19 -2
  194. package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +4 -1
  195. package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +50 -0
  196. package/scripts/extension/parse-tag-name +2 -2
  197. package/scripts/publish-shell.sh +10 -0
  198. package/scripts/test-plugins-build.sh +85 -9
  199. package/server/har-file.js +183 -0
  200. package/store/catalog.js +1 -1
  201. package/store/features.js +1 -0
  202. package/store/i18n.js +11 -0
  203. package/store/index.js +10 -11
  204. package/store/prefs.js +33 -35
  205. package/store/type-map.js +8 -7
  206. package/tsconfig.json +35 -9
  207. package/tsconfig.paths.json +18 -0
  208. package/types/shell/index.d.ts +345 -214
  209. package/utils/__tests__/create-yaml.test.ts +60 -0
  210. package/utils/axios.js +0 -19
  211. package/utils/azure.js +24 -0
  212. package/utils/create-yaml.js +17 -10
  213. package/utils/monitoring.js +1 -1
  214. package/utils/nuxt.js +18 -39
  215. package/utils/object.js +14 -0
  216. package/utils/router.scrollBehavior.js +12 -14
  217. package/utils/time.js +1 -1
  218. package/utils/url.ts +1 -1
  219. package/vue.config.js +23 -2
  220. package/.DS_Store +0 -0
  221. package/assets/images/providers/aks-black.svg +0 -28
  222. package/assets/images/providers/aks.svg +0 -31
  223. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +0 -234
  224. package/initialize/layouts.ts +0 -26
  225. package/mixins/fetch.server.js +0 -73
  226. package/pages/c/index.vue +0 -9
  227. package/pages/rio/mesh.vue +0 -508
  228. package/plugins/transitions.js +0 -4
  229. package/scripts/.DS_Store +0 -0
  230. package/scripts/verdaccio.log +0 -205
  231. package/tsconfig.default.json +0 -46
  232. package/yarn-error.log +0 -200
  233. /package/components/form/__tests__/{NameNsDescription.ts → NameNsDescription.test.ts} +0 -0
  234. /package/edit/networking.k8s.io.networkpolicy/__tests__/utils/{selectors.ts → selectors.test.ts} +0 -0
  235. /package/edit/provisioning.cattle.io.cluster/{AgentConfiguration.vue → tabs/AgentConfiguration.vue} +0 -0
  236. /package/edit/provisioning.cattle.io.cluster/{MemberRoles.vue → tabs/MemberRoles.vue} +0 -0
  237. /package/edit/provisioning.cattle.io.cluster/{S3Config.vue → tabs/etcd/S3Config.vue} +0 -0
  238. /package/edit/provisioning.cattle.io.cluster/{ACE.vue → tabs/networking/ACE.vue} +0 -0
  239. /package/edit/provisioning.cattle.io.cluster/{RegistryConfigs.vue → tabs/registries/RegistryConfigs.vue} +0 -0
  240. /package/edit/provisioning.cattle.io.cluster/{RegistryMirrors.vue → tabs/registries/RegistryMirrors.vue} +0 -0
  241. /package/edit/provisioning.cattle.io.cluster/{DrainOptions.vue → tabs/upgrade/DrainOptions.vue} +0 -0
  242. /package/plugins/dashboard-store/__tests__/{actions.spec.ts → actions.test.ts} +0 -0
  243. /package/plugins/dashboard-store/__tests__/{getters.spec.ts → getters.test.ts} +0 -0
@@ -1,205 +0,0 @@
1
- info --- config file - /Users/aalves/.config/verdaccio/config.yaml
2
- info --- the "crypt" algorithm is deprecated consider switch to "bcrypt" in the configuration file. Read the documentation for additional details
3
- info --- using htpasswd file: /Users/aalves/.config/verdaccio/htpasswd
4
- info --- plugin successfully loaded: verdaccio-htpasswd
5
- info --- plugin successfully loaded: verdaccio-audit
6
- warn --- http address - http://localhost:4873/ - verdaccio/5.27.0
7
- info <-- 127.0.0.1 requested 'PUT /-/user/admin'
8
- http <-- 200, user: null(127.0.0.1), req: 'PUT /-/user/admin', bytes: 40/0
9
- info --- the user admin has been added
10
- http <-- 201, user: admin(127.0.0.1), req: 'PUT /-/user/admin', bytes: 40/74
11
- info <-- 127.0.0.1 requested 'GET /'
12
- http <-- 200, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
13
- http <-- 200, user: null(127.0.0.1), req: 'GET /', bytes: 0/550
14
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
15
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
16
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
17
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
18
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/1867
19
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
20
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
21
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/101727
22
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/903279
23
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
24
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
25
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/1009
26
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
27
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
28
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/3
29
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
30
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
31
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
32
- info <-- 127.0.0.1 requested 'GET /'
33
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
34
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
35
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
36
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
37
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
38
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
39
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
40
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
41
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
42
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
43
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
44
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
45
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
46
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
47
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
48
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
49
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
50
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
51
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
52
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
53
- info <-- 127.0.0.1 requested 'GET /'
54
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
55
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
56
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
57
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
58
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
59
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
60
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
61
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
62
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
63
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
64
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
65
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
66
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
67
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
68
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
69
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
70
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
71
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
72
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
73
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
74
- info <-- 127.0.0.1 requested 'GET /'
75
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
76
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
77
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
78
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
79
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
80
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
81
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
82
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
83
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
84
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
85
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
86
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
87
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
88
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
89
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
90
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
91
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
92
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
93
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
94
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
95
- info <-- 127.0.0.1 requested 'GET /'
96
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
97
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
98
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
99
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
100
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
101
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
102
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
103
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
104
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
105
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
106
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
107
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
108
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
109
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
110
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
111
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
112
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
113
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
114
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
115
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
116
- info <-- 127.0.0.1 requested 'PUT /@rancher%2fshell'
117
- info --- auth/allow_action: access granted to: admin
118
- info --- admin is allowed publish for @rancher/shell
119
- http <-- 200, user: admin(127.0.0.1), req: 'PUT /@rancher%2fshell', bytes: 2696205/0
120
- info --- making request: 'GET https://registry.npmjs.org/@rancher%2Fshell'
121
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fshell' (streaming)
122
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fshell', bytes: 0/233704
123
- http <-- 201, user: admin(127.0.0.1), req: 'PUT /@rancher%2fshell', bytes: 2696205/53
124
- info <-- 127.0.0.1 requested 'PUT /@rancher%2fcreate-app'
125
- info --- auth/allow_action: access granted to: admin
126
- info --- admin is allowed publish for @rancher/create-app
127
- http <-- 200, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-app', bytes: 6879/0
128
- info --- making request: 'GET https://registry.npmjs.org/@rancher%2Fcreate-app'
129
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-app' (streaming)
130
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-app', bytes: 0/70025
131
- http <-- 201, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-app', bytes: 6879/53
132
- info <-- 127.0.0.1 requested 'PUT /@rancher%2fcreate-pkg'
133
- info --- auth/allow_action: access granted to: admin
134
- info --- admin is allowed publish for @rancher/create-pkg
135
- http <-- 200, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-pkg', bytes: 5771/0
136
- info --- making request: 'GET https://registry.npmjs.org/@rancher%2Fcreate-pkg'
137
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-pkg' (streaming)
138
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-pkg', bytes: 0/66370
139
- http <-- 201, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-pkg', bytes: 5771/53
140
- info <-- 127.0.0.1 requested 'PUT /@rancher%2fcreate-update'
141
- info --- auth/allow_action: access granted to: admin
142
- info --- admin is allowed publish for @rancher/create-update
143
- http <-- 200, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-update', bytes: 8569/0
144
- info --- making request: 'GET https://registry.npmjs.org/@rancher%2Fcreate-update'
145
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-update' (streaming)
146
- http --- 200, req: 'GET https://registry.npmjs.org/@rancher%2Fcreate-update', bytes: 0/51582
147
- http <-- 201, user: admin(127.0.0.1), req: 'PUT /@rancher%2fcreate-update', bytes: 8569/53
148
- info <-- 127.0.0.1 requested 'GET /'
149
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
150
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
151
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
152
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
153
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
154
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
155
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
156
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
157
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
158
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
159
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
160
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
161
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
162
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
163
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
164
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
165
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
166
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
167
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
168
- info --- auth/allow_action: access granted to: undefined
169
- info --- allowed access for @rancher/shell
170
- info --- auth/allow_action: access granted to: undefined
171
- info --- allowed access for @rancher/create-app
172
- info --- auth/allow_action: access granted to: undefined
173
- info --- allowed access for @rancher/create-pkg
174
- info --- auth/allow_action: access granted to: undefined
175
- info --- allowed access for @rancher/create-update
176
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/3350
177
- info <-- 127.0.0.1 requested 'GET /'
178
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
179
- http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
180
- info <-- 127.0.0.1 requested 'GET /-/static/runtime.fed125035fcb8864cc73.js'
181
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
182
- info <-- 127.0.0.1 requested 'GET /-/static/vendors.fed125035fcb8864cc73.js'
183
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
184
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/runtime.fed125035fcb8864cc73.js', bytes: 0/0
185
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.fed125035fcb8864cc73.js', bytes: 0/0
186
- info <-- 127.0.0.1 requested 'GET /-/static/main.fed125035fcb8864cc73.js'
187
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
188
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.fed125035fcb8864cc73.js', bytes: 0/0
189
- info <-- 127.0.0.1 requested 'GET /-/static/Home.fed125035fcb8864cc73.js'
190
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
191
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/Home.fed125035fcb8864cc73.js', bytes: 0/0
192
- info <-- 127.0.0.1 requested 'GET /-/verdaccio/data/packages'
193
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
194
- info <-- 127.0.0.1 requested 'GET /-/static/favicon.ico'
195
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/0
196
- http <-- 200, user: null(127.0.0.1), req: 'GET /-/static/favicon.ico', bytes: 0/2054
197
- info --- auth/allow_action: access granted to: undefined
198
- info --- allowed access for @rancher/shell
199
- info --- auth/allow_action: access granted to: undefined
200
- info --- allowed access for @rancher/create-app
201
- info --- auth/allow_action: access granted to: undefined
202
- info --- allowed access for @rancher/create-pkg
203
- info --- auth/allow_action: access granted to: undefined
204
- info --- allowed access for @rancher/create-update
205
- http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/data/packages', bytes: 0/0
@@ -1,46 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2018",
4
- "module": "ESNext",
5
- "moduleResolution": "Node",
6
- "lib": [
7
- "ESNext",
8
- "ESNext.AsyncIterable",
9
- "DOM"
10
- ],
11
- "esModuleInterop": true,
12
- "allowJs": true,
13
- "sourceMap": true,
14
- "strict": true,
15
- "noEmit": false,
16
- "baseUrl": ".",
17
- "rootDir": ".",
18
- "paths": {
19
- "~/*": [
20
- "../*"
21
- ],
22
- "@/*": [
23
- "../*"
24
- ],
25
- "@shell/*": [
26
- "../shell/*"
27
- ],
28
- "@pkg/*": [
29
- "../shell/pkg/*"
30
- ]
31
- },
32
- "typeRoots": [
33
- "./node_modules/@types"
34
- ],
35
- },
36
- "exclude": [
37
- "node_modules",
38
- ".nuxt",
39
- "dist",
40
- "dist-pkg",
41
- "shell/creators",
42
- "shell/scripts",
43
- "script/standalone",
44
- "docusaurus"
45
- ]
46
- }
package/yarn-error.log DELETED
@@ -1,200 +0,0 @@
1
- Arguments:
2
- /Users/aalves/.nvm/versions/node/v16.19.1/bin/node /Users/aalves/.nvm/versions/node/v16.19.1/bin/yarn publish . --new-version 0.3.22 --no-git-tag-version --access public
3
-
4
- PATH:
5
- /Users/aalves/.rd/bin:/Users/aalves/.nvm/versions/node/v16.19.1/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/aalves/.rd/bin:/Users/aalves/.nvm/versions/node/v16.19.1/bin:/opt/homebrew/bin:/opt/homebrew/sbin
6
-
7
- Yarn version:
8
- 1.22.19
9
-
10
- Node version:
11
- 16.19.1
12
-
13
- Platform:
14
- darwin arm64
15
-
16
- Trace:
17
- Error: https://registry.yarnpkg.com/-/user/org.couchdb.user:aalves08: failed to authenticate: Could not authenticate aalves08: bad password
18
- at Request.params.callback [as _callback] (/Users/aalves/.nvm/versions/node/v16.19.1/lib/node_modules/yarn/lib/cli.js:66145:18)
19
- at Request.self.callback (/Users/aalves/.nvm/versions/node/v16.19.1/lib/node_modules/yarn/lib/cli.js:140890:22)
20
- at Request.emit (node:events:513:28)
21
- at Request.<anonymous> (/Users/aalves/.nvm/versions/node/v16.19.1/lib/node_modules/yarn/lib/cli.js:141862:10)
22
- at Request.emit (node:events:513:28)
23
- at IncomingMessage.<anonymous> (/Users/aalves/.nvm/versions/node/v16.19.1/lib/node_modules/yarn/lib/cli.js:141784:12)
24
- at Object.onceWrapper (node:events:627:28)
25
- at IncomingMessage.emit (node:events:525:35)
26
- at endReadableNT (node:internal/streams/readable:1358:12)
27
- at processTicksAndRejections (node:internal/process/task_queues:83:21)
28
-
29
- npm manifest:
30
- {
31
- "name": "@rancher/shell",
32
- "version": "0.3.22",
33
- "description": "Rancher Dashboard Shell",
34
- "repository": "https://github.com/rancherlabs/dashboard",
35
- "license": "Apache-2.0",
36
- "author": "SUSE",
37
- "private": false,
38
- "engines": {
39
- "node": ">=12"
40
- },
41
- "files": [
42
- "**/*"
43
- ],
44
- "scripts": {
45
- "clean": "./scripts/clean",
46
- "lint": "./node_modules/.bin/eslint --max-warnings 0 --ext .ts,.js,.vue .",
47
- "test": "./node_modules/.bin/nyc ava --serial --verbose",
48
- "dev": "./node_modules/.bin/vue-cli-service dev",
49
- "docker-dev": "docker run --rm --name dashboard-dev -p 8005:8005 -e API=$API -v $(pwd):/src -v dashboard_node:/src/node_modules rancher/dashboard:dev",
50
- "build": "./node_modules/.bin/vue-cli-service build",
51
- "analyze": "./node_modules/.bin/vue-cli-service build --report",
52
- "start": "./node_modules/.bin/vue-cli-service start",
53
- "cy:run": "cypress run",
54
- "cy:open": "cypress open",
55
- "e2e:pre": "NODE_ENV=dev yarn build",
56
- "e2e:run": "NODE_ENV=dev START_SERVER_AND_TEST_INSECURE=1 start-server-and-test start https://localhost:8005/ cy:run",
57
- "e2e:dev": "start-server-and-test dev https://localhost:8005 cy:open"
58
- },
59
- "dependencies": {
60
- "@aws-sdk/client-ec2": "3.1.0",
61
- "@aws-sdk/client-eks": "3.1.0",
62
- "@aws-sdk/client-kms": "3.8.1",
63
- "@babel/plugin-proposal-optional-chaining": "7.14.5",
64
- "@babel/plugin-proposal-private-property-in-object": "7.14.5",
65
- "@babel/preset-typescript": "7.16.7",
66
- "@innologica/vue-dropdown-menu": "0.1.3",
67
- "@novnc/novnc": "1.2.0",
68
- "@nuxt/types": "2.14.6",
69
- "@nuxt/typescript-build": "2.1.0",
70
- "@nuxtjs/axios": "5.12.0",
71
- "@nuxtjs/eslint-config-typescript": "6.0.1",
72
- "@nuxtjs/webpack-profile": "0.1.0",
73
- "@popperjs/core": "2.4.4",
74
- "@types/node": "16.4.3",
75
- "@typescript-eslint/eslint-plugin": "4.33.0",
76
- "@typescript-eslint/parser": "4.33.0",
77
- "@vue/cli-plugin-babel": "4.5.18",
78
- "@vue/cli-plugin-typescript": "4.5.18",
79
- "@vue/cli-service": "4.5.18",
80
- "@vue/test-utils": "1.2.1",
81
- "@vue/vue2-jest": "27.0.0",
82
- "add": "2.0.6",
83
- "ansi_up": "5.0.0",
84
- "babel-eslint": "10.1.0",
85
- "babel-plugin-module-resolver": "4.0.0",
86
- "babel-preset-vue": "2.0.2",
87
- "browser-env": "3.3.0",
88
- "cookie": "0.5.0",
89
- "cookie-universal-nuxt": "2.1.4",
90
- "core-js": "3.21.1",
91
- "cron-validator": "1.2.0",
92
- "cronstrue": "1.95.0",
93
- "cross-env": "6.0.3",
94
- "css-loader": "6.7.3",
95
- "csv-loader": "3.0.3",
96
- "cypress": "10.3.1",
97
- "d3": "7.3.0",
98
- "d3-selection": "1.4.1",
99
- "dagre-d3": "0.6.4",
100
- "dayjs": "1.8.29",
101
- "diff2html": "3.4.24",
102
- "dompurify": "2.4.5",
103
- "eslint": "7.32.0",
104
- "eslint-config-standard": "16.0.3",
105
- "eslint-import-resolver-node": "0.3.4",
106
- "eslint-module-utils": "2.6.1",
107
- "eslint-plugin-cypress": "2.12.1",
108
- "eslint-plugin-import": "2.23.4",
109
- "eslint-plugin-jest": "24.4.0",
110
- "eslint-plugin-n": "15.2.0",
111
- "eslint-plugin-vue": "9.10.0",
112
- "event-target-shim": "5.0.1",
113
- "express": "4.17.1",
114
- "file-saver": "2.0.2",
115
- "frontmatter-markdown-loader": "3.7.0",
116
- "identicon.js": "2.3.3",
117
- "intl-messageformat": "7.8.4",
118
- "is-url": "1.2.4",
119
- "jest": "27.5.1",
120
- "jest-serializer-vue": "2.0.2",
121
- "jexl": "2.2.2",
122
- "jquery": "3.5.1",
123
- "js-cookie": "2.2.1",
124
- "js-yaml": "4.1.0",
125
- "js-yaml-loader": "1.2.2",
126
- "jsdiff": "1.1.1",
127
- "jsdom-global": "3.0.2",
128
- "jsonpath-plus": "6.0.1",
129
- "jsrsasign": "10.5.25",
130
- "jszip": "3.8.0",
131
- "lodash": "4.17.21",
132
- "marked": "4.0.17",
133
- "nodemon": "2.0.22",
134
- "nuxt": "2.15.8",
135
- "nyc": "15.1.0",
136
- "papaparse": "5.3.0",
137
- "portal-vue": "2.1.7",
138
- "rancher-icons": "rancher/icons#v2.0.16",
139
- "require-extension-hooks": "0.3.3",
140
- "require-extension-hooks-babel": "1.0.0",
141
- "require-extension-hooks-vue": "3.0.0",
142
- "sass": "1.51.0",
143
- "sass-loader": "10.2.1",
144
- "serve-static": "1.14.1",
145
- "set-cookie-parser": "2.4.6",
146
- "shell-quote": "1.7.3",
147
- "sinon": "8.1.1",
148
- "start-server-and-test": "1.13.1",
149
- "style-loader": "1.2.1",
150
- "ts-node": "8.10.2",
151
- "typescript": "4.1.6",
152
- "url-parse": "1.5.10",
153
- "v-tooltip": "2.0.3",
154
- "vue": "2.7.14",
155
- "vue-clipboard2": "0.3.1",
156
- "vue-codemirror": "4.0.6",
157
- "vue-js-modal": "1.3.35",
158
- "vue-resize": "0.4.5",
159
- "vue-select": "3.18.3",
160
- "vue-server-renderer": "2.7.14",
161
- "vue-shortkey": "3.1.7",
162
- "vue-template-compiler": "2.7.14",
163
- "vue-virtual-scroll-list": "^2.3.4",
164
- "vue2-transitions": "0.3.0",
165
- "vuedraggable": "2.24.3",
166
- "vuex": "3.6.2",
167
- "webpack-bundle-analyzer": "4.5.0",
168
- "webpack-virtual-modules": "0.4.3",
169
- "xterm": "5.0.0",
170
- "xterm-addon-fit": "0.6.0",
171
- "xterm-addon-search": "0.10.0",
172
- "xterm-addon-web-links": "0.7.0",
173
- "xterm-addon-webgl": "0.13.0",
174
- "worker-loader": "3.0.8",
175
- "yarn": "1.22.18"
176
- },
177
- "resolutions": {
178
- "ejs": "^3.1.7",
179
- "json5": ">=2.2.2",
180
- "d3-color": ">=3.1.0",
181
- "glob-parent": ">=5.1.2",
182
- "node-forge": ">=1.3.0",
183
- "qs": ">=6.7.3",
184
- "nth-check": ">=2.0.1",
185
- "follow-redirects": ">=1.14.7",
186
- "merge": ">=2.1.1"
187
- },
188
- "nyc": {
189
- "extension": [
190
- ".js",
191
- ".vue"
192
- ]
193
- }
194
- }
195
-
196
- yarn manifest:
197
- No manifest
198
-
199
- Lockfile:
200
- No lockfile