Skip to content

Commit

Permalink
TypeDoc 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Aug 20, 2018
1 parent 2c6e6a6 commit 5ce827d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -9,13 +9,14 @@ node_js:
- '9'
- '8'
- '7'
- '6'
before_script:
- npm prune
script:
- npm run prepublishOnly
- npm run test
after_success:

install:
- rm -rf node_modules/typedoc-plugin-markdown
- npm prune
- npm install
branches:
except:
- /^v\d+\.\d+\.\d+$/
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -8,17 +8,17 @@
],
"scripts": {
"copy:static": "copyfiles --up 1 ./src/**/*.hbs ./dist/",
"copy:plugin": "copyfiles package.json './dist/**/*' node_modules/typedoc-plugin-markdown/",
"mocks": "npm run mocks:github && npm run mocks:bitbucket && npm run mocks:gitbook",
"mocks:github": "typedoc ./test/src --out ./test/out/github --theme markdown --gitRevision master --media test/src/media/ --includes test/src/inc/",
"mocks:bitbucket": "typedoc ./test/src --out ./test/out/bitbucket --theme markdown --gitRevision master --media test/src/media/ --includes test/src/inc/ --excludePrivate --readme none --mode file --mdFlavour bitbucket --mdSourceRepo 'https://bitbucket.org/owner/repository_name'",
"mocks:gitbook": "typedoc ./test/src --out ./test/out/gitbook --theme markdown --gitRevision master --mdEngine gitbook --media test/src/media/ --includes test/src/inc/",
"examples": "rm -rf examples/out && typedoc ./examples/src --out ./examples/out --theme markdown --gitRevision master --readme none --media test/src/media/ --includes test/src/inc/",
"lint": "tslint --project ./src/tsconfig.json",
"prepare": "rm -rf dist && tsc -p ./src/tsconfig.json && npm run copy:static",
"prepublishOnly": "npm run prepare && npm run lint && npm run test",
"pretest": "rm -rf tests/out && rm -rf node_modules/typedoc-plugin-markdown && npm run copy:plugin && npm run mocks",
"test": "mocha test/test.js"
"prepublishOnly": "npm install && npm run lint && npm run test",
"pretest": "npm run link && rm -rf tests/out && npm run mocks",
"test": "mocha test/test.js",
"link": "npm link && npm link typedoc-plugin-markdown"
},
"author": "Thomas Grey",
"license": "MIT",
Expand Down Expand Up @@ -60,4 +60,4 @@
"typescript"
]
}
}
}

0 comments on commit 5ce827d

Please sign in to comment.