fix(docs): fixed docs not being available

This commit is contained in:
Dmitry Nehaychik 2017-09-25 15:08:40 +03:00
parent 65f6a0098a
commit e6b66f41ba
4 changed files with 40 additions and 38 deletions

View file

@ -15,6 +15,7 @@
"scripts": {
"ng": "ng",
"rimraf": "rimraf",
"wintersmith": "wintersmith",
"changelog": "standard-changelog",
"start": "ng serve",
"start:hmr": "ng serve --hmr",
@ -36,7 +37,8 @@
"clean": "npm cache clean && npm run rimraf -- node_modules doc typings coverage dist",
"clean:dist": "npm run rimraf -- dist",
"clean:coverage": "npm run rimraf -- coverage",
"docs:deploy": "wintersmith build -C docs && gh-pages -d docs/build",
"docs:build": "wintersmith build -C docs -o build/ng2-admin",
"docs:deploy": "npm run docs:build && gh-pages -d docs/build -r git@github.com:akveo/akveo.github.io.git -b master",
"docs:serve": "wintersmith preview -C docs"
},
"private": true,