@code-pushup/models
Advanced tools
Comparing version 0.53.0 to 0.53.1
@@ -15,3 +15,3 @@ // packages/models/src/lib/implementation/schemas.ts | ||
function hasDuplicateStrings(strings) { | ||
const sortedStrings = [...strings].sort(); | ||
const sortedStrings = strings.toSorted(); | ||
const duplStrings = sortedStrings.filter( | ||
@@ -18,0 +18,0 @@ (item, index) => index !== 0 && item === sortedStrings[index - 1] |
{ | ||
"name": "@code-pushup/models", | ||
"version": "0.53.0", | ||
"version": "0.53.1", | ||
"license": "MIT", | ||
"description": "Model definitions and validators for the Code PushUp CLI", | ||
"dependencies": { | ||
"zod": "^3.22.1", | ||
"vscode-material-icons": "^0.1.0" | ||
}, | ||
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/models#readme", | ||
"bugs": { | ||
"url": "https://github.com/code-pushup/cli/issues" | ||
"url": "https://github.com/code-pushup/cli/issues?q=is%3Aissue%20state%3Aopen%20type%3ABug%20label%3A\"🧩%20models\"" | ||
}, | ||
@@ -19,2 +15,12 @@ "repository": { | ||
}, | ||
"keywords": [ | ||
"CLI", | ||
"Code PushUp", | ||
"developer tools", | ||
"code quality", | ||
"conformance", | ||
"type definition", | ||
"validators", | ||
"models" | ||
], | ||
"publishConfig": { | ||
@@ -25,3 +31,7 @@ "access": "public" | ||
"main": "./index.js", | ||
"types": "./src/index.d.ts" | ||
} | ||
"types": "./src/index.d.ts", | ||
"dependencies": { | ||
"zod": "^3.22.1", | ||
"vscode-material-icons": "^0.1.0" | ||
} | ||
} |
2099800