Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate docs for xtermjs/xterm.js #44

Merged
merged 5 commits into from May 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
_site
.sass-cache
.jekyll-metadata

# Node.js
package-lock.json
node_modules/

_typedoc/
_xterm.js/
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
os: linux
node_js:
- 'lts/*'
before_install: npm i -g npm@6
notifications:
email: false
script: bin/update-docs
8 changes: 7 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Terminal front-end component written in JavaScript that works in th
baseurl: ""
url: "http://xtermjs.org"

version: "3.1.0"
version: "3.4"

markdown: kramdown

Expand All @@ -15,6 +15,12 @@ defaults:
include:
- _pages

exclude:
- gulpfile.js
- package.json
- node_modules/
- bin/

collections:
docs:
output: true
Expand Down
Loading