Skip to content

Commit

Permalink
Added strict-ssl false to yarn (entrypoint dev container and package.…
Browse files Browse the repository at this point in the history
…json) | AAA this need to be fixed
  • Loading branch information
Alessandro Nardecchia authored and Alessandro Nardecchia committed Apr 8, 2024
1 parent 62e4147 commit 7d88d16
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
2 changes: 2 additions & 0 deletions ui/container-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

yarn config set strict-ssl false

if [[ -z "$1" ]]; then
echo "Missing parameter: append 'watch' or 'build'"
elif [[ "$1" = "watch" ]]; then
Expand Down
8 changes: 4 additions & 4 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"watch": "vue-cli-service build --watch"
"serve": "yarn config set strict-ssl false && vue-cli-service serve",
"build": "yarn config set strict-ssl false && vue-cli-service build",
"lint": "yarn config set strict-ssl false && vue-cli-service lint",
"watch": "yarn config set strict-ssl false && vue-cli-service build --watch"
},
"dependencies": {
"@carbon/icons-vue": "^10.37.0",
Expand Down
13 changes: 9 additions & 4 deletions ui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1012,10 +1012,10 @@
call-me-maybe "^1.0.1"
glob-to-regexp "^0.3.0"

"@nethserver/ns8-ui-lib@^0.1.18":
version "0.1.18"
resolved "https://registry.yarnpkg.com/@nethserver/ns8-ui-lib/-/ns8-ui-lib-0.1.18.tgz#3797a8df666a6826fefa8fe4ea56404e395dca85"
integrity sha512-aQn8AtrYX2GMextcHVn3tosNh0839GEyDjGiWYQi4lamb4CkI/nFDp8zwY8Iku6tg5Qbs1VV4ebf70U14ggtdg==
"@nethserver/ns8-ui-lib@^0.1.22":
version "0.1.32"
resolved "https://registry.yarnpkg.com/@nethserver/ns8-ui-lib/-/ns8-ui-lib-0.1.32.tgz#7556dd5c7f96ff166597552c9b20e02599d86ba6"
integrity sha512-CqW+Qr65uFiKYe/cG0qahRD+3ojXhDxMJ8Mf8M9CXDHY0WSWygyGYAftLxF8rtQkOdGHlaYv7cSK7TctHggHGA==
dependencies:
"@rollup/plugin-json" "^4.1.0"
core-js "^3.15.2"
Expand Down Expand Up @@ -8721,6 +8721,11 @@ vue-date-fns@^2.0.1:
dependencies:
date-fns "^2.0.0"

vue-debounce@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/vue-debounce/-/vue-debounce-4.0.1.tgz#4b482123911a9033d8f8cb0595e43efcf9ef7aa0"
integrity sha512-f2HeuLA5b9WY+cKVAU+ydwi9UHxgCWZQt/6HP/5QogthFwm/e+WMP5jpUq2WhEvnHisPkPMomYDRXDxc2AiQDw==

vue-eslint-parser@^7.0.0:
version "7.8.0"
resolved "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.8.0.tgz#43850bf856c9a69d62c0e12769609c338423684b"
Expand Down

0 comments on commit 7d88d16

Please sign in to comment.