aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorKarissa McKelvey <karissa@users.noreply.github.com>2016-08-29 21:14:32 +0200
committerJoe Hand <joe@joeahand.com>2016-08-29 12:14:32 -0700
commit17926b349a0ab5a761b0a97dde27f71a1e1f332e (patch)
treeada2db81418b04e606fec42f909774ca4347e04b /package.json
parenta253694c308b7b337c7d781c4bbfddefe4bfe53e (diff)
downloaddat-docs-17926b349a0ab5a761b0a97dde27f71a1e1f332e.tar.gz
dat-docs-17926b349a0ab5a761b0a97dde27f71a1e1f332e.zip
Simplify tree (#19)
* simplify the doc tree * add faq and cookbook * add cookbook files * update build script * fix contents.json file * more examples, fix startBytes * add FAQ * Examples-> cookbook * update diy dat with more details and examples * fix package.json update * cleanup Dat capitalization + typos, fix #17 * format ecosystem page * add example dat links and typo fixes
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index d8e1b01..1554754 100644
--- a/package.json
+++ b/package.json
@@ -4,11 +4,11 @@
"description": "Documentation for Dat and the surrounding ecosystem.",
"main": "index.js",
"scripts": {
- "update": "npm run update:list && npm run update:docs",
+ "update": "npm run update:list && npm run update:build",
"update:list": "curl -Ssl https://raw.githubusercontent.com/clkao/awesome-dat/master/readme.md | grep '📔' | egrep -o 'github.com/[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]+' | cut -f 2- -d / | uniq > repos.txt",
"update:build": "cat repos.txt | ecosystem-docs sync && cat repos.txt | ecosystem-docs read | node build.js",
- "build:local": "npm run build:css && minidocs docs -c docs/contents.json -i welcome -o dist -l ./node_modules/dat-design/downloads/dat-data-logo.png -t 'Dat Data' -s assets/styles.css --pushstate",
- "build:deploy": "npm run build:css && minidocs docs -c docs/contents.json -i welcome -o dist -l ./node_modules/dat-design/downloads/dat-data-logo.png -t 'Dat Data' -s assets/styles.css --full-html",
+ "build:local": "npm run build:css && minidocs docs -c docs/contents.json -i dat -o dist -l ./node_modules/dat-design/downloads/dat-data-logo.png -t 'Dat Data' -s assets/styles.css --pushstate",
+ "build:deploy": "npm run build:css && minidocs docs -c docs/contents.json -i dat -o dist -l ./node_modules/dat-design/downloads/dat-data-logo.png -t 'Dat Data' -s assets/styles.css --full-html",
"build:css": "node-sass --importer node_modules/node-sass-magic-importer assets/styles.scss assets/styles.css",
"deploy": "npm run build:deploy && echo docs.dat-data.com > dist/CNAME && gh-pages -d dist",
"watch:css": "nodemon -e scss -x \"npm run build:local\"",