replit-tools 1.1.22 → 1.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replit-tools",
3
- "version": "1.1.22",
3
+ "version": "1.1.23",
4
4
  "description": "DATA Tools - One command to set up Claude Code and Codex CLI on Replit with full persistence",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -51,8 +51,8 @@ auto_update_scripts() {
51
51
  local latest_ver="$1"
52
52
  local tmp_dir=$(mktemp -d)
53
53
 
54
- # Download and extract latest package
55
- if npm pack "${PACKAGE_NAME}@${latest_ver}" --pack-destination="${tmp_dir}" >/dev/null 2>&1; then
54
+ # Download and extract latest package (--prefer-online bypasses cache)
55
+ if npm pack "${PACKAGE_NAME}@${latest_ver}" --pack-destination="${tmp_dir}" --prefer-online >/dev/null 2>&1; then
56
56
  local tarball="${tmp_dir}/${PACKAGE_NAME}-${latest_ver}.tgz"
57
57
  if [ -f "${tarball}" ]; then
58
58
  tar -xzf "${tarball}" -C "${tmp_dir}" 2>/dev/null