Skip to content

Commit

Permalink
Use release builds for less space use
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically committed Jul 9, 2024
1 parent b2d0cb7 commit d1d8d7c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/app-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@modrinth/app-playground",
"scripts": {
"build": "cargo build",
"build": "cargo build --release",
"lint": "cargo fmt --check && cargo clippy -- -D warnings",
"fix": "cargo fmt && cargo clippy --fix",
"dev": "cargo run",
Expand Down
2 changes: 1 addition & 1 deletion apps/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@modrinth/app",
"scripts": {
"build": "tauri build --debug",
"build": "tauri build",
"dev": "tauri dev",
"test": "cargo test",
"lint": "cargo fmt --check && cargo clippy -- -D warnings",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@modrinth/app-lib",
"scripts": {
"build": "cargo build",
"build": "cargo build --release",
"lint": "cargo fmt --check && cargo clippy -- -D warnings",
"fix": "cargo fmt && cargo clippy --fix",
"test": "cargo test"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-macros/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@modrinth/app-macros",
"scripts": {
"build": "cargo build",
"build": "cargo build --release",
"lint": "cargo fmt --check && cargo clippy -- -D warnings",
"fix": "cargo fmt && cargo clippy --fix",
"test": "cargo test"
Expand Down

0 comments on commit d1d8d7c

Please sign in to comment.