@markuplint/selector 4.6.4 → 4.6.5

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 CHANGED
@@ -3,16 +3,19 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [4.6.4](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.6.3...@markuplint/selector@4.6.4) (2024-06-09)
6
+ ## [4.6.5](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.6.4...@markuplint/selector@4.6.5) (2024-06-25)
7
7
 
8
+ **Note:** Version bump only for package @markuplint/selector
8
9
 
9
- ### Bug Fixes
10
10
 
11
- * fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
12
11
 
13
12
 
14
13
 
14
+ ## [4.6.4](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.6.3...@markuplint/selector@4.6.4) (2024-06-09)
15
+
16
+ ### Bug Fixes
15
17
 
18
+ - fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
16
19
 
17
20
  ## [4.6.3](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.6.2...@markuplint/selector@4.6.3) (2024-05-28)
18
21
 
package/lib/selector.js CHANGED
@@ -451,9 +451,7 @@ class SelectorTarget {
451
451
  }
452
452
  const has = [];
453
453
  const not = [];
454
- // @ts-ignore
455
454
  if (this.tag && this.tag._namespace) {
456
- // @ts-ignore
457
455
  const namespace = `${this.tag._namespace}`.toLowerCase();
458
456
  switch (namespace) {
459
457
  case '*':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/selector",
3
- "version": "4.6.4",
3
+ "version": "4.6.5",
4
4
  "description": "Extended W3C Selectors matcher",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -25,15 +25,15 @@
25
25
  "clean": "tsc --build --clean"
26
26
  },
27
27
  "dependencies": {
28
- "@markuplint/ml-spec": "4.6.2",
28
+ "@markuplint/ml-spec": "4.6.3",
29
29
  "@types/debug": "4.1.12",
30
30
  "debug": "4.3.5",
31
31
  "postcss-selector-parser": "6.1.0",
32
- "type-fest": "4.20.0"
32
+ "type-fest": "4.20.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/jsdom": "21.1.7",
36
36
  "jsdom": "24.1.0"
37
37
  },
38
- "gitHead": "0200dc1f7b1ffa7455b889696153e25dbae8241f"
38
+ "gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
39
39
  }