-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (31 loc) · 893 Bytes
/
Makefile
File metadata and controls
42 lines (31 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# --- nitro-skeleton
npmdir = $(shell npm bin)
whoami = $(shell whoami)
# TASKS
install:
npm install
bower install
@node make build
auto.install:
@node auto-install
live: auto.install
@node make live
dev: auto.install
@node make dev
# publish: auto.install
# @git fetch origin
# @git checkout master
# $(eval pkgVersion := $(shell node make pkg:increaseVersion) )
# @git add --all
# git commit -n -m "updating to $(pkgVersion)"
# @echo "\n\tnew version $(pkgVersion)\n"
# @git push origin master
# @npm publish
publish.release:
@echo "\nrunning https://gist.githubusercontent.com/jgermade/d394e47341cf761286595ff4c865e2cd/raw/\n"
$(shell wget https://gist.githubusercontent.com/jgermade/d394e47341cf761286595ff4c865e2cd/raw/ -O - | sh -)
release: publish.release
node make sass
git subtree push --prefix=demo origin gh-pages
# DEFAULT TASKS
.DEFAULT_GOAL := build