2024-03-18 12:48:19 +00:00
|
|
|
default:
|
2017-12-02 18:37:29 +00:00
|
|
|
|
2018-04-22 18:14:49 +00:00
|
|
|
lint:
|
2021-01-27 20:04:25 +00:00
|
|
|
docker run --rm -ti \
|
|
|
|
-v "$(CURDIR):/src" \
|
|
|
|
-w "/src/src" \
|
|
|
|
node:12-alpine \
|
2021-08-26 13:29:25 +00:00
|
|
|
npx eslint --ext .js --fix frontend/app.js
|
2017-12-02 18:37:29 +00:00
|
|
|
|
2021-08-26 13:29:25 +00:00
|
|
|
assets: frontend/bundle.css
|
|
|
|
assets: frontend/bundle.js
|
2018-07-26 21:13:29 +00:00
|
|
|
|
2021-08-26 13:29:25 +00:00
|
|
|
frontend/bundle.css:
|
|
|
|
./ci/combine.sh $@ \
|
|
|
|
npm/bootstrap@4/dist/css/bootstrap.min.css \
|
|
|
|
npm/bootstrap-vue@2/dist/bootstrap-vue.min.css \
|
|
|
|
npm/bootswatch@5/dist/darkly/bootstrap.min.css \
|
|
|
|
gh/highlightjs/cdn-release@11.2.0/build/styles/androidstudio.min.css
|
|
|
|
|
|
|
|
frontend/bundle.js:
|
|
|
|
./ci/combine.sh $@ \
|
|
|
|
npm/axios@0.21.1 \
|
|
|
|
npm/vue@2 \
|
|
|
|
npm/vue-i18n@8.25.0/dist/vue-i18n.min.js \
|
|
|
|
npm/bootstrap-vue@2/dist/bootstrap-vue.min.js \
|
|
|
|
npm/showdown@1 \
|
|
|
|
gh/highlightjs/cdn-release@11.2.0/build/highlight.min.js
|
2018-07-26 21:13:29 +00:00
|
|
|
|
2017-12-02 18:43:46 +00:00
|
|
|
publish:
|
2024-03-18 12:48:19 +00:00
|
|
|
bash ci/build.sh
|