swc_ecmascript:
 - Make react / const modules configurable
This commit is contained in:
강동윤 2020-08-23 12:29:01 +09:00 committed by GitHub
parent 5000296967
commit db4ce50373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,9 @@ utils = ["swc_ecma_utils"]
transforms = ["swc_ecma_transforms"]
visit = ["swc_ecma_visit"]
react = ["swc_ecma_transforms", "swc_ecma_transforms/react"]
const-modules = ["swc_ecma_transforms", "swc_ecma_transforms/const-modules"]
[dependencies]
swc_ecma_ast = { version = "0.29.0", path ="./ast" }
swc_ecma_codegen = { version = "0.33.0", path ="./codegen", optional = true }

View File

@ -3,6 +3,7 @@
set -eu
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd $DIR
git checkout master
changed=0