@meza/adr-tools 1.0.8 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +40 -0
- package/.github/renovate.json +5 -0
- package/.github/workflows/ci-pr.yml +44 -0
- package/.github/workflows/ci.yml +21 -22
- package/.github/workflows/sync-deps-to-main.yml +25 -0
- package/.github/workflows/sync-to-deps.yml +26 -0
- package/.releaserc.json +2 -7
- package/CHANGELOG.md +84 -0
- package/LICENSE +674 -0
- package/README.md +64 -5
- package/biome.json +148 -0
- package/dist/index.js +105 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/adr.js +177 -0
- package/dist/lib/adr.js.map +1 -0
- package/dist/lib/config.js +33 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/links.js +25 -0
- package/dist/lib/links.js.map +1 -0
- package/dist/lib/links.test.js +65 -0
- package/dist/lib/links.test.js.map +1 -0
- package/dist/lib/manipulator.js +84 -0
- package/dist/lib/manipulator.js.map +1 -0
- package/dist/lib/manipulator.test.js +76 -0
- package/dist/lib/manipulator.test.js.map +1 -0
- package/dist/lib/numbering.js +25 -0
- package/dist/lib/numbering.js.map +1 -0
- package/dist/lib/numbering.test.js +32 -0
- package/dist/lib/numbering.test.js.map +1 -0
- package/dist/lib/prompt.js +14 -0
- package/dist/lib/prompt.js.map +1 -0
- package/dist/lib/prompt.test.js +33 -0
- package/dist/lib/prompt.test.js.map +1 -0
- package/dist/lib/template.js +21 -0
- package/dist/lib/template.js.map +1 -0
- package/{doc/adr/0001-record-architecture-decisions.md → dist/templates/init.md} +2 -2
- package/dist/templates/template.md +19 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/lib/adr.d.ts +18 -0
- package/dist/types/lib/adr.d.ts.map +1 -0
- package/dist/types/lib/config.d.ts +3 -0
- package/dist/types/lib/config.d.ts.map +1 -0
- package/dist/types/lib/links.d.ts +10 -0
- package/dist/types/lib/links.d.ts.map +1 -0
- package/dist/types/lib/links.test.d.ts +2 -0
- package/dist/types/lib/links.test.d.ts.map +1 -0
- package/dist/types/lib/manipulator.d.ts +11 -0
- package/dist/types/lib/manipulator.d.ts.map +1 -0
- package/dist/types/lib/manipulator.test.d.ts +2 -0
- package/dist/types/lib/manipulator.test.d.ts.map +1 -0
- package/dist/types/lib/numbering.d.ts +2 -0
- package/dist/types/lib/numbering.d.ts.map +1 -0
- package/dist/types/lib/numbering.test.d.ts +2 -0
- package/dist/types/lib/numbering.test.d.ts.map +1 -0
- package/dist/types/lib/prompt.d.ts +2 -0
- package/dist/types/lib/prompt.d.ts.map +1 -0
- package/dist/types/lib/prompt.test.d.ts +2 -0
- package/dist/types/lib/prompt.test.d.ts.map +1 -0
- package/dist/types/lib/template.d.ts +2 -0
- package/dist/types/lib/template.d.ts.map +1 -0
- package/dist/types/version.d.ts +2 -0
- package/dist/types/version.d.ts.map +1 -0
- package/dist/version.js +2 -0
- package/dist/version.js.map +1 -0
- package/doc/adr/.adr-sequence.lock +1 -0
- package/doc/adr/decisions.md +3 -0
- package/package.json +78 -48
- package/src/index.ts +52 -27
- package/src/lib/adr.ts +67 -72
- package/src/lib/config.ts +3 -3
- package/src/lib/links.test.ts +8 -24
- package/src/lib/links.ts +2 -2
- package/src/lib/manipulator.test.ts +44 -47
- package/src/lib/manipulator.ts +22 -10
- package/src/lib/numbering.test.ts +5 -9
- package/src/lib/numbering.ts +4 -5
- package/src/lib/prompt.test.ts +42 -0
- package/src/lib/prompt.ts +14 -0
- package/src/lib/template.ts +7 -3
- package/src/version.ts +1 -1
- package/tests/.adr-dir +1 -0
- package/tests/__snapshots__/generate-graph.e2e.test.ts.snap +23 -23
- package/tests/__snapshots__/init-adr-repository.e2e.test.ts.snap +1 -1
- package/tests/__snapshots__/linking-records.e2e.test.ts.snap +1 -1
- package/tests/__snapshots__/new-adr.e2e.test.ts.snap +1 -1
- package/tests/__snapshots__/superseding-records.e2e.test.ts.snap +1 -1
- package/tests/__snapshots__/toc-prefixing.e2e.test.ts.snap +1 -1
- package/tests/__snapshots__/use-template-override.e2e.test.ts.snap +1 -1
- package/tests/edit-on-create.e2e.test.ts +17 -12
- package/tests/funny-characters.e2e.test.ts +28 -21
- package/tests/generate-graph.e2e.test.ts +21 -13
- package/tests/init-adr-repository.e2e.test.ts +12 -8
- package/tests/linking-records.e2e.test.ts +21 -14
- package/tests/list-adrs.e2e.test.ts +23 -18
- package/tests/new-adr.e2e.test.ts +15 -12
- package/tests/superseding-records.e2e.test.ts +16 -11
- package/tests/toc-prefixing.e2e.test.ts +15 -11
- package/tests/use-template-override.e2e.test.ts +18 -10
- package/tests/work-form-other-directories.e2e.test.ts +14 -12
- package/tsconfig.json +9 -8
- package/vitest.config.e2e.ts +13 -0
- package/vitest.config.ts +8 -1
- package/.eslintignore +0 -2
- package/.eslintrc.json +0 -23
- package/.github/dependabot.yml +0 -14
- package/.github/workflows/auto-merge.yml +0 -14
- package/doc/adr/0002-using-heavy-e2e-tests.md +0 -20
- /package/src/{environment.d.ts → types/environment.d.ts} +0 -0
package/.gitattributes
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
###############################
|
|
2
|
+
# Git Line Endings #
|
|
3
|
+
###############################
|
|
4
|
+
|
|
5
|
+
# Set default behaviour to automatically normalize line endings to lf.
|
|
6
|
+
* text eol=lf
|
|
7
|
+
|
|
8
|
+
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
|
|
9
|
+
# in Windows via a file share from Linux, the scripts will work.
|
|
10
|
+
*.{cmd,[cC][mM][dD]} text eol=crlf
|
|
11
|
+
*.{bat,[bB][aA][tT]} text eol=crlf
|
|
12
|
+
|
|
13
|
+
# Force bash scripts to always use LF line endings so that if a repo is accessed
|
|
14
|
+
# in Unix via a file share from Windows, the scripts will work.
|
|
15
|
+
*.sh text eol=lf
|
|
16
|
+
|
|
17
|
+
# Archives
|
|
18
|
+
*.7z binary
|
|
19
|
+
*.br binary
|
|
20
|
+
*.gz binary
|
|
21
|
+
*.tar binary
|
|
22
|
+
*.zip binary
|
|
23
|
+
|
|
24
|
+
# Documents
|
|
25
|
+
*.pdf binary
|
|
26
|
+
|
|
27
|
+
# Images
|
|
28
|
+
*.gif binary
|
|
29
|
+
*.ico binary
|
|
30
|
+
*.jpg binary
|
|
31
|
+
*.pdf binary
|
|
32
|
+
*.png binary
|
|
33
|
+
*.psd binary
|
|
34
|
+
*.webp binary
|
|
35
|
+
|
|
36
|
+
# Fonts
|
|
37
|
+
*.woff2 binary
|
|
38
|
+
|
|
39
|
+
# Other
|
|
40
|
+
*.exe binary
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: Verify PR
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
- pull_request
|
|
5
|
+
|
|
6
|
+
env:
|
|
7
|
+
NODE_VERSION: 22.x
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
verifypr:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Cache multiple paths
|
|
18
|
+
uses: actions/cache@v4
|
|
19
|
+
with:
|
|
20
|
+
path: |
|
|
21
|
+
~/.cache
|
|
22
|
+
~/node_modules
|
|
23
|
+
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
|
24
|
+
|
|
25
|
+
- name: Get yarn cache directory path
|
|
26
|
+
id: yarn-cache-dir-path
|
|
27
|
+
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
|
28
|
+
|
|
29
|
+
- uses: actions/cache@v4
|
|
30
|
+
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
31
|
+
with:
|
|
32
|
+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
33
|
+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
34
|
+
restore-keys: |
|
|
35
|
+
${{ runner.os }}-yarn-
|
|
36
|
+
|
|
37
|
+
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
38
|
+
uses: actions/setup-node@v4
|
|
39
|
+
with:
|
|
40
|
+
node-version: ${{ env.NODE_VERSION }}
|
|
41
|
+
cache: 'yarn'
|
|
42
|
+
|
|
43
|
+
- run: yarn --pure-lockfile
|
|
44
|
+
- run: yarn ci
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -1,33 +1,32 @@
|
|
|
1
1
|
name: Verify and Release
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
- push
|
|
5
|
+
|
|
6
|
+
env:
|
|
7
|
+
NODE_VERSION: 22.x
|
|
4
8
|
|
|
5
9
|
jobs:
|
|
6
10
|
build:
|
|
7
11
|
|
|
8
12
|
runs-on: ubuntu-latest
|
|
9
13
|
|
|
10
|
-
strategy:
|
|
11
|
-
matrix:
|
|
12
|
-
node-version: [ 18.x ]
|
|
13
|
-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
14
|
-
|
|
15
14
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v4
|
|
17
16
|
|
|
18
17
|
- name: Cache multiple paths
|
|
19
|
-
uses: actions/cache@
|
|
18
|
+
uses: actions/cache@v4
|
|
20
19
|
with:
|
|
21
20
|
path: |
|
|
22
21
|
~/.cache
|
|
23
22
|
~/node_modules
|
|
24
|
-
key: ${{ runner.os }}-${{ hashFiles('**/
|
|
23
|
+
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
|
25
24
|
|
|
26
25
|
- name: Get yarn cache directory path
|
|
27
26
|
id: yarn-cache-dir-path
|
|
28
27
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
|
29
28
|
|
|
30
|
-
- uses: actions/cache@
|
|
29
|
+
- uses: actions/cache@v4
|
|
31
30
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
32
31
|
with:
|
|
33
32
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
@@ -35,14 +34,14 @@ jobs:
|
|
|
35
34
|
restore-keys: |
|
|
36
35
|
${{ runner.os }}-yarn-
|
|
37
36
|
|
|
38
|
-
- name: Use Node.js ${{
|
|
39
|
-
uses: actions/setup-node@
|
|
37
|
+
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
38
|
+
uses: actions/setup-node@v4
|
|
40
39
|
with:
|
|
41
|
-
node-version: ${{
|
|
40
|
+
node-version: ${{ env.NODE_VERSION }}
|
|
42
41
|
cache: 'yarn'
|
|
43
42
|
|
|
44
43
|
- run: yarn --pure-lockfile
|
|
45
|
-
- run: yarn
|
|
44
|
+
- run: yarn ci
|
|
46
45
|
|
|
47
46
|
release:
|
|
48
47
|
needs: [build]
|
|
@@ -51,23 +50,23 @@ jobs:
|
|
|
51
50
|
if: ${{github.ref == 'ref/head/main'}} || ${{github.ref == 'ref/head/next'}}
|
|
52
51
|
steps:
|
|
53
52
|
- name: Checkout
|
|
54
|
-
uses: actions/checkout@
|
|
53
|
+
uses: actions/checkout@v4
|
|
55
54
|
with:
|
|
56
55
|
fetch-depth: 0
|
|
57
56
|
persist-credentials: false
|
|
58
57
|
- name: Cache multiple paths
|
|
59
|
-
uses: actions/cache@
|
|
58
|
+
uses: actions/cache@v4
|
|
60
59
|
with:
|
|
61
60
|
path: |
|
|
62
61
|
~/.cache
|
|
63
62
|
~/node_modules
|
|
64
|
-
key: ${{ runner.os }}-${{ hashFiles('**/
|
|
63
|
+
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
|
65
64
|
|
|
66
65
|
- name: Get yarn cache directory path
|
|
67
66
|
id: yarn-cache-dir-path
|
|
68
67
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
|
69
68
|
|
|
70
|
-
- uses: actions/cache@
|
|
69
|
+
- uses: actions/cache@v4
|
|
71
70
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
72
71
|
with:
|
|
73
72
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
@@ -75,14 +74,14 @@ jobs:
|
|
|
75
74
|
restore-keys: |
|
|
76
75
|
${{ runner.os }}-yarn-
|
|
77
76
|
|
|
78
|
-
- name: Use Node.js ${{
|
|
79
|
-
uses: actions/setup-node@
|
|
77
|
+
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
78
|
+
uses: actions/setup-node@v4
|
|
80
79
|
with:
|
|
81
|
-
node-version: ${{
|
|
80
|
+
node-version: ${{ env.NODE_VERSION }}
|
|
82
81
|
cache: 'yarn'
|
|
83
82
|
|
|
84
83
|
- name: Install deps
|
|
85
|
-
run: yarn --pure-lockfile
|
|
84
|
+
run: yarn --pure-lockfile
|
|
86
85
|
|
|
87
86
|
- name: Release
|
|
88
87
|
env:
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Sync Deps to Main
|
|
2
|
+
on:
|
|
3
|
+
schedule:
|
|
4
|
+
- cron: '9 0 * * 4'
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
sync-branches:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
name: Syncing dependencies
|
|
10
|
+
steps:
|
|
11
|
+
- name: Checkout
|
|
12
|
+
uses: actions/checkout@v4
|
|
13
|
+
- name: Set up Node
|
|
14
|
+
uses: actions/setup-node@v4
|
|
15
|
+
with:
|
|
16
|
+
node-version: 12
|
|
17
|
+
- name: Opening pull request
|
|
18
|
+
id: pull
|
|
19
|
+
uses: tretuna/sync-branches@1.4.0
|
|
20
|
+
with:
|
|
21
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
22
|
+
FROM_BRANCH: "dependency-update"
|
|
23
|
+
TO_BRANCH: "main"
|
|
24
|
+
PULL_REQUEST_TITLE: "chore: sync deps to main"
|
|
25
|
+
PULL_REQUEST_AUTO_MERGE_METHOD: "merge"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: Sync Main to Deps
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
sync-branches:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
name: Syncing branches
|
|
11
|
+
steps:
|
|
12
|
+
- name: Checkout
|
|
13
|
+
uses: actions/checkout@v4
|
|
14
|
+
- name: Set up Node
|
|
15
|
+
uses: actions/setup-node@v4
|
|
16
|
+
with:
|
|
17
|
+
node-version: 12
|
|
18
|
+
- name: Opening pull request
|
|
19
|
+
id: pull
|
|
20
|
+
uses: tretuna/sync-branches@1.4.0
|
|
21
|
+
with:
|
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
FROM_BRANCH: "main"
|
|
24
|
+
TO_BRANCH: "dependency-update"
|
|
25
|
+
PULL_REQUEST_TITLE: "chore: sync main to deps"
|
|
26
|
+
PULL_REQUEST_AUTO_MERGE_METHOD: "merge"
|
package/.releaserc.json
CHANGED
|
@@ -28,9 +28,7 @@
|
|
|
28
28
|
{
|
|
29
29
|
"assets": [
|
|
30
30
|
{
|
|
31
|
-
"path": [
|
|
32
|
-
"CHANGELOG.md"
|
|
33
|
-
],
|
|
31
|
+
"path": ["CHANGELOG.md"],
|
|
34
32
|
"name": "adr-tools-${nextRelease.gitTag}.zip",
|
|
35
33
|
"label": "ADR-Tools ${nextRelease.gitTag}"
|
|
36
34
|
}
|
|
@@ -41,10 +39,7 @@
|
|
|
41
39
|
"@semantic-release/git",
|
|
42
40
|
{
|
|
43
41
|
"message": "chore(release): ${nextRelease.version} as ${branch.channel} [skip ci]\n\n${nextRelease.notes}",
|
|
44
|
-
"assets": [
|
|
45
|
-
"package.json",
|
|
46
|
-
"CHANGELOG.md"
|
|
47
|
-
]
|
|
42
|
+
"assets": ["package.json", "CHANGELOG.md"]
|
|
48
43
|
}
|
|
49
44
|
]
|
|
50
45
|
]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,89 @@
|
|
|
1
1
|
# ADR Tools Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.11](https://github.com/meza/adr-tools/compare/v1.0.10...v1.0.11) (2025-05-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency @types/inquirer to v9.0.8 ([52a8cc2](https://github.com/meza/adr-tools/commit/52a8cc25df8c472d40046d793df46f059f8b35a1))
|
|
9
|
+
* **deps:** update dependency @types/node to v22.10.0 ([b2fde38](https://github.com/meza/adr-tools/commit/b2fde38c1071967028a3d453a7607947342c4be0))
|
|
10
|
+
* **deps:** update dependency @types/node to v22.10.1 ([0578ee3](https://github.com/meza/adr-tools/commit/0578ee392ad19ce580cf6dddf6457141caf7d6b1))
|
|
11
|
+
* **deps:** update dependency @types/node to v22.10.10 ([1ceca57](https://github.com/meza/adr-tools/commit/1ceca579cf9fe41425f551cc9959b45b7ab80752))
|
|
12
|
+
* **deps:** update dependency @types/node to v22.10.2 ([996143d](https://github.com/meza/adr-tools/commit/996143db50e4b1e91600a4bf40f35708c49c5a22))
|
|
13
|
+
* **deps:** update dependency @types/node to v22.10.3 ([2e32e83](https://github.com/meza/adr-tools/commit/2e32e83227890a6d67c7d140930ea930e667d9a1))
|
|
14
|
+
* **deps:** update dependency @types/node to v22.10.4 ([af6a728](https://github.com/meza/adr-tools/commit/af6a7286b644c926d5712e393f2b2d91bae47066))
|
|
15
|
+
* **deps:** update dependency @types/node to v22.10.5 ([5f7805a](https://github.com/meza/adr-tools/commit/5f7805a826aa89218aa3353502d7dd964d34cc37))
|
|
16
|
+
* **deps:** update dependency @types/node to v22.10.6 ([0a07622](https://github.com/meza/adr-tools/commit/0a07622ee374f9dc90de165dfce5beb54c71e0c7))
|
|
17
|
+
* **deps:** update dependency @types/node to v22.10.7 ([ef966f5](https://github.com/meza/adr-tools/commit/ef966f5eb70e3beea93ed62289bc7ddfb9cd2f70))
|
|
18
|
+
* **deps:** update dependency @types/node to v22.12.0 ([4f59ed6](https://github.com/meza/adr-tools/commit/4f59ed660571267e965c49c39b53176292c96426))
|
|
19
|
+
* **deps:** update dependency @types/node to v22.13.0 ([95613d4](https://github.com/meza/adr-tools/commit/95613d45a18692c240e457bb9c44d91cf737fcf3))
|
|
20
|
+
* **deps:** update dependency @types/node to v22.13.1 ([a307a6e](https://github.com/meza/adr-tools/commit/a307a6ef9d071a4b56bdad2c2461fcb8f0c3e364))
|
|
21
|
+
* **deps:** update dependency @types/node to v22.13.10 ([2954e7a](https://github.com/meza/adr-tools/commit/2954e7a88fe93173f047bcad6109540398cd6565))
|
|
22
|
+
* **deps:** update dependency @types/node to v22.13.11 ([087fe1d](https://github.com/meza/adr-tools/commit/087fe1d21c9316249151e86408de125f8c30935f))
|
|
23
|
+
* **deps:** update dependency @types/node to v22.13.13 ([034410e](https://github.com/meza/adr-tools/commit/034410e2b8e44cf45a38dc0dc820786b435d1d08))
|
|
24
|
+
* **deps:** update dependency @types/node to v22.13.14 ([068f963](https://github.com/meza/adr-tools/commit/068f963d472518d819e2d593234ddb4cdd6b0081))
|
|
25
|
+
* **deps:** update dependency @types/node to v22.13.17 ([4c6c807](https://github.com/meza/adr-tools/commit/4c6c80750b35c7db942826af2f7c9faf78870ad6))
|
|
26
|
+
* **deps:** update dependency @types/node to v22.13.2 ([33ef79b](https://github.com/meza/adr-tools/commit/33ef79bb95224ef44ecf85fdb0c76a52a1241845))
|
|
27
|
+
* **deps:** update dependency @types/node to v22.13.5 ([d874c3d](https://github.com/meza/adr-tools/commit/d874c3d07bfce465d0fac5a2172750a5747c1abf))
|
|
28
|
+
* **deps:** update dependency @types/node to v22.13.7 ([94ac128](https://github.com/meza/adr-tools/commit/94ac128d843295a1c606faa22284459bcc35a7ee))
|
|
29
|
+
* **deps:** update dependency @types/node to v22.13.8 ([890cbbe](https://github.com/meza/adr-tools/commit/890cbbec2e127ce65e4b9f8de4a6b4737c34f3b1))
|
|
30
|
+
* **deps:** update dependency @types/node to v22.13.9 ([831d666](https://github.com/meza/adr-tools/commit/831d6661e73344a39ec6c39a5d37d1f0314f7a39))
|
|
31
|
+
* **deps:** update dependency @types/node to v22.14.0 ([ca8c04f](https://github.com/meza/adr-tools/commit/ca8c04f7b85ad5d502a8677679c502ea30089c70))
|
|
32
|
+
* **deps:** update dependency @types/node to v22.14.1 ([21ff31f](https://github.com/meza/adr-tools/commit/21ff31fe34a0051bdd02c6a2f1692dfd343aa15d))
|
|
33
|
+
* **deps:** update dependency @types/node to v22.15.0 ([ab97411](https://github.com/meza/adr-tools/commit/ab974114f23aa3ad73365c2a64cc51f0c033e1a9))
|
|
34
|
+
* **deps:** update dependency @types/node to v22.15.11 ([31e3442](https://github.com/meza/adr-tools/commit/31e3442d753b974d17ccbb004a98a48b999ffe2a))
|
|
35
|
+
* **deps:** update dependency @types/node to v22.15.15 ([683c43e](https://github.com/meza/adr-tools/commit/683c43eec2572d7b8204e402bbf94462b4c3bd75))
|
|
36
|
+
* **deps:** update dependency @types/node to v22.15.17 ([856d584](https://github.com/meza/adr-tools/commit/856d584335807fceaf64db64860facd779f5c06f))
|
|
37
|
+
* **deps:** update dependency @types/node to v22.15.18 ([7031975](https://github.com/meza/adr-tools/commit/70319757781528b2ecb9b0f5baca90705d3e5376))
|
|
38
|
+
* **deps:** update dependency @types/node to v22.15.19 ([fad7a00](https://github.com/meza/adr-tools/commit/fad7a00bd5c08c32b8cb0216796b23fe22158479))
|
|
39
|
+
* **deps:** update dependency @types/node to v22.15.2 ([e5e6498](https://github.com/meza/adr-tools/commit/e5e64981110628b38332c686c80896ec1aa696b1))
|
|
40
|
+
* **deps:** update dependency @types/node to v22.15.21 ([aaacc9a](https://github.com/meza/adr-tools/commit/aaacc9ae1b7a820264b8a3718e3ee014278bb7be))
|
|
41
|
+
* **deps:** update dependency @types/node to v22.15.3 ([3acbf9e](https://github.com/meza/adr-tools/commit/3acbf9e1413226f5e0afa16a4b653e6b679be2bc))
|
|
42
|
+
* **deps:** update dependency @types/node to v22.4.0 ([bd93cb6](https://github.com/meza/adr-tools/commit/bd93cb6e0fc32760760d5f873f47e472307cc9f1))
|
|
43
|
+
* **deps:** update dependency @types/node to v22.4.1 ([3a61cbe](https://github.com/meza/adr-tools/commit/3a61cbea9b86ca6883b8c44e9498d71f636290ee))
|
|
44
|
+
* **deps:** update dependency @types/node to v22.4.2 ([5918b12](https://github.com/meza/adr-tools/commit/5918b129761978c94bee761c785e38b668dd8c65))
|
|
45
|
+
* **deps:** update dependency @types/node to v22.5.0 ([10fc832](https://github.com/meza/adr-tools/commit/10fc832e188fd98045aa7f69872e9b4de71928f6))
|
|
46
|
+
* **deps:** update dependency @types/node to v22.5.1 ([07f9cd0](https://github.com/meza/adr-tools/commit/07f9cd021aac78fab0fa45e4ae238cdf496a9431))
|
|
47
|
+
* **deps:** update dependency @types/node to v22.5.2 ([3427f61](https://github.com/meza/adr-tools/commit/3427f61949b8bf4c2884e0bb696a6f4ffaf5c81e))
|
|
48
|
+
* **deps:** update dependency @types/node to v22.5.3 ([f6096e5](https://github.com/meza/adr-tools/commit/f6096e556ce0a05ec80101436bfe0d0fd98940e2))
|
|
49
|
+
* **deps:** update dependency @types/node to v22.5.4 ([c252908](https://github.com/meza/adr-tools/commit/c25290877bede248f426e6c8fe152823af078f58))
|
|
50
|
+
* **deps:** update dependency @types/node to v22.5.5 ([bde74e8](https://github.com/meza/adr-tools/commit/bde74e8bea7c39b9934ae55280c35e8419c0c6a7))
|
|
51
|
+
* **deps:** update dependency @types/node to v22.7.0 ([1a80aa3](https://github.com/meza/adr-tools/commit/1a80aa388c19f96ad8c779131439e761938e6eea))
|
|
52
|
+
* **deps:** update dependency @types/node to v22.7.4 ([e5694d6](https://github.com/meza/adr-tools/commit/e5694d65951463cf5695f8da0c5542d713d5b4fa))
|
|
53
|
+
* **deps:** update dependency @types/node to v22.7.5 ([e2e303c](https://github.com/meza/adr-tools/commit/e2e303c3b5e4e6b7efa54eb0cdbc11bb4250d91b))
|
|
54
|
+
* **deps:** update dependency @types/node to v22.7.6 ([4afb3c5](https://github.com/meza/adr-tools/commit/4afb3c5c49401db45f12a40ebe32bea6dd503da2))
|
|
55
|
+
* **deps:** update dependency @types/node to v22.7.7 ([9edd88c](https://github.com/meza/adr-tools/commit/9edd88c692b9402d7788eaeed4d727c6f4c799aa))
|
|
56
|
+
* **deps:** update dependency @types/node to v22.7.8 ([887ee9b](https://github.com/meza/adr-tools/commit/887ee9b377fedd883815ccf5322c6f6fc6ac7f7b))
|
|
57
|
+
* **deps:** update dependency @types/node to v22.7.9 ([0e10658](https://github.com/meza/adr-tools/commit/0e10658f806885f1705d0ee46379fceaeece4f27))
|
|
58
|
+
* **deps:** update dependency @types/node to v22.8.1 ([05569ff](https://github.com/meza/adr-tools/commit/05569ffc812d6c184ecf4e0aa5dc5b15ae12a355))
|
|
59
|
+
* **deps:** update dependency @types/node to v22.8.2 ([79cbc2c](https://github.com/meza/adr-tools/commit/79cbc2c5e235509327de98b3e853acac12086c20))
|
|
60
|
+
* **deps:** update dependency @types/node to v22.8.4 ([24c0723](https://github.com/meza/adr-tools/commit/24c07236c3365a681fecbbb8180b596ead84182a))
|
|
61
|
+
* **deps:** update dependency @types/node to v22.8.7 ([c4c4a24](https://github.com/meza/adr-tools/commit/c4c4a24ae19fae595a58bb41b62fc0fcd96c7b55))
|
|
62
|
+
* **deps:** update dependency @types/node to v22.9.0 ([d6916a7](https://github.com/meza/adr-tools/commit/d6916a797af0a0ebdd1ae04777e75e240ac33fc7))
|
|
63
|
+
* **deps:** update dependency chalk to v5.4.0 ([e3a610a](https://github.com/meza/adr-tools/commit/e3a610a298cd2a194b15fe2794d47df30934009a))
|
|
64
|
+
* **deps:** update dependency chalk to v5.4.1 ([66dd075](https://github.com/meza/adr-tools/commit/66dd07599778fef01c047bc48f50a2c559dc39af))
|
|
65
|
+
* **deps:** update dependency core-js to v3.38.1 ([ecc0667](https://github.com/meza/adr-tools/commit/ecc0667c5753275329065911c91f4b7b887f54e7))
|
|
66
|
+
* **deps:** update dependency core-js to v3.39.0 ([cd22b67](https://github.com/meza/adr-tools/commit/cd22b67384275a04f139d99b7717413c2eff3656))
|
|
67
|
+
* **deps:** update dependency core-js to v3.40.0 ([abdf128](https://github.com/meza/adr-tools/commit/abdf1282e590428a248ac30c854f98637745f74b))
|
|
68
|
+
* **deps:** update dependency core-js to v3.41.0 ([178ade5](https://github.com/meza/adr-tools/commit/178ade5f55a3224584a245824d1fe0d3c3c584b9))
|
|
69
|
+
* **deps:** update dependency core-js to v3.42.0 ([b16110b](https://github.com/meza/adr-tools/commit/b16110bb4f77af9c2005bc18cdde78928501de1d))
|
|
70
|
+
* **deps:** update dependency inquirer to v9.3.7 ([586a66b](https://github.com/meza/adr-tools/commit/586a66b26f1e9dab3df32e040f3710c1d1ffc55b))
|
|
71
|
+
|
|
72
|
+
## [1.0.10](https://github.com/meza/adr-tools/compare/v1.0.9...v1.0.10) (2022-06-27)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
* added missing dependencies ([b07d0a6](https://github.com/meza/adr-tools/commit/b07d0a60bb563e81e74530d90aa421cbf985edf8))
|
|
78
|
+
* **ci:** fixed the cach key ([6149a19](https://github.com/meza/adr-tools/commit/6149a19aa0708170bb249466686e219b0dc0fe91))
|
|
79
|
+
|
|
80
|
+
## [1.0.9](https://github.com/meza/adr-tools/compare/v1.0.8...v1.0.9) (2022-06-27)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
* missing template ([4025740](https://github.com/meza/adr-tools/commit/40257404926e17a6c43f10d51c9809ce68e1400a))
|
|
86
|
+
|
|
3
87
|
## [1.0.8](https://github.com/meza/adr-tools/compare/v1.0.7...v1.0.8) (2022-06-27)
|
|
4
88
|
|
|
5
89
|
|