mirror of
https://github.com/ivuorinen/base-configs-commitlint.git
synced 2026-03-13 10:58:58 +00:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57e84e42d7 | ||
|
|
5790c57f1e | ||
|
|
509dad2a17 | ||
| 6b5f1ab770 | |||
|
|
e12e70bc3d | ||
|
|
b3920744ac | ||
|
|
23690b3169 | ||
|
|
908726efad | ||
|
|
6ddd1d616b | ||
|
|
8330da9f1d | ||
|
|
314c203726 |
95
.github/workflows/codeql.yml
vendored
95
.github/workflows/codeql.yml
vendored
@@ -1,17 +1,6 @@
|
|||||||
---
|
---
|
||||||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
||||||
# For most projects, this workflow file will not need changing; you simply need
|
name: "CodeQL"
|
||||||
# to commit it to your repository.
|
|
||||||
#
|
|
||||||
# You may wish to alter this file to override the set of languages analyzed,
|
|
||||||
# or to provide custom queries or build logic.
|
|
||||||
#
|
|
||||||
# ******** NOTE ********
|
|
||||||
# We have attempted to detect the languages in your repository. Please check
|
|
||||||
# the `language` matrix defined below to confirm you have the correct set of
|
|
||||||
# supported CodeQL languages.
|
|
||||||
#
|
|
||||||
name: "CodeQL Advanced"
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -20,84 +9,26 @@ on:
|
|||||||
branches: ["main"]
|
branches: ["main"]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "22 8 * * 0"
|
- cron: "22 8 * * 0"
|
||||||
|
merge_group:
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
name: Analyze (${{ matrix.language }})
|
name: Analyze
|
||||||
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
runs-on: ubuntu-latest
|
||||||
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
|
||||||
# - https://gh.io/supported-runners-and-hardware-resources
|
|
||||||
# - https://gh.io/using-larger-runners (GitHub.com only)
|
|
||||||
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
|
|
||||||
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
|
||||||
permissions:
|
permissions:
|
||||||
# required for all workflows
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
# required to fetch internal or private CodeQL packs
|
|
||||||
packages: read
|
|
||||||
|
|
||||||
# only required for workflows in private repositories
|
|
||||||
actions: read
|
actions: read
|
||||||
contents: read
|
contents: read
|
||||||
|
packages: read
|
||||||
|
security-events: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
language: ["actions", "javascript"]
|
||||||
- language: actions
|
|
||||||
build-mode: none
|
|
||||||
- language: javascript-typescript
|
|
||||||
build-mode: none
|
|
||||||
# CodeQL supports the following values keywords for 'language':
|
|
||||||
# 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
|
|
||||||
# Use `c-cpp` to analyze code written in C, C++ or both
|
|
||||||
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
|
|
||||||
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
|
|
||||||
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
|
|
||||||
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
|
|
||||||
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
|
|
||||||
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: CodeQL Analysis
|
||||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
uses: ivuorinen/actions/codeql-analysis@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
||||||
|
|
||||||
# Add any setup steps before running the `github/codeql-action/init` action.
|
|
||||||
# This includes steps like installing compilers or runtimes (`actions/setup-node`
|
|
||||||
# or others). This is typically only required for manual builds.
|
|
||||||
# - name: Setup runtime (example)
|
|
||||||
# uses: actions/setup-example@v1
|
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
|
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
language: ${{ matrix.language }}
|
||||||
build-mode: ${{ matrix.build-mode }}
|
queries: security-and-quality
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
||||||
# By default, queries listed here will override any specified in a config file.
|
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
||||||
|
|
||||||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
|
||||||
# queries: security-extended,security-and-quality
|
|
||||||
|
|
||||||
# If the analyze step fails for one of the languages you are analyzing with
|
|
||||||
# "We were unable to automatically build your code", modify the matrix above
|
|
||||||
# to set the build mode to "manual" for that language. Then modify this step
|
|
||||||
# to build your code.
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
|
||||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
||||||
- if: matrix.build-mode == 'manual'
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo 'If you are using a "manual" build mode for one or more of the' \
|
|
||||||
'languages you are analyzing, replace this with the commands to build' \
|
|
||||||
'your code, for example:'
|
|
||||||
echo ' make bootstrap'
|
|
||||||
echo ' make release'
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
|
|
||||||
with:
|
|
||||||
category: "/language:${{matrix.language}}"
|
|
||||||
|
|||||||
2
.github/workflows/pr-lint.yml
vendored
2
.github/workflows/pr-lint.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run PR Lint
|
- name: Run PR Lint
|
||||||
# https://github.com/ivuorinen/actions
|
# https://github.com/ivuorinen/actions
|
||||||
uses: ivuorinen/actions/pr-lint@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02
|
uses: ivuorinen/actions/pr-lint@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|||||||
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Run PR Lint
|
- name: Run PR Lint
|
||||||
# https://github.com/ivuorinen/actions
|
# https://github.com/ivuorinen/actions
|
||||||
uses: ivuorinen/actions/pr-lint@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02
|
uses: ivuorinen/actions/pr-lint@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
name: Publish
|
name: Publish
|
||||||
@@ -46,7 +46,7 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Setup Node.js Environment
|
- name: Setup Node.js Environment
|
||||||
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
||||||
with:
|
with:
|
||||||
always-auth: true
|
always-auth: true
|
||||||
node-version-file: ".nvmrc"
|
node-version-file: ".nvmrc"
|
||||||
|
|||||||
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@@ -23,4 +23,4 @@ jobs:
|
|||||||
issues: write
|
issues: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: ivuorinen/actions/stale@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02
|
- uses: ivuorinen/actions/stale@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
||||||
|
|||||||
2
.github/workflows/sync-labels.yml
vendored
2
.github/workflows/sync-labels.yml
vendored
@@ -38,4 +38,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: ⤵️ Sync Latest Labels Definitions
|
- name: ⤵️ Sync Latest Labels Definitions
|
||||||
uses: ivuorinen/actions/sync-labels@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02
|
uses: ivuorinen/actions/sync-labels@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
||||||
|
|||||||
@@ -3,6 +3,14 @@
|
|||||||
All notable changes to this project will be documented in this file. See
|
All notable changes to this project will be documented in this file. See
|
||||||
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [1.0.8](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.7...v1.0.8) (2026-03-12)
|
||||||
|
|
||||||
|
## [1.0.7](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.6...v1.0.7) (2026-03-07)
|
||||||
|
|
||||||
|
## [1.0.6](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.5...v1.0.6) (2026-03-05)
|
||||||
|
|
||||||
|
## [1.0.5](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.4...v1.0.5) (2026-03-05)
|
||||||
|
|
||||||
## [1.0.4](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.3...v1.0.4) (2026-03-05)
|
## [1.0.4](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.3...v1.0.4) (2026-03-05)
|
||||||
|
|
||||||
## [1.0.3](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.2...v1.0.3) (2026-03-04)
|
## [1.0.3](https://github.com/ivuorinen/base-configs-commitlint/compare/v1.0.2...v1.0.3) (2026-03-04)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ivuorinen/commitlint-config",
|
"name": "@ivuorinen/commitlint-config",
|
||||||
"version": "1.0.4",
|
"version": "1.0.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "ivuorinen's shareable configuration for commitlint.",
|
"description": "ivuorinen's shareable configuration for commitlint.",
|
||||||
"author": {
|
"author": {
|
||||||
|
|||||||
226
yarn.lock
226
yarn.lock
@@ -67,53 +67,53 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/cli@npm:^20.2.0":
|
"@commitlint/cli@npm:^20.2.0":
|
||||||
version: 20.4.2
|
version: 20.4.3
|
||||||
resolution: "@commitlint/cli@npm:20.4.2"
|
resolution: "@commitlint/cli@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/format": "npm:^20.4.0"
|
"@commitlint/format": "npm:^20.4.3"
|
||||||
"@commitlint/lint": "npm:^20.4.2"
|
"@commitlint/lint": "npm:^20.4.3"
|
||||||
"@commitlint/load": "npm:^20.4.0"
|
"@commitlint/load": "npm:^20.4.3"
|
||||||
"@commitlint/read": "npm:^20.4.0"
|
"@commitlint/read": "npm:^20.4.3"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
tinyexec: "npm:^1.0.0"
|
tinyexec: "npm:^1.0.0"
|
||||||
yargs: "npm:^17.0.0"
|
yargs: "npm:^17.0.0"
|
||||||
bin:
|
bin:
|
||||||
commitlint: ./cli.js
|
commitlint: ./cli.js
|
||||||
checksum: 10c0/ef091ed137492cc7a86ba98e4881eb251b2fd205056932dcde7f9a8e3e4aaf4ff1378cbeeee0b666b50d9533c2c20e58555ee179ba92d4225ef856515ad78eef
|
checksum: 10c0/1f54b6870a16548a6af189336c479ed49ab8da615fbaec4c8ff3124a115db0a38bdbd07d49afe27e0d1ac35ba723640532db2b4f3c96720515eca0aa9265747d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/config-conventional@npm:^20.2.0":
|
"@commitlint/config-conventional@npm:^20.2.0":
|
||||||
version: 20.4.2
|
version: 20.4.3
|
||||||
resolution: "@commitlint/config-conventional@npm:20.4.2"
|
resolution: "@commitlint/config-conventional@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
conventional-changelog-conventionalcommits: "npm:^9.1.0"
|
conventional-changelog-conventionalcommits: "npm:^9.2.0"
|
||||||
checksum: 10c0/d737b6682a4237914372b86802772c1ff1d3414f1a167510859fc611986d1c401c8976c41f16b9e06439bd133fcf67ab7b63a72608a0c18e5e79614c995339b4
|
checksum: 10c0/c7c6fb0b3201b17fae3a3e488b20795e7facbda511017d96939029f83d320567c310576ec9074f9536a3c811ea5d8038b3ddc92905c198e24c00b1a2759a8c84
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/config-validator@npm:^20.4.0":
|
"@commitlint/config-validator@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/config-validator@npm:20.4.0"
|
resolution: "@commitlint/config-validator@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
ajv: "npm:^8.11.0"
|
ajv: "npm:^8.11.0"
|
||||||
checksum: 10c0/0ec4622badd7abb0a7c3e9c49d8acc284263a773492f060d42364e1e57c475fa189c1f2b386b1320014d4b0d861984770cabb029adc92ce49a39e0473f63cd29
|
checksum: 10c0/e65f2bd3cc00b0b8b46c9bf830f78c90c60eb0d864d8e3cf02badf83196637ce7c0c9febabd91bb66d9b77138bc3e741416fff1fb4ffa4054a877cac75f2bae7
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/ensure@npm:^20.4.1":
|
"@commitlint/ensure@npm:^20.4.3":
|
||||||
version: 20.4.1
|
version: 20.4.3
|
||||||
resolution: "@commitlint/ensure@npm:20.4.1"
|
resolution: "@commitlint/ensure@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
lodash.camelcase: "npm:^4.3.0"
|
lodash.camelcase: "npm:^4.3.0"
|
||||||
lodash.kebabcase: "npm:^4.1.1"
|
lodash.kebabcase: "npm:^4.1.1"
|
||||||
lodash.snakecase: "npm:^4.1.1"
|
lodash.snakecase: "npm:^4.1.1"
|
||||||
lodash.startcase: "npm:^4.4.0"
|
lodash.startcase: "npm:^4.4.0"
|
||||||
lodash.upperfirst: "npm:^4.3.1"
|
lodash.upperfirst: "npm:^4.3.1"
|
||||||
checksum: 10c0/095dccd38043b566d4191a3115c6963093ce2e8cae3128e2cc9e3557810fdd1b3a9de5a32e158273d7666ae18a4abed0c30c5711ffca97588acf76da43f82608
|
checksum: 10c0/aa1f42317af156f8af1314311f9195f6d8150807e5d5971432bd086b8ead39c8c6166bf426d413790bb105e015f9c556de4d69083cb0a897293bed56b884d6a4
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -124,109 +124,109 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/format@npm:^20.4.0":
|
"@commitlint/format@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/format@npm:20.4.0"
|
resolution: "@commitlint/format@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
picocolors: "npm:^1.1.1"
|
picocolors: "npm:^1.1.1"
|
||||||
checksum: 10c0/c58986e55601496953bd41249da34734957022b7a7a56759927fcc1a9d48be20427c8e554cf880b6e09fbc9d087f06fe0047c5dc694d82fc8e71eea379807ab7
|
checksum: 10c0/e221f61a07eaf917185b8f30ff6405f642495a4b199cbfd4a0f130a11068ed5afceb938790fb35383aea9fed101fd4777dd169962a9a721e50851cdadf8044a2
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/is-ignored@npm:^20.4.1":
|
"@commitlint/is-ignored@npm:^20.4.3":
|
||||||
version: 20.4.1
|
version: 20.4.3
|
||||||
resolution: "@commitlint/is-ignored@npm:20.4.1"
|
resolution: "@commitlint/is-ignored@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
semver: "npm:^7.6.0"
|
semver: "npm:^7.6.0"
|
||||||
checksum: 10c0/03fbbaffcc37c6775551630534fac2643321a07696e62ba139222efd044ada3905eafbea8c04cebaa21d45c030caa87f7a0676e2141c1bf7ef353449a8e54bd7
|
checksum: 10c0/bc118de0aabc63dc82b85e96119489e3b008c5db63c1d9dfccd6c465ba422734a0b80f465382ac38a9fb07b9a80995e4eeb529214ad3c2fe93d80e505fb43fbd
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/lint@npm:^20.4.2":
|
"@commitlint/lint@npm:^20.4.3":
|
||||||
version: 20.4.2
|
version: 20.4.3
|
||||||
resolution: "@commitlint/lint@npm:20.4.2"
|
resolution: "@commitlint/lint@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/is-ignored": "npm:^20.4.1"
|
"@commitlint/is-ignored": "npm:^20.4.3"
|
||||||
"@commitlint/parse": "npm:^20.4.1"
|
"@commitlint/parse": "npm:^20.4.3"
|
||||||
"@commitlint/rules": "npm:^20.4.2"
|
"@commitlint/rules": "npm:^20.4.3"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
checksum: 10c0/a244916a443be0a58f362383532f6dd9e12fcd3e4e32de20d62ccb82f5f4a210d6ece8e2a4057055168a349276675f36f459c6ebc74e7d08fdc5c2a123c1993e
|
checksum: 10c0/e6af7cbbf935a393a970352674f88ec3e05f08c9f88f638b81279febf77c1795d75112e27248f7788a14e0747ec06fa2ab3efca5d0836070d35b0283fa515817
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/load@npm:^20.4.0":
|
"@commitlint/load@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/load@npm:20.4.0"
|
resolution: "@commitlint/load@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/config-validator": "npm:^20.4.0"
|
"@commitlint/config-validator": "npm:^20.4.3"
|
||||||
"@commitlint/execute-rule": "npm:^20.0.0"
|
"@commitlint/execute-rule": "npm:^20.0.0"
|
||||||
"@commitlint/resolve-extends": "npm:^20.4.0"
|
"@commitlint/resolve-extends": "npm:^20.4.3"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
cosmiconfig: "npm:^9.0.0"
|
cosmiconfig: "npm:^9.0.1"
|
||||||
cosmiconfig-typescript-loader: "npm:^6.1.0"
|
cosmiconfig-typescript-loader: "npm:^6.1.0"
|
||||||
is-plain-obj: "npm:^4.1.0"
|
is-plain-obj: "npm:^4.1.0"
|
||||||
lodash.mergewith: "npm:^4.6.2"
|
lodash.mergewith: "npm:^4.6.2"
|
||||||
picocolors: "npm:^1.1.1"
|
picocolors: "npm:^1.1.1"
|
||||||
checksum: 10c0/65256534d23a8afcfd10339b9b8c197671d7e55f59fad740153c628dca903cf371a764d6b00cc0e2b69ff8b908e0f5395bc3e0fccfa59c1f15d9a14be8bbeba0
|
checksum: 10c0/80fb52e259492a130701cfe637e9c06a6151a980bd51f0d2c011f7e973f7188d8c3d52d078302b75e4e767d618ebdca3a49935268a38e807298bf08fa7f5e49d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/message@npm:^20.4.0":
|
"@commitlint/message@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/message@npm:20.4.0"
|
resolution: "@commitlint/message@npm:20.4.3"
|
||||||
checksum: 10c0/ded99c7863665d36bec2f2f5e13891d1c855fc6d38c9732b8ab9801a0d8917d0a036760c23d6dbbb5a5e1447712cad7d304570fa679775aa7a00dfcc38fcdf28
|
checksum: 10c0/16f7a67d17df916830a9d6b2cdbaef0d680afcc47e9de53b18c7580bcbb50d8241b86c0e26a4ae71bd1d4a1025b318eb6c920e75fbc97aee7341744d4ef5dcbc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/parse@npm:^20.4.1":
|
"@commitlint/parse@npm:^20.4.3":
|
||||||
version: 20.4.1
|
version: 20.4.3
|
||||||
resolution: "@commitlint/parse@npm:20.4.1"
|
resolution: "@commitlint/parse@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
conventional-changelog-angular: "npm:^8.1.0"
|
conventional-changelog-angular: "npm:^8.2.0"
|
||||||
conventional-commits-parser: "npm:^6.2.1"
|
conventional-commits-parser: "npm:^6.3.0"
|
||||||
checksum: 10c0/d1eb8a6e0e1b20ae9f490d60531d6abcc34785735e6e6dcc505a6a1aa2d4f16785e96795e5cf520b4b6923239969dc23739bb4f253040d28598e4e5a0abba95f
|
checksum: 10c0/404fecad36b1586a611f1a56e8f7b5c39482c5f010949029020e23103464ab03bece04083557443ec3055917e632118c8ba52cc2c3ab76bac95b704d9338a272
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/read@npm:^20.4.0":
|
"@commitlint/read@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/read@npm:20.4.0"
|
resolution: "@commitlint/read@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/top-level": "npm:^20.4.0"
|
"@commitlint/top-level": "npm:^20.4.3"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
git-raw-commits: "npm:^4.0.0"
|
git-raw-commits: "npm:^4.0.0"
|
||||||
minimist: "npm:^1.2.8"
|
minimist: "npm:^1.2.8"
|
||||||
tinyexec: "npm:^1.0.0"
|
tinyexec: "npm:^1.0.0"
|
||||||
checksum: 10c0/e0a5b8bf7541198e2ec630e61d67eade20db5d933044703029df5abb21829aa36f4b59919aa7b533fa4ff39d4c344c7a7145d5f6173f3ecd8a980ef9fd072ff5
|
checksum: 10c0/3e7f88ad9bd780f6b0ec6511d00d222aa61d1fd8fad98d7dfdf9d98d112b655c5ae0c2d575709008f01ceb049e134ccfc2fb21ea5948a93ad60c65fada289c49
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/resolve-extends@npm:^20.4.0":
|
"@commitlint/resolve-extends@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/resolve-extends@npm:20.4.0"
|
resolution: "@commitlint/resolve-extends@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/config-validator": "npm:^20.4.0"
|
"@commitlint/config-validator": "npm:^20.4.3"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
global-directory: "npm:^4.0.1"
|
global-directory: "npm:^4.0.1"
|
||||||
import-meta-resolve: "npm:^4.0.0"
|
import-meta-resolve: "npm:^4.0.0"
|
||||||
lodash.mergewith: "npm:^4.6.2"
|
lodash.mergewith: "npm:^4.6.2"
|
||||||
resolve-from: "npm:^5.0.0"
|
resolve-from: "npm:^5.0.0"
|
||||||
checksum: 10c0/c2ab46a32d89014fdba0fdaf6bfbfdb6b411311fa76e52948df4d2eaf048f4e8c1281b8f59742ec74adc8558ec1f7bfc22f1af8e7203536963998daf3eb271e3
|
checksum: 10c0/09220329bacdcb0c90bb93d18e9d57bb832a64a2683bd39d183e07b19131aa19999c61abf30159989432755997852e3fb78227333b46ad662dd62b7c91c01a78
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/rules@npm:^20.4.2":
|
"@commitlint/rules@npm:^20.4.3":
|
||||||
version: 20.4.2
|
version: 20.4.3
|
||||||
resolution: "@commitlint/rules@npm:20.4.2"
|
resolution: "@commitlint/rules@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/ensure": "npm:^20.4.1"
|
"@commitlint/ensure": "npm:^20.4.3"
|
||||||
"@commitlint/message": "npm:^20.4.0"
|
"@commitlint/message": "npm:^20.4.3"
|
||||||
"@commitlint/to-lines": "npm:^20.0.0"
|
"@commitlint/to-lines": "npm:^20.0.0"
|
||||||
"@commitlint/types": "npm:^20.4.0"
|
"@commitlint/types": "npm:^20.4.3"
|
||||||
checksum: 10c0/7fa322257bb719504db233a11afe49e1e97847cf5a1004b9af489e7bb81381898f8fbdcaa3e826471d4933e156f99ba1de824ef2941db2f844416f588a2f6002
|
checksum: 10c0/03348731a9d01acd65a7e5a19c6a24d1fb5418bad09c9d4bde40081a1c75d7e06157049a8f8973ecdfa640f3c1dd8f70b8ce678e6a3456b855198dcaa51ca667
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -237,22 +237,22 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/top-level@npm:^20.4.0":
|
"@commitlint/top-level@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/top-level@npm:20.4.0"
|
resolution: "@commitlint/top-level@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
escalade: "npm:^3.2.0"
|
escalade: "npm:^3.2.0"
|
||||||
checksum: 10c0/eaf181e7bc4bd8b604d0a22f28d8ad87bbdccbecd2d3d61c141cec09052534870bb8a5fecd4e2ad2c718b2ebddded80f0d7e60144e11daecc05153e1ec78ad75
|
checksum: 10c0/52a1f59677d3d2e4bdd998bbde6e7e3848ce52372c7bd394ad24555820cadbf6820886bc33bf42a8c73878c6f0b211334ce93c4f4fbf6d8e8022b72c5c39ebd5
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@commitlint/types@npm:^20.4.0":
|
"@commitlint/types@npm:^20.4.3":
|
||||||
version: 20.4.0
|
version: 20.4.3
|
||||||
resolution: "@commitlint/types@npm:20.4.0"
|
resolution: "@commitlint/types@npm:20.4.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
conventional-commits-parser: "npm:^6.2.1"
|
conventional-commits-parser: "npm:^6.3.0"
|
||||||
picocolors: "npm:^1.1.1"
|
picocolors: "npm:^1.1.1"
|
||||||
checksum: 10c0/d469c74317d279c0e5adeeb2b0ef7cc9a5fd80cea77ab4e92fc60cf2e23a8b56ee1345c82e7f3725c329d5c87b80dcf39608dff6b356e8aa51f62f657529348c
|
checksum: 10c0/2181f9696f95b828551521e576fe786f81de5b5669e0ac876808e86811587011f7b78644f97c1d6623cc2bad68e0592416327080f14f153deccc20c5d295367e
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -303,14 +303,14 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@ivuorinen/semantic-release-config@npm:^1.0.0":
|
"@ivuorinen/semantic-release-config@npm:^1.0.0":
|
||||||
version: 1.1.4
|
version: 1.1.8
|
||||||
resolution: "@ivuorinen/semantic-release-config@npm:1.1.4"
|
resolution: "@ivuorinen/semantic-release-config@npm:1.1.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@ivuorinen/config-checker": "npm:^2.0.0"
|
"@ivuorinen/config-checker": "npm:^2.0.0"
|
||||||
"@semantic-release/changelog": "npm:^6.0.3"
|
"@semantic-release/changelog": "npm:^6.0.3"
|
||||||
"@semantic-release/git": "npm:^10.0.1"
|
"@semantic-release/git": "npm:^10.0.1"
|
||||||
semantic-release: "npm:^25.0.2"
|
semantic-release: "npm:^25.0.2"
|
||||||
checksum: 10c0/9cc316b11d917236c1dadffeceee7141cc24dcafc5b7853871a186acb253334bf42536f7eee218710f7864f839b2df4f1010113a68d51f86e4b08409bf386441
|
checksum: 10c0/583705e5833ec7162882f9653af9c4e4dfcd1655a9058b824920e121d6541bee7b59a85440d1fb8d04c8c039a4dba35b1cefe969768d674cb87bffc5cb48fde6
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -1336,27 +1336,27 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"conventional-changelog-angular@npm:^8.0.0, conventional-changelog-angular@npm:^8.1.0":
|
"conventional-changelog-angular@npm:^8.0.0, conventional-changelog-angular@npm:^8.2.0":
|
||||||
version: 8.2.0
|
version: 8.3.0
|
||||||
resolution: "conventional-changelog-angular@npm:8.2.0"
|
resolution: "conventional-changelog-angular@npm:8.3.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
compare-func: "npm:^2.0.0"
|
compare-func: "npm:^2.0.0"
|
||||||
checksum: 10c0/15f4d455df3152db62d3a7e92c83abe2438721e4b6736cae20b1ce17162fa0aca098b3a62f4f50d3541e4aa300f89f8768d7ba45b83cca77336ffb3700669e9e
|
checksum: 10c0/bab87fa741a25e4fb623e2629912a5e592de5ed616398bee0cd9779dc950aae2a78ac48a6f4268cbb5f5544bb33644e01c7b40cea378bb9763ae5304cc22efc2
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"conventional-changelog-conventionalcommits@npm:^9.1.0":
|
"conventional-changelog-conventionalcommits@npm:^9.2.0":
|
||||||
version: 9.2.0
|
version: 9.3.0
|
||||||
resolution: "conventional-changelog-conventionalcommits@npm:9.2.0"
|
resolution: "conventional-changelog-conventionalcommits@npm:9.3.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
compare-func: "npm:^2.0.0"
|
compare-func: "npm:^2.0.0"
|
||||||
checksum: 10c0/1ea8f1b9a9044680c3faf9d7a963a95d65bcec45815426ebdd00f1bd2bfa26aa26c454ebaa3fb67f3dd2c1b69ad48f25f20dd7837b535210576d3e18d5e8f3a7
|
checksum: 10c0/36be9435bb1f6e97bc729a1e69471851b6621054980617dc9a82c03221de5f9c21cd2369308c364f89b2383bd596071f90c8c71efdbe7a2908f91a935685fc76
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"conventional-changelog-writer@npm:^8.0.0":
|
"conventional-changelog-writer@npm:^8.0.0":
|
||||||
version: 8.3.0
|
version: 8.4.0
|
||||||
resolution: "conventional-changelog-writer@npm:8.3.0"
|
resolution: "conventional-changelog-writer@npm:8.4.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@simple-libs/stream-utils": "npm:^1.2.0"
|
"@simple-libs/stream-utils": "npm:^1.2.0"
|
||||||
conventional-commits-filter: "npm:^5.0.0"
|
conventional-commits-filter: "npm:^5.0.0"
|
||||||
@@ -1365,7 +1365,7 @@ __metadata:
|
|||||||
semver: "npm:^7.5.2"
|
semver: "npm:^7.5.2"
|
||||||
bin:
|
bin:
|
||||||
conventional-changelog-writer: dist/cli/index.js
|
conventional-changelog-writer: dist/cli/index.js
|
||||||
checksum: 10c0/e0ce001c54085a72504c1af6a6eade4ddf2ccf1e155ba8bf80bb03228b36c719b8a1f389d222c13f32f224d0ac448e0bed40222ebfbfe9a813e0b23d6162d258
|
checksum: 10c0/d657bf74c470e5d515d3a07814d266e6e2aea018e6867bfefa4bc486bb3f948b47b01936d65e46b3090111823364c21c201f9fbe875b1fc805cdf884bb032bc1
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -1376,7 +1376,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"conventional-commits-parser@npm:^6.0.0, conventional-commits-parser@npm:^6.2.1":
|
"conventional-commits-parser@npm:^6.0.0, conventional-commits-parser@npm:^6.3.0":
|
||||||
version: 6.3.0
|
version: 6.3.0
|
||||||
resolution: "conventional-commits-parser@npm:6.3.0"
|
resolution: "conventional-commits-parser@npm:6.3.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -1415,9 +1415,9 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"cosmiconfig@npm:^9.0.0":
|
"cosmiconfig@npm:^9.0.0, cosmiconfig@npm:^9.0.1":
|
||||||
version: 9.0.0
|
version: 9.0.1
|
||||||
resolution: "cosmiconfig@npm:9.0.0"
|
resolution: "cosmiconfig@npm:9.0.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
env-paths: "npm:^2.2.1"
|
env-paths: "npm:^2.2.1"
|
||||||
import-fresh: "npm:^3.3.0"
|
import-fresh: "npm:^3.3.0"
|
||||||
@@ -1428,7 +1428,7 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
typescript:
|
typescript:
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/1c1703be4f02a250b1d6ca3267e408ce16abfe8364193891afc94c2d5c060b69611fdc8d97af74b7e6d5d1aac0ab2fb94d6b079573146bc2d756c2484ce5f0ee
|
checksum: 10c0/a5d4d95599687532ee072bca60170133c24d4e08cd795529e0f22c6ce5fde9409eaf4f26e36e3d671f43270ef858fc68f3c7b0ec28e58fac7ddebda5b7725306
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -1768,13 +1768,13 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"fs-extra@npm:^11.0.0":
|
"fs-extra@npm:^11.0.0":
|
||||||
version: 11.3.3
|
version: 11.3.4
|
||||||
resolution: "fs-extra@npm:11.3.3"
|
resolution: "fs-extra@npm:11.3.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
graceful-fs: "npm:^4.2.0"
|
graceful-fs: "npm:^4.2.0"
|
||||||
jsonfile: "npm:^6.0.1"
|
jsonfile: "npm:^6.0.1"
|
||||||
universalify: "npm:^2.0.0"
|
universalify: "npm:^2.0.0"
|
||||||
checksum: 10c0/984924ff4104e3e9f351b658a864bf3b354b2c90429f57aec0acd12d92c4e6b762cbacacdffb4e745b280adce882e1f980c485d9f02c453f769ab4e7fc646ce3
|
checksum: 10c0/e08276f767a62496ae97d711aaa692c6a478177f24a85979b6a2881c9db9c68b8c2ad5da0bcf92c0b2a474cea6e935ec245656441527958fd8372cb647087df0
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -4062,15 +4062,15 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"tar@npm:^7.4.3, tar@npm:^7.5.1, tar@npm:^7.5.4, tar@npm:^7.5.9":
|
"tar@npm:^7.4.3, tar@npm:^7.5.1, tar@npm:^7.5.4, tar@npm:^7.5.9":
|
||||||
version: 7.5.9
|
version: 7.5.11
|
||||||
resolution: "tar@npm:7.5.9"
|
resolution: "tar@npm:7.5.11"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@isaacs/fs-minipass": "npm:^4.0.0"
|
"@isaacs/fs-minipass": "npm:^4.0.0"
|
||||||
chownr: "npm:^3.0.0"
|
chownr: "npm:^3.0.0"
|
||||||
minipass: "npm:^7.1.2"
|
minipass: "npm:^7.1.2"
|
||||||
minizlib: "npm:^3.1.0"
|
minizlib: "npm:^3.1.0"
|
||||||
yallist: "npm:^5.0.0"
|
yallist: "npm:^5.0.0"
|
||||||
checksum: 10c0/e870beb1b2477135ca2abe86b2d18f7b35d0a4e3a37bbc523d3b8f7adca268dfab543f26528a431d569897f8c53a7cac745cdfbc4411c2f89aeeacc652b81b0a
|
checksum: 10c0/b6bb420550ef50ef23356018155e956cd83282c97b6128d8d5cfe5740c57582d806a244b2ef0bf686a74ce526babe8b8b9061527623e935e850008d86d838929
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user