ic-mops 0.45.2 → 0.45.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## 0.45.3
6
+ - Fixed bug with missing `tar` package
7
+
5
8
  ## 0.45.2
6
9
  - Updated npm dependencies
7
10
 
package/bundle/cli.tgz CHANGED
Binary file
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.45.2",
3
+ "version": "0.45.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "bin/mops.js",
@@ -62,7 +62,8 @@
62
62
  "prompts": "2.4.2",
63
63
  "semver": "7.6.3",
64
64
  "stream-to-promise": "3.0.0",
65
- "string-width": "7.2.0"
65
+ "string-width": "7.2.0",
66
+ "tar": "7.4.3"
66
67
  },
67
68
  "devDependencies": {
68
69
  "@tsconfig/strictest": "2.0.5",
@@ -80,8 +81,7 @@
80
81
  "bun": "1.0.35",
81
82
  "esbuild": "0.23.0",
82
83
  "tsx": "4.16.5",
83
- "typescript": "5.5.4",
84
- "tar": "7.4.3"
84
+ "typescript": "5.5.4"
85
85
  },
86
86
  "overrides": {
87
87
  "@dfinity/agent": "2.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.45.2",
3
+ "version": "0.45.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "dist/bin/mops.js",
@@ -29,7 +29,7 @@
29
29
  "bundle:fix": "npx -y rexreplace 'new URL\\(\"\\.\\./templates' 'new URL(\"./templates' bundle/cli.js",
30
30
  "bundle:copy": "cp -r commands/bench bundle && cp -r bin declarations templates package.json bundle",
31
31
  "bundle:package-json": "tsx bundle-package-json.ts",
32
- "bundle:tar": "tar --exclude bundle/cli.tgz -czvf bundle/cli.tgz bundle",
32
+ "bundle:tar": "touch bundle/cli.tgz && tar --exclude bundle/cli.tgz -czvf bundle/cli.tgz bundle",
33
33
  "copy": "cp -r commands/bench dist/commands && cp -r declarations templates package.json bin dist | true",
34
34
  "prepare": "npm run build && npm run copy && npm run fix-dist",
35
35
  "fix-dist": "tsx ./fix-dist.ts",
@@ -77,7 +77,8 @@
77
77
  "prompts": "2.4.2",
78
78
  "semver": "7.6.3",
79
79
  "stream-to-promise": "3.0.0",
80
- "string-width": "7.2.0"
80
+ "string-width": "7.2.0",
81
+ "tar": "7.4.3"
81
82
  },
82
83
  "devDependencies": {
83
84
  "@tsconfig/strictest": "2.0.5",
@@ -95,8 +96,7 @@
95
96
  "bun": "1.0.35",
96
97
  "esbuild": "0.23.0",
97
98
  "tsx": "4.16.5",
98
- "typescript": "5.5.4",
99
- "tar": "7.4.3"
99
+ "typescript": "5.5.4"
100
100
  },
101
101
  "overrides": {
102
102
  "@dfinity/agent": "2.0.0",