@@ -103,10 +103,11 @@ help:
103
103
@echo " - clean-all delete all generated files (integration test, build, css and js files)"
104
104
@echo " - css rebuild only css files"
105
105
@echo " - js rebuild only js files"
106
- @echo " - generate run \" make css js\" and \" go generate\" "
106
+ @echo " - fomantic rebuild fomantic-ui files"
107
+ @echo " - generate run \" make fomantic css js\" and \" go generate\" "
107
108
@echo " - fmt format the code"
108
109
@echo " - generate-swagger generate the swagger spec from code comments"
109
- @echo " - swagger-validate check if the swagger spec is valide "
110
+ @echo " - swagger-validate check if the swagger spec is valid "
110
111
@echo " - revive run code linter revive"
111
112
@echo " - misspell check if a word is written wrong"
112
113
@echo " - vet examines Go source code and reports suspicious constructs"
159
160
$(GO ) vet $(PACKAGES )
160
161
161
162
.PHONY : generate
162
- generate : js css
163
+ generate : fomantic js css
163
164
GO111MODULE=on $(GO ) generate -mod=vendor $(PACKAGES )
164
165
165
166
.PHONY : generate-swagger
@@ -475,7 +476,7 @@ npm-update: node-check node_modules
475
476
npm install --package-lock
476
477
477
478
.PHONY : js
478
- js : node-check fomantic $(JS_DEST )
479
+ js : node-check $(JS_DEST )
479
480
480
481
$(JS_DEST ) : node_modules $(JS_SOURCES )
481
482
npx eslint web_src/js webpack.config.js
@@ -489,7 +490,7 @@ $(FOMANTIC_DEST_DIR): node_modules semantic.json web_src/fomantic/theme.config.l
489
490
npx gulp -f node_modules/fomantic-ui/gulpfile.js build
490
491
491
492
.PHONY : css
492
- css : node-check fomantic $(CSS_DEST )
493
+ css : node-check $(CSS_DEST )
493
494
494
495
$(CSS_DEST ) : node_modules $(CSS_SOURCES )
495
496
npx stylelint web_src/less
0 commit comments