Skip to content

Commit

Permalink
fix(build): ensures Makefile clean target deletest the dist/ folder
Browse files Browse the repository at this point in the history
  • Loading branch information
sverweij committed Oct 15, 2023
1 parent 20c271b commit ca1d7ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ docs/smcat-online-interpreter.min.js: $(ONLINE_INTERPRETER_SOURCES)

docs: $(GENERATED_SOURCES)

dist:
mkdir -p $@

public:
mkdir -p $@

Expand All @@ -84,7 +87,7 @@ clean:
rm -rf $(GENERATED_SOURCES)
rm -rf coverage
rm -rf public
rm -rf dist/esm
rm -rf dist

cli-build: $(GENERATED_CLI_SOURCES)

Expand Down

0 comments on commit ca1d7ca

Please sign in to comment.