Move typedoc related files together
|
|
@ -545,8 +545,7 @@ const buildWebsiteTask = taskSeries(cleanWebsiteTask, function() {
|
||||||
return (
|
return (
|
||||||
es.merge(
|
es.merge(
|
||||||
gulp.src([
|
gulp.src([
|
||||||
'website/**/*',
|
'website/**/*'
|
||||||
'!website/typedoc-theme/**'
|
|
||||||
], { dot: true })
|
], { dot: true })
|
||||||
.pipe(es.through(function(data) {
|
.pipe(es.through(function(data) {
|
||||||
if (!data.contents || !/\.(html)$/.test(data.path) || /new-samples/.test(data.path)) {
|
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": {
|
"compilerOptions": {
|
||||||
"module": "CommonJS"
|
"module": "CommonJS"
|
||||||
},
|
},
|
||||||
"include": ["monaco.d.ts"]
|
"include": ["monaco.d.ts"],
|
||||||
|
"exclude": ["theme"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"entryPoints": ["monaco.d.ts"],
|
"entryPoints": ["monaco.d.ts"],
|
||||||
"out": "../../monaco-editor-website/api",
|
"out": "../../monaco-editor-website/api",
|
||||||
"theme": "../website/typedoc-theme",
|
"theme": "./theme",
|
||||||
"name": "Monaco Editor API",
|
"name": "Monaco Editor API",
|
||||||
"readme": "none",
|
"readme": "none",
|
||||||
"hideGenerator": true
|
"hideGenerator": true
|
||||||
|
|
|
||||||