@markuplint/selector 4.7.4 → 4.7.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 +6 -0
- package/lib/compare-specificity.d.ts +1 -1
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.7.5](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.7.4...@markuplint/selector@4.7.5) (2025-08-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ensure that each `clean` command correctly removes build files ([110b78e](https://github.com/markuplint/markuplint/commit/110b78e85379d29a84ca68325127344a87a570b6))
|
|
11
|
+
|
|
6
12
|
## [4.7.4](https://github.com/markuplint/markuplint/compare/@markuplint/selector@4.7.3...@markuplint/selector@4.7.4) (2025-04-13)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @markuplint/selector
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { Specificity } from './types.js';
|
|
2
|
-
export declare function compareSpecificity(a: Specificity, b: Specificity):
|
|
2
|
+
export declare function compareSpecificity(a: Specificity, b: Specificity): 0 | 1 | -1;
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/selector",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.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>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"private": false,
|
|
9
8
|
"type": "module",
|
|
10
9
|
"exports": {
|
|
11
10
|
".": {
|
|
@@ -22,18 +21,18 @@
|
|
|
22
21
|
"scripts": {
|
|
23
22
|
"build": "tsc --project tsconfig.build.json",
|
|
24
23
|
"dev": "tsc --watch --project tsconfig.build.json",
|
|
25
|
-
"clean": "tsc --build --clean"
|
|
24
|
+
"clean": "tsc --build --clean tsconfig.build.json"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
|
-
"@markuplint/ml-spec": "4.9.
|
|
27
|
+
"@markuplint/ml-spec": "4.9.7",
|
|
29
28
|
"@types/debug": "4.1.12",
|
|
30
|
-
"debug": "4.4.
|
|
29
|
+
"debug": "4.4.1",
|
|
31
30
|
"postcss-selector-parser": "7.1.0",
|
|
32
|
-
"type-fest": "4.
|
|
31
|
+
"type-fest": "4.41.0"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"@types/jsdom": "21.1.7",
|
|
36
|
-
"jsdom": "26.
|
|
35
|
+
"jsdom": "26.1.0"
|
|
37
36
|
},
|
|
38
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
|
|
39
38
|
}
|