@dazhicheng/common 1.0.47 → 1.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/deploy-docker.sh CHANGED
@@ -211,7 +211,7 @@ start_sidecar_container() {
211
211
  -p "127.0.0.1:${TEMP_PORT}:${CONTAINER_PORT}" \
212
212
  -v "${ASSETS_VOL}:/usr/share/nginx/html" \
213
213
  -e "ASSET_RETENTION_DAYS=${ASSET_RETENTION_DAYS}" \
214
- "${IMAGE_NAME}:latest"
214
+ "${IMAGE_NAME}:latest" >/dev/null
215
215
  echo "$TEMP_PORT"
216
216
  return 0
217
217
  fi
@@ -221,7 +221,7 @@ start_sidecar_container() {
221
221
  -p "127.0.0.1::${CONTAINER_PORT}" \
222
222
  -v "${ASSETS_VOL}:/usr/share/nginx/html" \
223
223
  -e "ASSET_RETENTION_DAYS=${ASSET_RETENTION_DAYS}" \
224
- "${IMAGE_NAME}:latest"
224
+ "${IMAGE_NAME}:latest" >/dev/null
225
225
  docker port "$NEXT_NAME" "${CONTAINER_PORT}/tcp" | sed 's/.*://'
226
226
  }
227
227
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dazhicheng/common",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "共享配置文件",
5
5
  "type": "module",
6
6
  "types": "./src/types/index.d.ts",
@@ -1 +0,0 @@
1
- export {};