diff --git a/.gitignore b/.gitignore index 6f5c55c..3b1842f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /dist/ +/master.tar.gz /node_modules/ /static/styles/ diff --git a/Makefile b/Makefile index 2b505b9..d2b32dd 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,11 @@ STYLES := static/styles -DIST := dist .PHONY: all all: build .PHONY: clean clean: - rm -rf $(STYLES) $(DIST) + rm -rf $(STYLES) master.tar.gz .PHONY: install install: @@ -19,13 +18,13 @@ build: .PHONY: release release: - mkdir -p dist/ - cp -r archetypes/ dist/ - cp -r i18n/ dist/ - cp -r layouts/ dist/ - cp -r static/ dist/ - cp -r DCO dist/ - cp -r LICENSE dist/ - cp -r MAINTAINERS dist/ - cp -r README.md dist/ - cp -r theme.toml dist/ + tar -cvzf master.tar.gz \ + archetypes/ \ + i18n/ \ + layouts/ \ + static/ \ + DCO \ + LICENSE \ + MAINTAINERS \ + README.md \ + theme.toml