We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e903dd commit 2604375Copy full SHA for 2604375
Makefile
@@ -38,3 +38,12 @@ test: ## runs tests
38
fix: ## auto-fixes (some) linter issues
39
cargo fix --allow-dirty --allow-staged
40
cargo clippy --fix --allow-dirty --allow-staged
41
+
42
+.PHONY: publish_dry_run
43
+publish_dry_run: ## dry run of publishing libraries to crates.io and JSR
44
+ echo "\033[1;35m[Packaging Rust]\033[0m"
45
+ cargo publish --dry-run
46
+ cargo package --list
47
+ echo "\033[1;35m[Packaging Typescript]\033[0m"
48
+ deno publish --dry-run --allow-dirty
49
+ echo "\033[1;35m[Finished Dry-Run Publish]\033[0m"
0 commit comments