disable astro telemetry
This commit is contained in:
16
Makefile
16
Makefile
@@ -24,35 +24,35 @@ help:
|
|||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
install:
|
install:
|
||||||
nix develop --command "cd src && pnpm install"
|
nix develop --command sh -c "cd src && pnpm install"
|
||||||
|
|
||||||
# Start development server
|
# Start development server
|
||||||
dev:
|
dev:
|
||||||
nix develop --command "cd src && pnpm dev"
|
nix develop --command sh -c "cd src && pnpm dev"
|
||||||
|
|
||||||
# Build the project
|
# Build the project
|
||||||
build:
|
build:
|
||||||
nix develop --command "cd src && pnpm build"
|
nix develop --command sh -c "cd src && pnpm build"
|
||||||
|
|
||||||
# Run tests
|
# Run tests
|
||||||
test:
|
test:
|
||||||
nix develop --command "cd src && pnpm test"
|
nix develop --command sh -c "cd src && pnpm test"
|
||||||
|
|
||||||
# Run linter
|
# Run linter
|
||||||
lint:
|
lint:
|
||||||
nix develop --command "cd src && pnpm lint"
|
nix develop --command sh -c "cd src && pnpm lint"
|
||||||
|
|
||||||
# Format code
|
# Format code
|
||||||
format:
|
format:
|
||||||
nix develop --command "cd src && pnpm codeformat"
|
nix develop --command sh -c "cd src && pnpm codeformat"
|
||||||
|
|
||||||
# Run all checks
|
# Run all checks
|
||||||
check:
|
check:
|
||||||
nix develop --command "cd src && pnpm check"
|
nix develop --command sh -c "cd src && pnpm check"
|
||||||
|
|
||||||
# Clean build artifacts
|
# Clean build artifacts
|
||||||
clean:
|
clean:
|
||||||
nix develop --command "cd src && pnpm clean 2>/dev/null || true"
|
nix develop --command sh -c "cd src && pnpm clean 2>/dev/null || true"
|
||||||
rm -rf src/node_modules/.cache 2>/dev/null || true
|
rm -rf src/node_modules/.cache 2>/dev/null || true
|
||||||
rm -rf src/dist 2>/dev/null || true
|
rm -rf src/dist 2>/dev/null || true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user