mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
1c1c9f0eae
swc_ecma_minifier: - Improve the script for extracting inputs from next.js app. - Ensure the name is removed on inlining. - Respect `inline_prevented`.
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
|
|
if command -v osascript &> /dev/null
|
|
then
|
|
osascript -e "display notification \"$1\" with title \"swc-minifier\""
|
|
fi
|