@e22m4u/js-path-trie
Advanced tools
Comparing version 0.0.5 to 0.0.6
import * as esbuild from 'esbuild'; | ||
import packageJson from './package.json' with {type: 'json'}; | ||
@@ -8,4 +9,9 @@ await esbuild.build({ | ||
platform: 'node', | ||
target: ['node16'], | ||
target: ['node12'], | ||
bundle: true, | ||
}); | ||
keepNames: true, | ||
external: [ | ||
...Object.keys(packageJson.peerDependencies || {}), | ||
...Object.keys(packageJson.dependencies || {}), | ||
], | ||
}); |
{ | ||
"name": "@e22m4u/js-path-trie", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "A router for Node.js based on a prefix tree", | ||
@@ -22,3 +22,3 @@ "type": "module", | ||
"test:coverage": "npm run lint && c8 --reporter=text mocha", | ||
"build:cjs": "node build-cjs.js", | ||
"build:cjs": "rimraf ./dist/cjs && node --no-warnings=ExperimentalWarning build-cjs.js", | ||
"prepare": "husky" | ||
@@ -39,3 +39,3 @@ }, | ||
"dependencies": { | ||
"@e22m4u/js-format": "~0.1.0", | ||
"@e22m4u/js-format": "~0.1.5", | ||
"debug": "~4.3.7", | ||
@@ -47,17 +47,18 @@ "path-to-regexp": "~8.2.0" | ||
"@commitlint/config-conventional": "~19.5.0", | ||
"@eslint/js": "~9.12.0", | ||
"@eslint/js": "~9.14.0", | ||
"c8": "~10.1.2", | ||
"chai": "~5.1.1", | ||
"chai": "~5.1.2", | ||
"esbuild": "~0.24.0", | ||
"eslint": "~9.12.0", | ||
"eslint": "~9.14.0", | ||
"eslint-config-prettier": "~9.1.0", | ||
"eslint-plugin-chai-expect": "~3.1.0", | ||
"eslint-plugin-jsdoc": "~50.3.1", | ||
"eslint-plugin-jsdoc": "~50.4.3", | ||
"eslint-plugin-mocha": "~10.5.0", | ||
"globals": "~15.10.0", | ||
"globals": "~15.12.0", | ||
"husky": "~9.1.6", | ||
"mocha": "~10.7.3", | ||
"mocha": "~10.8.2", | ||
"prettier": "~3.3.3", | ||
"typescript": "~5.6.2" | ||
"rimraf": "^6.0.1", | ||
"typescript": "~5.6.3" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
0
44142
17
1111
Updated@e22m4u/js-format@~0.1.5