Skip to content
Snippets Groups Projects
Commit e1972875 authored by Mathis Neumann's avatar Mathis Neumann
Browse files

add build scripts for docs

parent d46b9ddf
No related branches found
No related tags found
No related merge requests found
docs/
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
......@@ -15,3 +17,68 @@
/libpeerconnection.log
npm-debug.log
testem.log
# Created by https://www.gitignore.io/api/osx,windows,linux
### OSX ###
*.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
### Linux ###
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
\ No newline at end of file
......@@ -4,13 +4,16 @@
"description": "Web based user interface for the iObserve project",
"private": true,
"directories": {
"doc": "doc",
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "ember build",
"build": "npm run build-docs && ember build",
"start": "ember server",
"test": "ember test"
"test": "npm run lint-docs && ember test",
"lint-docs": "./node_modules/.bin/yuidoc --lint app",
"dev-docs": "./node_modules/.bin/yuidoc --server 5000 app",
"build-docs": "./node_modules/.bin/yuidoc app"
},
"repository": "",
"engines": {
......@@ -37,7 +40,6 @@
"ember-cli-sass": "5.3.1",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-cli-yuidoc": "0.8.3",
"ember-data": "^2.4.0",
"ember-data-fixture-adapter": "1.13.0",
"ember-data-url-templates": "0.1.1",
......@@ -51,13 +53,15 @@
"ember-truth-helpers": "1.2.0",
"loader.js": "^4.0.0",
"lodash": "^4.11.1",
"node-sass": "^3.8.0"
"node-sass": "^3.8.0",
"yuidocjs": "~0.10.2",
"yuidoc-bootstrap-theme": "^1.0.6"
},
"dependencies": {
"cytoscape": "^2.7.3",
"cytoscape-cola": "^1.4.0",
"cytoscape-cose-bilkent": "^1.3.6",
"yuidoc-bootstrap-theme": "^1.0.6"
"yuidocjs": "^0.10.2"
},
"yuidoc": {
"options": {
......@@ -71,7 +75,9 @@
"parseOnly": false,
"lint": false,
"themedir": "node_modules/yuidoc-bootstrap-theme",
"helpers": ["node_modules/yuidoc-bootstrap-theme/helpers/helpers.js"],
"helpers": [
"node_modules/yuidoc-bootstrap-theme/helpers/helpers.js"
],
"external": {
"data": [
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment