You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,18 @@ help: ## Displays this list of targets with descriptions
41
41
42
42
## LIST: Targets that can be executed directly
43
43
44
+
.PHONE: assets
45
+
assets: ## Builds all assets (Css, JavaScript, Fonts etc).
46
+
ddev npm-build
47
+
48
+
.PHONE: assets-install
49
+
assets-install: ## Installs the node-modules needed to build the assets.
50
+
ddev npm-ci
51
+
52
+
.PHONE: assets-debug
53
+
assets-debug: ## Builds assets, keeping the sourcemap. It copies the output files directly into Documentation-GENERATED-temp so they can be tested without reloading.
54
+
ddev npm-debug
55
+
44
56
.PHONE: build-phar
45
57
build-phar: ## Creates a guides.phar file (github workflow)
0 commit comments