@willbooster/wb 13.17.0 → 13.18.0

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.
@@ -0,0 +1,14 @@
1
+ #!/bin/bash
2
+
3
+ set -e
4
+
5
+ SCRIPT_DIR=$(cd -- "$(dirname -- "$0")" && pwd)
6
+
7
+ apt-get purge -qq -y curl wget || true
8
+ apt-get autoremove -qq -y
9
+ apt-get clean -qq
10
+ rm -rf /var/lib/apt/lists/*
11
+
12
+ if [ -z "${WB_KEEP_DOCKER_SCRIPTS:-}" ] && [ "$(basename "${SCRIPT_DIR}")" = "bash" ]; then
13
+ rm -rf "${SCRIPT_DIR}"
14
+ fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/wb",
3
- "version": "13.17.0",
3
+ "version": "13.18.0",
4
4
  "description": "CLI tool for WillBooster projects",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,6 +0,0 @@
1
- #!/bin/bash
2
-
3
- apt-get purge -qq -y curl wget || true \
4
- && apt-get autoremove -qq -y \
5
- && apt-get clean -qq \
6
- && rm -rf /var/lib/apt/lists/*