@dbx-tools/path 0.3.14 → 0.3.16

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
@@ -14,15 +14,15 @@
14
14
  "chokidar": "^4.0.3",
15
15
  "glob": "^10.5.0",
16
16
  "minimatch": "^10.2.5",
17
- "@dbx-tools/core": "0.3.14",
18
- "@dbx-tools/shared-core": "0.3.14"
17
+ "@dbx-tools/core": "0.3.16",
18
+ "@dbx-tools/shared-core": "0.3.16"
19
19
  },
20
20
  "main": "index.ts",
21
21
  "license": "UNLICENSED",
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "version": "0.3.14",
25
+ "version": "0.3.16",
26
26
  "types": "index.ts",
27
27
  "type": "module",
28
28
  "exports": {
package/src/ignore.ts CHANGED
@@ -9,6 +9,8 @@
9
9
  * - {@link ignorePatterns} - yields the enabled glob strings (for projen prettier/gitignore).
10
10
  * - {@link ignorePathMatcher} - returns a single {@link PathMatcher} for {@link findFiles}
11
11
  * and {@link watchFiles}.
12
+ *
13
+ * @module
12
14
  */
13
15
 
14
16
  import { exec } from "@dbx-tools/core";
package/src/match.ts CHANGED
@@ -4,6 +4,8 @@
4
4
  * {@link toPathMatcher} compiles globs into {@link Predicate} values from
5
5
  * shared-core (`and` / `or` / `negate`) for use by {@link findFiles} and
6
6
  * {@link watchFiles}.
7
+ *
8
+ * @module
7
9
  */
8
10
 
9
11
  import {
package/src/pattern.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Glob pattern builders shared by ignore groups and matchers.
3
+ *
4
+ * @module
3
5
  */
4
6
 
5
7
  /** Glob metacharacters; escaped so a directory or file name is matched literally. */