Merge branch 'main' into versions/5.0.0

This commit is contained in:
Joachim Van Herwegen
2022-05-05 10:15:35 +02:00
4 changed files with 1281 additions and 153 deletions

17
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: /
schedule:
interval: "daily"
open-pull-requests-limit: 0
- package-ecosystem: "npm"
directory: /
schedule:
interval: "daily"
open-pull-requests-limit: 0
- package-ecosystem: "docker"
directory: /
schedule:
interval: "daily"
open-pull-requests-limit: 0

1
commitlint.config.js Normal file
View File

@@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };

1411
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -65,7 +65,8 @@
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test:unit && npm run test:integration"
"pre-commit": "npm run build && npm run lint && npm run test:unit && npm run test:integration",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
@@ -135,6 +136,8 @@
"yargs": "^17.3.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@inrupt/solid-client-authn-core": "^1.11.5",
"@inrupt/solid-client-authn-node": "^1.11.5",
"@microsoft/tsdoc-config": "^0.15.2",