@virmator/publish 13.0.2 → 13.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ import {baseTypedocConfig} from '@virmator/docs/configs/typedoc.config.base';
2
+ import {join, resolve} from 'path';
3
+ import type {TypeDocOptions} from 'typedoc';
4
+
5
+ const repoRoot = resolve(
6
+ __dirname,
7
+ /** Go up two directories because this gets compiled into `node_modules/.virmator` */
8
+ '..',
9
+ '..',
10
+ );
11
+ const indexTsFile = join(repoRoot, 'src', 'publish.ts');
12
+
13
+ export const typeDocConfig: Partial<TypeDocOptions> = {
14
+ ...baseTypedocConfig,
15
+ out: join(repoRoot, 'dist-docs'),
16
+ entryPoints: [
17
+ indexTsFile,
18
+ ],
19
+ intentionallyNotExported: [],
20
+ defaultCategory: 'MISSING CATEGORY',
21
+ categoryOrder: [
22
+ 'Main',
23
+ 'Internal',
24
+ ],
25
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@virmator/publish",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
4
4
  "description": "Default publish plugin for virmator.",
5
5
  "keywords": [
6
6
  "virmator",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@augment-vir/common": "^29.3.0",
37
37
  "@augment-vir/node-js": "^29.3.0",
38
- "@virmator/core": "^13.0.2",
38
+ "@virmator/core": "^13.0.3",
39
39
  "chalk": "^5.3.0",
40
40
  "mri": "^1.2.0",
41
41
  "run-time-assertions": "^1.5.2",