diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-11-13 16:51:44 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-11-13 16:51:44 +0100 |
commit | ef0a9577e231f5f553fd75aa6be639cea0754726 (patch) | |
tree | 2f7dd9238dc1fb3a56d0bd672295882f7eb5c508 | |
parent | 08d43d3a9553dffc7f7ea916ef3890b7208c5aec (diff) | |
download | garagehq.deuxfleurs.fr-improvement.tar.gz garagehq.deuxfleurs.fr-improvement.zip |
Fix style gen + publish APIimprovement
-rw-r--r-- | .drone.yml | 1 | ||||
-rwxr-xr-x | package.json | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ steps: commands: - git submodule update --init --recursive - cp -rv garage/doc/book content/documentation + - cp -rv garage/doc/api ./static/ - name: build-css image: node diff --git a/package.json b/package.json index e1e141d..fbad160 100755 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "", "main": "index.js", "scripts": { - "start": "npx tailwindcss -i ./src/input.css -o ./public/style.css --minify --watch" + "start": "npx tailwindcss -i ./src/input.css -o ./static/style.css --minify --watch" }, "keywords": [], "author": "", |