Skip to content

Commit

Permalink
fix: use the default docs theme (#396)
Browse files Browse the repository at this point in the history
* fix: use the default docs theme

closes #369

* chore: fix linter
  • Loading branch information
hugomrdias authored Jul 12, 2019
1 parent 7db9e4c commit ca63d17
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
"babel-plugin-transform-flow-comments": "^6.22.0",
"browserify-zlib": "~0.2.0",
"chalk": "^2.4.1",
"clean-documentation-theme": "~0.5.2",
"codecov": "^3.3.0",
"conventional-changelog": "^3.1.4",
"conventional-github-releaser": "^3.1.3",
Expand Down
1 change: 0 additions & 1 deletion src/docs/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ function build (ctx) {
if (fmt === 'html') {
return documentation.build(files, getOpts(pkg))
.then((docs) => documentation.formats.html(docs, {
theme: require.resolve('clean-documentation-theme'),
version: pkg.version,
name: pkg.name
}))
Expand Down
4 changes: 2 additions & 2 deletions src/test/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ const { fromAegir, hook } = require('../utils')
const DEFAULT_TIMEOUT = global.DEFAULT_TIMEOUT || 5 * 1000

function testNode (ctx) {
const exec = 'mocha'
let exec = 'mocha'
const env = { NODE_ENV: 'test' }
const timeout = ctx.timeout || DEFAULT_TIMEOUT

const args = [
let args = [
ctx.progress && '--reporter=progress',
'--ui', 'bdd',
'--timeout', timeout
Expand Down

0 comments on commit ca63d17

Please sign in to comment.