Dropped custom GUID validation function in favour of standard uuid library.
All checks were successful
build / build (push) Successful in 10s

This commit is contained in:
2026-03-07 14:40:55 +01:00
parent fe1b8f0e1f
commit 4dac95e081
4 changed files with 42 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@slawek/sk-tools",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"files": [
"dist",
@@ -10,8 +10,7 @@
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && chmod +x dist/cli.js",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build"
"build:watch": "tsc --watch"
},
"engines": {
"node": ">=24.0.0"
@@ -19,7 +18,9 @@
"description": "A set of generic NodeJS utilities shared by Slawek tools.",
"dependencies": {
"d3-dsv": "^3.0.1",
"jmespath": "^0.16.0"
"jmespath": "^0.16.0",
"semver": "^7.7.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/d3-dsv": "^3.0.7",