@peerbit/server 4.1.0 → 4.1.1

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/lib/esm/cli.js CHANGED
@@ -945,7 +945,7 @@ export const cli = async (args) => {
945
945
  }
946
946
  for (const api of apis) {
947
947
  const newPrograms = await api.api.dependency.install(installCommand);
948
- api.log(`New programs available (${newPrograms.length}):`);
948
+ api.log(`New variants available (${newPrograms.length}):`);
949
949
  newPrograms.forEach((p) => {
950
950
  api.log(chalk.green(p));
951
951
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerbit/server",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "author": "dao.xyz",
5
5
  "repository": {
6
6
  "type": "git",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "devDependencies": {
57
57
  "@peerbit/test-lib": "^0.0.1",
58
- "@peerbit/test-utils": "1.0.29",
58
+ "@peerbit/test-utils": "1.0.30",
59
59
  "@types/tmp": "^0.2.3",
60
60
  "@types/yargs": "^17.0.24",
61
61
  "aws-sdk": "^2.1259.0",
@@ -65,7 +65,7 @@
65
65
  "@dao-xyz/libp2p-noise": "^13.0.1",
66
66
  "axios": "^1.4.0",
67
67
  "chalk": "^5.3.0",
68
- "peerbit": "2.0.11",
68
+ "peerbit": "2.0.12",
69
69
  "tar-stream": "^3.1.6",
70
70
  "tmp": "^0.2.1",
71
71
  "tty-table": "^4.2.1",
@@ -76,5 +76,5 @@
76
76
  "@aws-sdk/client-ec2": "^3.390.0",
77
77
  "@aws-sdk/client-route-53": "^3.391.0"
78
78
  },
79
- "gitHead": "e976ac33eb57f4b8f953938e68cfedec188521b8"
79
+ "gitHead": "ffd9ed60e2a9185a11f9d37eab74f4eb10addb30"
80
80
  }
package/src/cli.ts CHANGED
@@ -1086,7 +1086,7 @@ export const cli = async (args?: string[]) => {
1086
1086
  const newPrograms =
1087
1087
  await api.api.dependency.install(installCommand);
1088
1088
  api.log(
1089
- `New programs available (${newPrograms.length}):`
1089
+ `New variants available (${newPrograms.length}):`
1090
1090
  );
1091
1091
  newPrograms.forEach((p) => {
1092
1092
  api.log(chalk.green(p));