Skip to content

Commit 17ccc2a

Browse files
Merge pull request #110 from Raclamusi/exclude_sample_module
例示用のモジュール module_name を除外
2 parents 2723b3f + 4cba859 commit 17ccc2a

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## master
44

5+
## 3.0.28 (2026-07-05)
6+
7+
- 依存ライブラリを更新
8+
- 例示用のモジュール module_name を除外
9+
510
## 3.0.27 (2026-03-09)
611

712
- 検索の表示順を、最短マッチ優先に変更

js/crsearch/namespace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default class Namespace {
8484
const indexes = rid.indexes
8585
if (indexes.length === 0) {
8686
found = this._createIndex(idx.cpp_version, rid, null, [])
87-
if (found.name === '<header_name>') {
87+
if (found.name === '<header_name>' || found.name === '<module_name>') {
8888
// shit
8989
continue
9090
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crsearch",
3-
"version": "3.0.27",
3+
"version": "3.0.28",
44
"description": "cpprefjp / boostjp searcher",
55
"main": "dist/js/crsearch.js",
66
"module": "js/crsearch.js",

0 commit comments

Comments
 (0)