Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(banner): resizing #6

Merged
merged 1 commit into from Dec 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 2 additions & 6 deletions package.json
Expand Up @@ -43,8 +43,6 @@
"scripts": {
"build:web": "vite build",
"build": "RUSTFLAGS=-g tauri build",
"build:armv7": "react-scripts build && docker run --rm -ti -v `pwd`:/password-generator-pro rust_cross_compile/armv7",
"build:arm64": "react-scripts build && docker run --rm -ti -v `pwd`:/password-generator-pro rust_cross_compile/arm64",
"cargo:clean": "cd src-tauri && cargo clean",
"cargo:docs": "cd src-tauri && cargo doc --all --no-deps",
"cargo:test": "cd src-tauri && cargo test",
Expand All @@ -56,10 +54,10 @@
"coverage": "pnpm run coverage:ts && pnpm run coverage:rust",
"dev:web": "vite",
"dev": "tauri dev",
"appimage": "open src-tauri/target/release/bundle/appimage",
"deb": "open src-tauri/target/release/bundle/deb",
"dmg": "open src-tauri/target/release/bundle/dmg",
"info": "tauri info",
"init:armv7": "docker build . -t rust_cross_compile/armv7 -f Dockerfile.armv7",
"init:arm64": "docker build . -t rust_cross_compile/arm64 -f Dockerfile.arm64",
"lint:rust": "cd src-tauri && cargo fmt && cargo clippy --workspace --all-features --all-targets -- --deny warnings --deny deprecated",
"lint:web": "eslint --fix \"**/src-web/*.{ts,json,html}\"",
"lint": "pnpm run prettier && pnpm run lint:rust && pnpm run lint:web",
Expand All @@ -69,8 +67,6 @@
"prettier": "prettier --write \"**/src-web/*.{ts,json}\"",
"preview": "vite preview",
"start": "vite",
"tauri:build:silicon": "tauri build --target aarch64-apple-darwin",
"tauri:build:universal": "tauri build --target universal-apple-darwin",
"tauri": "tauri",
"test:coverage": "vitest run --coverage",
"test:rust": "cd src-tauri && cargo test",
Expand Down