Skip to content

Commit

Permalink
Merge pull request #2 from SuperuserLabs/dev/creator-donor-doors
Browse files Browse the repository at this point in the history
Basic doors for creators and donors
  • Loading branch information
ErikBjare authored Jun 27, 2018
2 parents 95439f1 + 90c3e42 commit ceff01a
Show file tree
Hide file tree
Showing 6 changed files with 1,588 additions and 56 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ build: build-superuser build-thankful
build-superuser:
$(eval DEST := "build-superuser")
npm run pug -- -o ${DEST} $(PUG_OPTS) index.pug
npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful/index.pug
npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful
npm run sass -- scss/index.scss ${DEST}/index.css
cp -r media ${DEST}/

build-thankful:
$(eval DEST := "build-thankful")
mkdir -p ${DEST}
echo "getthankful.io" > ${DEST}/CNAME
npm run pug -- -o ${DEST} $(PUG_OPTS) thankful/index.pug
npm run pug -- -o ${DEST} $(PUG_OPTS) thankful
npm run sass -- scss/index.scss ${DEST}/index.css
cp -r media ${DEST}/

build-dev:
$(eval DEST := "build-dev")
DEV=true npm run pug -- -o ${DEST} $(PUG_OPTS) index.pug
DEV=true npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful/index.pug
DEV=true npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful
npm run sass -- scss/index.scss ${DEST}/index.css
cp -r media ${DEST}/

Expand Down
Loading

0 comments on commit ceff01a

Please sign in to comment.