|
@@ -48,34 +48,34 @@
|
|
"watch": "run-p gulp:watch cljs:watch",
|
|
"watch": "run-p gulp:watch cljs:watch",
|
|
"electron-watch": "run-p gulp:watch cljs:electron-watch",
|
|
"electron-watch": "run-p gulp:watch cljs:electron-watch",
|
|
"app-watch": "run-p gulp:watch cljs:app-watch",
|
|
"app-watch": "run-p gulp:watch cljs:app-watch",
|
|
- "dev": "run-p gulp:watch gulp:capacitor-new-watch cljs:dev-watch",
|
|
|
|
|
|
+ "dev": "run-p gulp:watch gulp:mobile-watch cljs:dev-watch",
|
|
"release": "run-s gulp:build cljs:release",
|
|
"release": "run-s gulp:build cljs:release",
|
|
"release-app": "run-s gulp:build cljs:release-app",
|
|
"release-app": "run-s gulp:build cljs:release-app",
|
|
- "release-capacitor-new": "run-s gulp:buildCapacitorNew cljs:release-capacitor-new",
|
|
|
|
|
|
+ "release-mobile": "run-s gulp:buildMobile cljs:release-mobile",
|
|
"dev-release-app": "run-s gulp:build cljs:dev-release-app",
|
|
"dev-release-app": "run-s gulp:build cljs:dev-release-app",
|
|
"dev-electron-app": "gulp electron",
|
|
"dev-electron-app": "gulp electron",
|
|
"release-electron": "run-s gulp:build && gulp electronMaker",
|
|
"release-electron": "run-s gulp:build && gulp electronMaker",
|
|
"debug-electron": "cd static/ && yarn electron:debug",
|
|
"debug-electron": "cd static/ && yarn electron:debug",
|
|
"e2e-test": "cross-env DEBUG=pw:api CI=true npx playwright test --reporter github",
|
|
"e2e-test": "cross-env DEBUG=pw:api CI=true npx playwright test --reporter github",
|
|
- "sync-android-release": "yarn clean && yarn release-capacitor-new && rm -rf ./static/capacitor/**/*.map && npx cap sync android",
|
|
|
|
- "sync-ios-release": "yarn clean && yarn release-capacitor-new && rm -rf ./static/capacitor/**/*.map && npx cap sync ios",
|
|
|
|
|
|
+ "sync-android-release": "yarn clean && yarn release-mobile && rm -rf ./static/mobile/**/*.map && npx cap sync android",
|
|
|
|
+ "sync-ios-release": "yarn clean && yarn release-mobile && rm -rf ./static/mobile/**/*.map && npx cap sync ios",
|
|
"clean": "gulp clean",
|
|
"clean": "gulp clean",
|
|
"test": "run-s cljs:test cljs:run-test",
|
|
"test": "run-s cljs:test cljs:run-test",
|
|
"report": "run-s cljs:report",
|
|
"report": "run-s cljs:report",
|
|
"style:lint": "stylelint \"src/**/*.css\"",
|
|
"style:lint": "stylelint \"src/**/*.css\"",
|
|
"gulp:watch": "gulp watch",
|
|
"gulp:watch": "gulp watch",
|
|
"gulp:build": "cross-env NODE_ENV=production gulp build",
|
|
"gulp:build": "cross-env NODE_ENV=production gulp build",
|
|
- "gulp:buildCapacitorNew": "cross-env NODE_ENV=production gulp buildCapacitorNew",
|
|
|
|
|
|
+ "gulp:buildMobile": "cross-env NODE_ENV=production gulp buildMobile",
|
|
"css:build": "postcss tailwind.all.css -o static/css/style.css --verbose --env production",
|
|
"css:build": "postcss tailwind.all.css -o static/css/style.css --verbose --env production",
|
|
"css:watch": "cross-env TAILWIND_MODE=watch postcss tailwind.all.css -o static/css/style.css --verbose --watch",
|
|
"css:watch": "cross-env TAILWIND_MODE=watch postcss tailwind.all.css -o static/css/style.css --verbose --watch",
|
|
"cljs:watch": "clojure -M:cljs watch app electron",
|
|
"cljs:watch": "clojure -M:cljs watch app electron",
|
|
"cljs:storybook-watch": "clojure -M:cljs watch stories-dev",
|
|
"cljs:storybook-watch": "clojure -M:cljs watch stories-dev",
|
|
- "gulp:capacitor-new-watch": "gulp watchCapacitorNew",
|
|
|
|
- "css:capacitor-new-build": "postcss tailwind.capacitor.css -o static/capacitor/style.css --verbose --env production",
|
|
|
|
- "css:capacitor-new-watch": "cross-env TAILWIND_MODE=watch postcss tailwind.capacitor.css -o static/capacitor/style.css --verbose --watch",
|
|
|
|
- "cljs:capacitor-new-watch": "clojure -M:cljs watch capacitor-new",
|
|
|
|
- "cljs:release-capacitor-new": "clojure -M:cljs release capacitor-new",
|
|
|
|
- "cljs:dev-watch": "clojure -M:cljs watch app electron capacitor-new",
|
|
|
|
|
|
+ "gulp:mobile-watch": "gulp watchMobile",
|
|
|
|
+ "css:mobile-build": "postcss tailwind.mobile.css -o static/mobile/style.css --verbose --env production",
|
|
|
|
+ "css:mobile-watch": "cross-env TAILWIND_MODE=watch postcss tailwind.mobile.css -o static/mobile/style.css --verbose --watch",
|
|
|
|
+ "cljs:mobile-watch": "clojure -M:cljs watch mobile",
|
|
|
|
+ "cljs:release-mobile": "clojure -M:cljs release mobile",
|
|
|
|
+ "cljs:dev-watch": "clojure -M:cljs watch app electron mobile",
|
|
"cljs:app-watch": "clojure -M:cljs watch app",
|
|
"cljs:app-watch": "clojure -M:cljs watch app",
|
|
"cljs:electron-watch": "clojure -M:cljs watch app electron --config-merge \"{:asset-path \\\"./js\\\"}\"",
|
|
"cljs:electron-watch": "clojure -M:cljs watch app electron --config-merge \"{:asset-path \\\"./js\\\"}\"",
|
|
"cljs:release": "clojure -M:cljs release app publishing electron",
|
|
"cljs:release": "clojure -M:cljs release app publishing electron",
|