We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5dadd5 commit 6579cceCopy full SHA for 6579cce
src/intern-dev-api.ts
@@ -15,10 +15,12 @@ import { log } from './common';
15
// Use TypeDoc to generate an API description
16
log('Generating API data');
17
18
+const entryPoints = process.argv.slice(2);
19
+
20
const app = new Application();
21
app.options.addReader(new TSConfigReader());
22
app.bootstrap({
- entryPoints: ['./src/index.ts'],
23
+ entryPoints: entryPoints.length > 0 ? entryPoints : ['./src/index.ts'],
24
logger: 'none',
25
excludePrivate: true,
26
});
0 commit comments