dcp-client 4.4.21 → 4.4.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/npm-hooks/prepack CHANGED
@@ -32,11 +32,18 @@ if [ ! "${NPM_PREPACK_SKIP_BUNDLE_REBUILD}" ]; then
32
32
  do
33
33
  eval unset ${var}
34
34
  done
35
- set > /tmp/q
36
35
  cd .dcp-build
37
- git checkout "$DCP_VERSION"
36
+ git checkout --force "$DCP_VERSION"
37
+ echo
38
+ . lib/ansi.incl.sh
39
+ echo "$(ansi green)Building DCP bundle:$(ansi reset)"
40
+ git log --color=always -1 "${DCP_VERSION}" | sed "s/^/$(ansi green)| $(ansi reset)/"
41
+ echo
38
42
  ./configure.sh --with-build="${BUILD_TYPE}" --disable-evaluator
39
- npm ci
43
+ # npm 9.8.0 bug workaround; it is ignoring --omit-dev /wg jan 2025
44
+ cat package.json | sed 's/devDependencies/XdevDependencies/' > package.json.$$
45
+ mv package.json.$$ package.json
46
+ npm ci --omit-dev
40
47
  cd ..
41
48
  build/bundle --no-cache --dcp=.dcp-build --build="${BUILD_TYPE}"
42
49
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcp-client",
3
- "version": "4.4.21",
3
+ "version": "4.4.23",
4
4
  "description": "Core libraries for accessing DCP network",
5
5
  "keywords": [
6
6
  "dcp"
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/Distributed-Compute-Labs/dcp-client/issues"
11
11
  },
12
12
  "dcp": {
13
- "version": "e6f69a3ad12c726ab7d30b95f2a5aee07943db6f",
13
+ "version": "fbe7835784bd15c9809199c5c08f37e6074cb371",
14
14
  "repository": "git@gitlab.com:Distributed-Compute-Protocol/dcp.git"
15
15
  },
16
16
  "repository": {