Skip to content

Commit 9be3daa

Browse files
authored
Chore: Add dev publish command (#1331)
* add dev publish command * add dev publish command * remove depends on override
1 parent ebfe12c commit 9be3daa

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,11 @@ ui-up:
8282

8383
ui-down:
8484
docker-compose down
85+
86+
ui-build:
87+
docker-compose -f docker-compose.yml -f docker-compose.build.yml run app
88+
89+
clean-build:
90+
rm -rf build/ && rm -rf dist/ && rm -rf *.egg-info
91+
92+
dev-publish: clean-build ui-build publish

docker-compose.build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
version: "3.11"
2+
services:
3+
app:
4+
command: bash -c "npm --prefix /app ci && npm --prefix /app run build"
5+
networks: []

0 commit comments

Comments
 (0)