minify-html/python/prepare.py

15 lines
431 B
Python
Raw Normal View History

2021-04-07 06:50:05 -04:00
import shutil
import sys
feature = sys.argv[1]
module_name = "minify_html_core" if feature == "core" else "minify_html"
cargo_file = "Cargo.core.toml" if feature == "core" else "Cargo.js.toml"
with open("src/lib.template.rs", "r") as template:
actual = template.read().replace("REPLACE_WITH_MODULE_NAME", module_name)
with open("src/lib.rs", "w") as librs:
librs.write(actual)
shutil.copyfile(cargo_file, "Cargo.toml")