mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
21 lines
528 B
Bash
Executable File
21 lines
528 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
# Usage: Invoke this script using full path from a next app.
|
|
|
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
echo "Script dir: $SCRIPT_DIR"
|
|
export NEXT_DEBUG_MINIFY=1
|
|
|
|
# Remove preovious builds
|
|
rm -rf .next
|
|
|
|
# Install latest canary
|
|
# yarn add next@canary
|
|
|
|
# This is not useful data, as this is a script used only by me (@kdy1)
|
|
npx next telemetry disable
|
|
|
|
npx next build | grep '{ name:' | node "$SCRIPT_DIR/evaluate.js"
|
|
touch "$SCRIPT_DIR/../../tests/compress.rs"
|