Browse Source

chore: updates dependencies

e22m4u 2 months ago
parent
commit
784b61d76f
3 changed files with 9 additions and 9 deletions
  1. 1 1
      dist/cjs/index.cjs
  2. 7 7
      package.json
  3. 1 1
      src/path-trie.js

+ 1 - 1
dist/cjs/index.cjs

@@ -33,7 +33,7 @@ var _PathTrie = class _PathTrie extends import_js_debug.Debuggable {
    * Constructor.
    */
   constructor() {
-    super({ noEnvNs: true, namespace: "jsPathTrie" });
+    super({ namespace: "jsPathTrie", noEnvironmentNamespace: true });
   }
   /**
    * Root node.

+ 7 - 7
package.json

@@ -36,27 +36,27 @@
     "prepare": "husky"
   },
   "dependencies": {
-    "@e22m4u/js-debug": "~0.2.3",
+    "@e22m4u/js-debug": "~0.3.1",
     "@e22m4u/js-format": "~0.2.0",
     "path-to-regexp": "~8.3.0"
   },
   "devDependencies": {
-    "@commitlint/cli": "~19.8.1",
-    "@commitlint/config-conventional": "~19.8.1",
+    "@commitlint/cli": "~20.1.0",
+    "@commitlint/config-conventional": "~20.0.0",
     "@eslint/js": "~9.36.0",
     "c8": "~10.1.3",
-    "chai": "~6.0.1",
+    "chai": "~6.2.0",
     "esbuild": "~0.25.10",
     "eslint": "~9.36.0",
     "eslint-config-prettier": "~10.1.8",
     "eslint-plugin-chai-expect": "~3.1.0",
-    "eslint-plugin-jsdoc": "~60.3.0",
+    "eslint-plugin-jsdoc": "~60.6.0",
     "eslint-plugin-mocha": "~11.1.0",
     "globals": "~16.4.0",
     "husky": "~9.1.7",
-    "mocha": "~11.7.2",
+    "mocha": "~11.7.3",
     "prettier": "~3.6.2",
     "rimraf": "~6.0.1",
-    "typescript": "~5.9.2"
+    "typescript": "~5.9.3"
   }
 }

+ 1 - 1
src/path-trie.js

@@ -23,7 +23,7 @@ export class PathTrie extends Debuggable {
    * Constructor.
    */
   constructor() {
-    super({noEnvNs: true, namespace: 'jsPathTrie'});
+    super({namespace: 'jsPathTrie', noEnvironmentNamespace: true});
   }
 
   /**