Skip to content

Commit

Permalink
fix: add .PHONY target
Browse files Browse the repository at this point in the history
  • Loading branch information
theisel committed May 14, 2022
1 parent 74fe6c3 commit 47e47ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!make
prepare_dist_directory:
mkdir dist
cp -r ./component/. ./dist
Expand All @@ -10,3 +11,8 @@ npm_publish:
npm publish ./dist

publish: prepare_dist_directory npm_publish remove_dist_directory

.PHONY: prepare_dist_directory
.PHONY: remove_dist_directory
.PHONY: npm_publish
.PHONY: publish

0 comments on commit 47e47ea

Please sign in to comment.