@appland/search 1.2.0 → 1.2.1
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/CHANGELOG.md +7 -0
- package/built/cli.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [@appland/search-v1.2.1](https://github.com/getappmap/appmap-js/compare/@appland/search-v1.2.0...@appland/search-v1.2.1) (2025-03-11)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Add PerformanceObserver import ([#2258](https://github.com/getappmap/appmap-js/issues/2258)) ([595b542](https://github.com/getappmap/appmap-js/commit/595b542c33529b7fb5e8ed07126f44bc5a545137))
|
7
|
+
|
1
8
|
# [@appland/search-v1.2.0](https://github.com/getappmap/appmap-js/compare/@appland/search-v1.1.3...@appland/search-v1.2.0) (2025-02-27)
|
2
9
|
|
3
10
|
|
package/built/cli.js
CHANGED
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const node_perf_hooks_1 = require("node:perf_hooks");
|
6
7
|
const yargs_1 = __importDefault(require("yargs"));
|
7
8
|
const helpers_1 = require("yargs/helpers");
|
8
9
|
const debug_1 = __importDefault(require("debug"));
|
@@ -40,7 +41,7 @@ const cli = (0, yargs_1.default)((0, helpers_1.hideBin)(process.argv))
|
|
40
41
|
})
|
41
42
|
.strict();
|
42
43
|
}, async (argv) => {
|
43
|
-
new PerformanceObserver((entries) => entries.getEntries().forEach((e) => console.warn(`${e.name}: ${e.duration.toFixed(0)} ms`))).observe({ entryTypes: ['measure'] });
|
44
|
+
new node_perf_hooks_1.PerformanceObserver((entries) => entries.getEntries().forEach((e) => console.warn(`${e.name}: ${e.duration.toFixed(0)} ms`))).observe({ entryTypes: ['measure'] });
|
44
45
|
const { directories, query } = argv;
|
45
46
|
let filterRE;
|
46
47
|
if (argv.fileFilter)
|