0.0.10 • Published 6 years ago

typedoc-themes-color v0.0.10

Weekly downloads
239
License
ISC
Repository
github
Last release
6 years ago

typedoc-themes-color

Add little color for Default themes by TypeDoc.
typedoc --options ./typedoc.config.js

typedoc.config.js

const path = require('path');

let p = path.resolve(path.join(path.dirname(require.resolve('typedoc-themes-color')), 'theme'));

console.log(p);
console.log(path.relative(process.cwd(), p));

module.exports = {
	src : '.',
	out: './docs',
	//theme: './my-theme',
//	theme: path.relative(process.cwd(), p),
	theme: p,
	ignoreCompilerErrors: true,
	excludeExternals: true,

	externalPattern: "**/node_modules/**/*",

	mode: "modules",

	exclude: [
		"test",
		"node_modules",
		"test/",
		"node_modules/",
		"**/test",
		"**/node_modules",
		"**/test/**/*",
		"**/node_modules/**/*",
	],
};

console.log(module.exports);

screenshots

2018-06-23-01-41-01-1.jpg

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago