codemirror-element/Makefile

14 lines
327 B
Makefile
Raw Normal View History

2025-02-12 10:55:23 +00:00
NODE_BIN=node_modules/.bin
DEST=../better-think-editor/dist
$(DEST)/code-editor.mjs: code-editor.bundle.mjs
cp $< $@
code-editor.terser.mjs: code-editor.bundle.mjs
$(NODE_BIN)/terser --compress --mangle -- $< > $@
code-editor.bundle.mjs: code-editor.mjs
$(NODE_BIN)/rollup $< -f es -p @rollup/plugin-node-resolve -o $@