5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 16:06:56 +00:00

build(deps): remove uuid

Not used
This commit is contained in:
Frazer Smith 2021-02-10 14:28:48 +00:00
parent a3d54772d1
commit 7c72676b5b
No known key found for this signature in database
GPG key ID: 23852BBB247894A3
3 changed files with 1 additions and 8 deletions

5
package-lock.json generated
View file

@ -13916,11 +13916,6 @@
"object.getownpropertydescriptors": "^2.0.3" "object.getownpropertydescriptors": "^2.0.3"
} }
}, },
"uuid": {
"version": "8.3.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz",
"integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="
},
"validate-npm-package-license": { "validate-npm-package-license": {
"version": "3.0.4", "version": "3.0.4",
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",

View file

@ -30,8 +30,7 @@
"conventional-changelog-lint-config-canonical": "^1.0.0", "conventional-changelog-lint-config-canonical": "^1.0.0",
"dargs": "^7.0.0", "dargs": "^7.0.0",
"execa": "^4.0.3", "execa": "^4.0.3",
"lerna": "^3.22.1", "lerna": "^3.22.1"
"uuid": "^8.3.1"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^11.0.0", "@commitlint/cli": "^11.0.0",

View file

@ -1,6 +1,5 @@
const { existsSync } = require('fs') const { existsSync } = require('fs')
const { resolve } = require('path') const { resolve } = require('path')
const { v4: uuidv4 } = require('uuid')
const core = require('@actions/core') const core = require('@actions/core')
const github = require('@actions/github') const github = require('@actions/github')
const lint = require('@commitlint/lint').default const lint = require('@commitlint/lint').default