mirror of https://gitlab.com/curben/blog
18 lines
502 B
Makefile
18 lines
502 B
Makefile
.PHONY: css
|
|
css:
|
|
./node_modules/.bin/postcss --use postcss-import --use precss --use autoprefixer --use cssnano source/css/source.css --output source/css/typing.css
|
|
|
|
.PHONY: copy
|
|
copy:
|
|
mkdir -p ../hexo-theme-unit-test/themes/typing
|
|
cp -r ./layout ../hexo-theme-unit-test/themes/typing/
|
|
cp -r ./source ../hexo-theme-unit-test/themes/typing/
|
|
cp -r ./languages ../hexo-theme-unit-test/themes/typing/
|
|
cp -r ./_config.yml ../hexo-theme-unit-test/themes/typing/
|
|
|
|
|
|
.PHONY: all
|
|
all:
|
|
make css
|
|
make copy
|