dsmt 0.3.1 → 0.3.2

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +8 -2
package/dist/cli.js CHANGED
@@ -6,7 +6,7 @@ const program = new Command();
6
6
  program
7
7
  .name("dsmt")
8
8
  .description("Docker Storage Migration Tool")
9
- .version("0.3.1");
9
+ .version("0.3.2");
10
10
  program
11
11
  .command("export")
12
12
  .argument("<src>", "volume name or bind mount path")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsmt",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Docker Storage Migration Tool",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,13 @@
8
8
  },
9
9
  "scripts": {
10
10
  "dev": "tsc --watch --preserveWatchOutput",
11
- "build": "tsc"
11
+ "build": "tsc",
12
+ "compile:linux-x64": "bun build --compile --minify --target=bun-linux-x64 ./src/cli.ts --outfile ./dist/bin/dsmt-linux-x64",
13
+ "compile:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 ./src/cli.ts --outfile ./dist/bin/dsmt-linux-arm64",
14
+ "compile:macos-x64": "bun build --compile --minify --target=bun-darwin-x64 ./src/cli.ts --outfile ./dist/bin/dsmt-macos-x64",
15
+ "compile:macos-arm64": "bun build --compile --minify --target=bun-darwin-arm64 ./src/cli.ts --outfile ./dist/bin/dsmt-macos-arm64",
16
+ "compile:windows-x64": "bun build --compile --minify --target=bun-windows-x64 ./src/cli.ts --outfile ./dist/bin/dsmt-windows-x64.exe",
17
+ "compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:macos-x64 && bun run compile:macos-arm64 && bun run compile:windows-x64"
12
18
  },
13
19
  "repository": {
14
20
  "type": "git",