mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
6fa85b646f
swc_ecma_preset_env: - can inject polyfills automatically - can apply transforms automatically swc: - added env config to .swcrc
5 lines
123 B
Bash
Executable File
5 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
cat words.txt | awk '{$1=$1};1' | uniq | sort > words_sorted.txt
|
|
mv words_sorted.txt words.txt |