Skip to content

Commit

Permalink
Add marked and highlightjs to bower deps.
Browse files Browse the repository at this point in the history
these are needed by the documentation and not installed via the pull scripts
  • Loading branch information
ebidel committed May 28, 2014
1 parent 80b9e75 commit a16c939
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ handlers:
Access-Control-Allow-Origin: "*"

# New mappings for Bower
- url: /components/(marked|highlightjs)/(.*)
static_files: js/bower_components/\1/\2
upload: js/bower_components/(marked|highlightjs)/(.*)

- url: /components
static_dir: components
http_headers:
Expand Down
4 changes: 3 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
],
"dependencies": {
"smoothscroll": "~0.0.2",
"x-tag-imports": "x-tag/x-tag-imports"
"x-tag-imports": "x-tag/x-tag-imports",
"marked": "*",
"highlightjs": "*"
}
}
5 changes: 5 additions & 0 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@ npm install

./scripts/release.sh # update components, projects, etc.

# Install bower_components deps.
cd js
bower install
cd ..

grunt docs

0 comments on commit a16c939

Please sign in to comment.