diff --git a/Makefile b/Makefile index f88ca4e..222ccae 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,3 @@ -BUILD_DIR = ./build -HARP_FILE = ./node_modules/.bin/harp - help: @echo "Usage" @echo " make install - install all NPM packages" @@ -8,13 +5,12 @@ help: @echo " make deploy - build the site and deploy it to GitHub Pages" install: - chmod +x ./bin/deploy.sh npm install run: - @$(HARP_FILE) server + npm run start deploy: @echo "Compiling site..." - $(HARP_FILE) compile -o $(BUILD_DIR) + npm run build ./bin/deploy.sh diff --git a/package.json b/package.json index d99fd4a..8015fed 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "stylus" ], "scripts": { - "start": "harp server" + "start": "harp server", + "build": "harp compile -o ./build" } } diff --git a/public/_data.json b/public/_data.json index cd5c0c2..dbca56b 100644 --- a/public/_data.json +++ b/public/_data.json @@ -19,13 +19,6 @@ "link": "http://www.workinthealps.co.uk", "display_link": "workinthealps.co.uk" }, - "atalantas": { - "title": "Atalanta's Society", - "objective": "Redesign and rebuild their website, adding event and membership management", - "completed": "January 2015", - "link": "https://www.atalantas.org", - "display_link": "atalantas.org" - }, "oxbikebox": { "title": "OxBikeBox", "link": "https://oxbikebox.com", diff --git a/public/images/atalantas.jpg b/public/images/atalantas.jpg deleted file mode 100644 index 67a0a31..0000000 Binary files a/public/images/atalantas.jpg and /dev/null differ