Rename website->web in all scripts for consistency

This commit is contained in:
Kevin van Zonneveld 2015-12-11 10:34:45 +01:00
parent b7bc3a4fb9
commit 038df93035
3 changed files with 8 additions and 8 deletions

View file

@ -2,19 +2,19 @@ SHELL := /usr/bin/env bash
.PHONY: web-install
web-install:
npm run website:install
npm run web:install
.PHONY: web-build
web-build:
npm run website:build
npm run web:build
.PHONY: web-preview
web-preview:
npm run website:preview
npm run web:preview
.PHONY: web-deploy
web-deploy:
npm run website:deploy
npm run web:deploy
.PHONY: watch
watch:

View file

@ -17,10 +17,10 @@
"watch:css": "nodemon -e src/scss -x \"npm run build:css\"",
"watch:examples": "cd website && node watch.js",
"watch:js": "nodemon --watch src -e js --ignore src/scss -x \"npm run build:lib\"",
"website:build": "cd website && node update.js && ./node_modules/.bin/hexo generate",
"website:install": "cd website && npm install",
"website:deploy": "./bin/website-deploy",
"website:preview": "npm run website:build && cd website && ./node_modules/.bin/hexo server --debug"
"web:build": "cd website && node update.js && ./node_modules/.bin/hexo generate",
"web:install": "cd website && npm install",
"web:deploy": "./bin/web-deploy",
"web:preview": "npm run web:build && cd website && ./node_modules/.bin/hexo server --debug"
},
"repository": {
"type": "git",