@prose-reader/enhancer-search 1.205.0 → 1.207.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prose-reader/enhancer-search",
3
- "version": "1.205.0",
3
+ "version": "1.207.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -17,10 +17,10 @@
17
17
  "test": "vitest run --coverage"
18
18
  },
19
19
  "dependencies": {
20
- "@prose-reader/core": "^1.205.0"
20
+ "@prose-reader/core": "^1.207.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "rxjs": "*"
24
24
  },
25
- "gitHead": "f8b64c3e5698a454ab374c7e3133b7cb6a4c3531"
25
+ "gitHead": "ab902cf11e870ef8321ae5c1ae421270daa08d51"
26
26
  }
package/src/report.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { Report } from "@prose-reader/shared"
2
+ import { name } from "../package.json"
2
3
 
3
4
  const IS_DEBUG_ENABLED = true
4
5
 
5
- export const report = Report.namespace(`enhancer-search`, IS_DEBUG_ENABLED)
6
+ export const report = Report.namespace(name, IS_DEBUG_ENABLED)
package/vite.config.ts CHANGED
@@ -1,8 +1,8 @@
1
+ import { resolve } from "node:path"
2
+ import externals from "rollup-plugin-node-externals"
1
3
  import { defineConfig } from "vite"
2
4
  import dts from "vite-plugin-dts"
3
- import { resolve } from "node:path"
4
5
  import { name } from "./package.json"
5
- import externals from "rollup-plugin-node-externals"
6
6
 
7
7
  const libName = name.replace(`@`, ``).replace(`/`, `-`)
8
8
 
@@ -27,6 +27,8 @@ export default defineConfig(({ mode }) => ({
27
27
  devDeps: true,
28
28
  }),
29
29
  },
30
- dts(),
30
+ dts({
31
+ entryRoot: "src",
32
+ }),
31
33
  ],
32
34
  }))