@virmator/publish 14.7.1 → 14.7.2

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.
@@ -1,15 +1,16 @@
1
1
  import {baseTypedocConfig} from '@virmator/docs/configs/typedoc.config.base';
2
- import {join, resolve} from 'path';
2
+ import {dirname, join} from 'node:path';
3
+ import {fileURLToPath} from 'node:url';
3
4
  import {type TypeDocOptions} from 'typedoc';
4
5
 
5
- const repoRoot = resolve(import.meta.dirname, '..');
6
- const indexTsFile = join(repoRoot, 'src', 'publish.ts');
6
+ const indexTsFile = join(dirname(dirname(fileURLToPath(import.meta.url))), 'src', 'publish.ts');
7
+ const outDirPath = join(dirname(dirname(fileURLToPath(import.meta.url))), 'dist-docs');
7
8
 
8
9
  export const typeDocConfig: Partial<TypeDocOptions> = {
9
10
  ...baseTypedocConfig,
10
- out: join(repoRoot, 'dist-docs'),
11
+ out: outDirPath,
11
12
  entryPoints: [
12
- indexTsFile,
13
+ indexTsFile.replaceAll('\\', '/'),
13
14
  ],
14
15
  intentionallyNotExported: [],
15
16
  defaultCategory: 'MISSING CATEGORY',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@virmator/publish",
3
- "version": "14.7.1",
3
+ "version": "14.7.2",
4
4
  "description": "Default publish plugin for virmator.",
5
5
  "keywords": [
6
6
  "virmator",
@@ -37,7 +37,7 @@
37
37
  "@augment-vir/assert": "^31.64.0",
38
38
  "@augment-vir/common": "^31.64.0",
39
39
  "@augment-vir/node": "^31.64.0",
40
- "@virmator/core": "^14.7.1",
40
+ "@virmator/core": "^14.7.2",
41
41
  "mri": "^1.2.0",
42
42
  "semver": "^7.7.4",
43
43
  "simple-git": "^3.30.0",