|
@@ -23,11 +23,13 @@
|
|
|
"shadow-cljs": "2.15.3",
|
|
|
"stylelint": "^13.8.0",
|
|
|
"stylelint-config-standard": "^20.0.0",
|
|
|
- "tailwindcss": "2.2.4"
|
|
|
+ "tailwindcss": "2.2.4",
|
|
|
+ "typescript": "^4.4.3"
|
|
|
},
|
|
|
"scripts": {
|
|
|
"watch": "run-p gulp:watch cljs:watch",
|
|
|
"electron-watch": "run-p gulp:watch cljs:electron-watch",
|
|
|
+ "app-watch": "run-p gulp:watch cljs:app-watch",
|
|
|
"release": "run-s gulp:build cljs:release",
|
|
|
"dev-release-app": "run-s gulp:build cljs:dev-release-app",
|
|
|
"dev-electron-app": "gulp electron",
|
|
@@ -43,6 +45,7 @@
|
|
|
"css:build": "postcss tailwind.all.css -o static/css/style.css --verbose --env production",
|
|
|
"css:watch": "TAILWIND_MODE=watch postcss tailwind.all.css -o static/css/style.css --verbose --watch",
|
|
|
"cljs:watch": "PATCH_PARSER_WORKER=$(cat \"./templates/patch.parser.woker.js\" | sed -e \"s#PWD_ROOT#`pwd`#g\") clojure -M:cljs watch parser-worker app electron",
|
|
|
+ "cljs:app-watch": "PATCH_PARSER_WORKER=$(cat \"./templates/patch.parser.woker.js\" | sed -e \"s#PWD_ROOT#`pwd`#g\") clojure -M:cljs watch parser-worker app",
|
|
|
"cljs:electron-watch": "PATCH_PARSER_WORKER=$(cat \"./templates/patch.parser.woker.js\" | sed -e \"s#PWD_ROOT#`pwd`#g\") clojure -M:cljs watch parser-worker app electron",
|
|
|
"cljs:release": "clojure -M:cljs release parser-worker app publishing electron",
|
|
|
"cljs:test": "clojure -M:test compile test",
|