Move typedoc related files together
|
|
@ -545,8 +545,7 @@ const buildWebsiteTask = taskSeries(cleanWebsiteTask, function() {
|
|||
return (
|
||||
es.merge(
|
||||
gulp.src([
|
||||
'website/**/*',
|
||||
'!website/typedoc-theme/**'
|
||||
'website/**/*'
|
||||
], { dot: true })
|
||||
.pipe(es.through(function(data) {
|
||||
if (!data.contents || !/\.(html)$/.test(data.path) || /new-samples/.test(data.path)) {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 480 B |
|
Before Width: | Height: | Size: 855 B After Width: | Height: | Size: 855 B |
|
|
@ -2,5 +2,6 @@
|
|||
"compilerOptions": {
|
||||
"module": "CommonJS"
|
||||
},
|
||||
"include": ["monaco.d.ts"]
|
||||
"include": ["monaco.d.ts"],
|
||||
"exclude": ["theme"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"entryPoints": ["monaco.d.ts"],
|
||||
"out": "../../monaco-editor-website/api",
|
||||
"theme": "../website/typedoc-theme",
|
||||
"theme": "./theme",
|
||||
"name": "Monaco Editor API",
|
||||
"readme": "none",
|
||||
"hideGenerator": true
|
||||
|
|
|
|||