@meza/adr-tools 1.0.10 → 1.0.12

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.
Files changed (93) hide show
  1. package/.gitattributes +40 -0
  2. package/.github/renovate.json +5 -0
  3. package/.github/workflows/ci-pr.yml +50 -0
  4. package/.github/workflows/ci.yml +28 -20
  5. package/.github/workflows/sync-deps-to-main.yml +25 -0
  6. package/.github/workflows/sync-to-deps.yml +26 -0
  7. package/.releaserc.json +1 -13
  8. package/CHANGELOG.md +76 -0
  9. package/LICENSE +674 -0
  10. package/README.md +64 -5
  11. package/biome.json +148 -0
  12. package/dist/index.js +52 -82
  13. package/dist/index.js.map +1 -1
  14. package/dist/lib/adr.js +100 -126
  15. package/dist/lib/adr.js.map +1 -1
  16. package/dist/lib/config.js +20 -37
  17. package/dist/lib/config.js.map +1 -1
  18. package/dist/lib/links.js +8 -25
  19. package/dist/lib/links.js.map +1 -1
  20. package/dist/lib/links.test.js +35 -64
  21. package/dist/lib/links.test.js.map +1 -1
  22. package/dist/lib/manipulator.js +22 -23
  23. package/dist/lib/manipulator.js.map +1 -1
  24. package/dist/lib/manipulator.test.js +59 -63
  25. package/dist/lib/manipulator.test.js.map +1 -1
  26. package/dist/lib/numbering.js +9 -48
  27. package/dist/lib/numbering.js.map +1 -1
  28. package/dist/lib/numbering.test.js +27 -44
  29. package/dist/lib/numbering.test.js.map +1 -1
  30. package/dist/lib/prompt.js +14 -0
  31. package/dist/lib/prompt.js.map +1 -0
  32. package/dist/lib/prompt.test.js +33 -0
  33. package/dist/lib/prompt.test.js.map +1 -0
  34. package/dist/lib/template.js +13 -26
  35. package/dist/lib/template.js.map +1 -1
  36. package/dist/types/lib/adr.d.ts.map +1 -1
  37. package/dist/types/lib/config.d.ts.map +1 -1
  38. package/dist/types/lib/links.d.ts.map +1 -1
  39. package/dist/types/lib/manipulator.d.ts.map +1 -1
  40. package/dist/types/lib/numbering.d.ts.map +1 -1
  41. package/dist/types/lib/prompt.d.ts +2 -0
  42. package/dist/types/lib/prompt.d.ts.map +1 -0
  43. package/dist/types/lib/prompt.test.d.ts +2 -0
  44. package/dist/types/lib/prompt.test.d.ts.map +1 -0
  45. package/dist/types/lib/template.d.ts.map +1 -1
  46. package/dist/types/version.d.ts +1 -1
  47. package/dist/version.js +1 -4
  48. package/dist/version.js.map +1 -1
  49. package/doc/adr/.adr-sequence.lock +1 -0
  50. package/doc/adr/decisions.md +3 -0
  51. package/package.json +73 -47
  52. package/src/index.ts +52 -27
  53. package/src/lib/adr.ts +68 -73
  54. package/src/lib/config.ts +3 -3
  55. package/src/lib/links.test.ts +8 -24
  56. package/src/lib/links.ts +2 -2
  57. package/src/lib/manipulator.test.ts +44 -47
  58. package/src/lib/manipulator.ts +22 -10
  59. package/src/lib/numbering.test.ts +5 -9
  60. package/src/lib/numbering.ts +4 -5
  61. package/src/lib/prompt.test.ts +42 -0
  62. package/src/lib/prompt.ts +14 -0
  63. package/src/lib/template.ts +7 -3
  64. package/src/version.ts +1 -1
  65. package/tests/.adr-dir +1 -0
  66. package/tests/__snapshots__/generate-graph.e2e.test.ts.snap +23 -23
  67. package/tests/__snapshots__/init-adr-repository.e2e.test.ts.snap +1 -1
  68. package/tests/__snapshots__/linking-records.e2e.test.ts.snap +1 -1
  69. package/tests/__snapshots__/new-adr.e2e.test.ts.snap +1 -1
  70. package/tests/__snapshots__/superseding-records.e2e.test.ts.snap +1 -1
  71. package/tests/__snapshots__/toc-prefixing.e2e.test.ts.snap +1 -1
  72. package/tests/__snapshots__/use-template-override.e2e.test.ts.snap +1 -1
  73. package/tests/edit-on-create.e2e.test.ts +17 -12
  74. package/tests/funny-characters.e2e.test.ts +28 -21
  75. package/tests/generate-graph.e2e.test.ts +21 -13
  76. package/tests/init-adr-repository.e2e.test.ts +12 -8
  77. package/tests/linking-records.e2e.test.ts +21 -14
  78. package/tests/list-adrs.e2e.test.ts +23 -18
  79. package/tests/new-adr.e2e.test.ts +15 -12
  80. package/tests/superseding-records.e2e.test.ts +16 -11
  81. package/tests/toc-prefixing.e2e.test.ts +15 -11
  82. package/tests/use-template-override.e2e.test.ts +18 -10
  83. package/tests/work-form-other-directories.e2e.test.ts +14 -12
  84. package/tsconfig.json +9 -8
  85. package/vitest.config.e2e.ts +13 -0
  86. package/vitest.config.ts +8 -1
  87. package/.eslintignore +0 -2
  88. package/.eslintrc.json +0 -23
  89. package/.github/dependabot.yml +0 -14
  90. package/.github/workflows/auto-merge.yml +0 -14
  91. package/doc/adr/0001-record-architecture-decisions.md +0 -21
  92. package/doc/adr/0002-using-heavy-e2e-tests.md +0 -20
  93. /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,5 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": ["github>stateshifters/renovate-common"],
4
+ "baseBranches": ["dependency-update"]
5
+ }
@@ -0,0 +1,50 @@
1
+ name: Verify PR
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, reopened, edited, synchronize]
6
+
7
+ permissions:
8
+ issues: write
9
+ checks: write
10
+ contents: write
11
+ pull-requests: write
12
+ env:
13
+ NODE_VERSION: 22.x
14
+
15
+ jobs:
16
+ verifypr:
17
+ name: Verify PR
18
+ runs-on: ubuntu-latest
19
+
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+
23
+ - name: Cache multiple paths
24
+ uses: actions/cache@v4
25
+ with:
26
+ path: |
27
+ ~/.cache
28
+ ~/node_modules
29
+ key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
30
+
31
+ - name: Get yarn cache directory path
32
+ id: yarn-cache-dir-path
33
+ run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
34
+
35
+ - uses: actions/cache@v4
36
+ id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
37
+ with:
38
+ path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
39
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-yarn-
42
+
43
+ - name: Use Node.js ${{ env.NODE_VERSION }}
44
+ uses: actions/setup-node@v4
45
+ with:
46
+ node-version: ${{ env.NODE_VERSION }}
47
+ cache: 'yarn'
48
+
49
+ - run: yarn --pure-lockfile
50
+ - run: yarn ci
@@ -1,22 +1,30 @@
1
1
  name: Verify and Release
2
2
 
3
- on: [push]
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - next
8
+
9
+ permissions:
10
+ issues: write
11
+ checks: write
12
+ contents: write
13
+ pull-requests: write
14
+
15
+ env:
16
+ NODE_VERSION: 22.x
4
17
 
5
18
  jobs:
6
19
  build:
7
20
 
8
21
  runs-on: ubuntu-latest
9
22
 
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
23
  steps:
16
- - uses: actions/checkout@v2
24
+ - uses: actions/checkout@v4
17
25
 
18
26
  - name: Cache multiple paths
19
- uses: actions/cache@v2
27
+ uses: actions/cache@v4
20
28
  with:
21
29
  path: |
22
30
  ~/.cache
@@ -27,7 +35,7 @@ jobs:
27
35
  id: yarn-cache-dir-path
28
36
  run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
29
37
 
30
- - uses: actions/cache@v2
38
+ - uses: actions/cache@v4
31
39
  id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
32
40
  with:
33
41
  path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -35,14 +43,14 @@ jobs:
35
43
  restore-keys: |
36
44
  ${{ runner.os }}-yarn-
37
45
 
38
- - name: Use Node.js ${{ matrix.node-version }}
39
- uses: actions/setup-node@v2
46
+ - name: Use Node.js ${{ env.NODE_VERSION }}
47
+ uses: actions/setup-node@v4
40
48
  with:
41
- node-version: ${{ matrix.node-version }}
49
+ node-version: ${{ env.NODE_VERSION }}
42
50
  cache: 'yarn'
43
51
 
44
52
  - run: yarn --pure-lockfile
45
- - run: yarn lint
53
+ - run: yarn ci
46
54
 
47
55
  release:
48
56
  needs: [build]
@@ -51,12 +59,12 @@ jobs:
51
59
  if: ${{github.ref == 'ref/head/main'}} || ${{github.ref == 'ref/head/next'}}
52
60
  steps:
53
61
  - name: Checkout
54
- uses: actions/checkout@v2
62
+ uses: actions/checkout@v4
55
63
  with:
56
64
  fetch-depth: 0
57
65
  persist-credentials: false
58
66
  - name: Cache multiple paths
59
- uses: actions/cache@v2
67
+ uses: actions/cache@v4
60
68
  with:
61
69
  path: |
62
70
  ~/.cache
@@ -67,7 +75,7 @@ jobs:
67
75
  id: yarn-cache-dir-path
68
76
  run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
69
77
 
70
- - uses: actions/cache@v2
78
+ - uses: actions/cache@v4
71
79
  id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
72
80
  with:
73
81
  path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -75,14 +83,14 @@ jobs:
75
83
  restore-keys: |
76
84
  ${{ runner.os }}-yarn-
77
85
 
78
- - name: Use Node.js ${{ matrix.node-version }}
79
- uses: actions/setup-node@v2
86
+ - name: Use Node.js ${{ env.NODE_VERSION }}
87
+ uses: actions/setup-node@v4
80
88
  with:
81
- node-version: ${{ matrix.node-version }}
89
+ node-version: ${{ env.NODE_VERSION }}
82
90
  cache: 'yarn'
83
91
 
84
92
  - name: Install deps
85
- run: yarn --pure-lockfile --offline
93
+ run: yarn --pure-lockfile
86
94
 
87
95
  - name: Release
88
96
  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,24 +28,12 @@
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
  }
37
35
  ]
38
36
  }
39
- ],
40
- [
41
- "@semantic-release/git",
42
- {
43
- "message": "chore(release): ${nextRelease.version} as ${branch.channel} [skip ci]\n\n${nextRelease.notes}",
44
- "assets": [
45
- "package.json",
46
- "CHANGELOG.md"
47
- ]
48
- }
49
37
  ]
50
38
  ]
51
39
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,81 @@
1
1
  # ADR Tools Changelog
2
2
 
3
+ ## [1.0.12](https://github.com/meza/adr-tools/compare/v1.0.11...v1.0.12) (2025-05-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * consistent sorting of files for the toc ([86db508](https://github.com/meza/adr-tools/commit/86db508720acf519403f4e0e4e4aa4cdfa7cb0f3)), closes [#393](https://github.com/meza/adr-tools/issues/393)
9
+
10
+ ## [1.0.11](https://github.com/meza/adr-tools/compare/v1.0.10...v1.0.11) (2025-05-30)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update dependency @types/inquirer to v9.0.8 ([52a8cc2](https://github.com/meza/adr-tools/commit/52a8cc25df8c472d40046d793df46f059f8b35a1))
16
+ * **deps:** update dependency @types/node to v22.10.0 ([b2fde38](https://github.com/meza/adr-tools/commit/b2fde38c1071967028a3d453a7607947342c4be0))
17
+ * **deps:** update dependency @types/node to v22.10.1 ([0578ee3](https://github.com/meza/adr-tools/commit/0578ee392ad19ce580cf6dddf6457141caf7d6b1))
18
+ * **deps:** update dependency @types/node to v22.10.10 ([1ceca57](https://github.com/meza/adr-tools/commit/1ceca579cf9fe41425f551cc9959b45b7ab80752))
19
+ * **deps:** update dependency @types/node to v22.10.2 ([996143d](https://github.com/meza/adr-tools/commit/996143db50e4b1e91600a4bf40f35708c49c5a22))
20
+ * **deps:** update dependency @types/node to v22.10.3 ([2e32e83](https://github.com/meza/adr-tools/commit/2e32e83227890a6d67c7d140930ea930e667d9a1))
21
+ * **deps:** update dependency @types/node to v22.10.4 ([af6a728](https://github.com/meza/adr-tools/commit/af6a7286b644c926d5712e393f2b2d91bae47066))
22
+ * **deps:** update dependency @types/node to v22.10.5 ([5f7805a](https://github.com/meza/adr-tools/commit/5f7805a826aa89218aa3353502d7dd964d34cc37))
23
+ * **deps:** update dependency @types/node to v22.10.6 ([0a07622](https://github.com/meza/adr-tools/commit/0a07622ee374f9dc90de165dfce5beb54c71e0c7))
24
+ * **deps:** update dependency @types/node to v22.10.7 ([ef966f5](https://github.com/meza/adr-tools/commit/ef966f5eb70e3beea93ed62289bc7ddfb9cd2f70))
25
+ * **deps:** update dependency @types/node to v22.12.0 ([4f59ed6](https://github.com/meza/adr-tools/commit/4f59ed660571267e965c49c39b53176292c96426))
26
+ * **deps:** update dependency @types/node to v22.13.0 ([95613d4](https://github.com/meza/adr-tools/commit/95613d45a18692c240e457bb9c44d91cf737fcf3))
27
+ * **deps:** update dependency @types/node to v22.13.1 ([a307a6e](https://github.com/meza/adr-tools/commit/a307a6ef9d071a4b56bdad2c2461fcb8f0c3e364))
28
+ * **deps:** update dependency @types/node to v22.13.10 ([2954e7a](https://github.com/meza/adr-tools/commit/2954e7a88fe93173f047bcad6109540398cd6565))
29
+ * **deps:** update dependency @types/node to v22.13.11 ([087fe1d](https://github.com/meza/adr-tools/commit/087fe1d21c9316249151e86408de125f8c30935f))
30
+ * **deps:** update dependency @types/node to v22.13.13 ([034410e](https://github.com/meza/adr-tools/commit/034410e2b8e44cf45a38dc0dc820786b435d1d08))
31
+ * **deps:** update dependency @types/node to v22.13.14 ([068f963](https://github.com/meza/adr-tools/commit/068f963d472518d819e2d593234ddb4cdd6b0081))
32
+ * **deps:** update dependency @types/node to v22.13.17 ([4c6c807](https://github.com/meza/adr-tools/commit/4c6c80750b35c7db942826af2f7c9faf78870ad6))
33
+ * **deps:** update dependency @types/node to v22.13.2 ([33ef79b](https://github.com/meza/adr-tools/commit/33ef79bb95224ef44ecf85fdb0c76a52a1241845))
34
+ * **deps:** update dependency @types/node to v22.13.5 ([d874c3d](https://github.com/meza/adr-tools/commit/d874c3d07bfce465d0fac5a2172750a5747c1abf))
35
+ * **deps:** update dependency @types/node to v22.13.7 ([94ac128](https://github.com/meza/adr-tools/commit/94ac128d843295a1c606faa22284459bcc35a7ee))
36
+ * **deps:** update dependency @types/node to v22.13.8 ([890cbbe](https://github.com/meza/adr-tools/commit/890cbbec2e127ce65e4b9f8de4a6b4737c34f3b1))
37
+ * **deps:** update dependency @types/node to v22.13.9 ([831d666](https://github.com/meza/adr-tools/commit/831d6661e73344a39ec6c39a5d37d1f0314f7a39))
38
+ * **deps:** update dependency @types/node to v22.14.0 ([ca8c04f](https://github.com/meza/adr-tools/commit/ca8c04f7b85ad5d502a8677679c502ea30089c70))
39
+ * **deps:** update dependency @types/node to v22.14.1 ([21ff31f](https://github.com/meza/adr-tools/commit/21ff31fe34a0051bdd02c6a2f1692dfd343aa15d))
40
+ * **deps:** update dependency @types/node to v22.15.0 ([ab97411](https://github.com/meza/adr-tools/commit/ab974114f23aa3ad73365c2a64cc51f0c033e1a9))
41
+ * **deps:** update dependency @types/node to v22.15.11 ([31e3442](https://github.com/meza/adr-tools/commit/31e3442d753b974d17ccbb004a98a48b999ffe2a))
42
+ * **deps:** update dependency @types/node to v22.15.15 ([683c43e](https://github.com/meza/adr-tools/commit/683c43eec2572d7b8204e402bbf94462b4c3bd75))
43
+ * **deps:** update dependency @types/node to v22.15.17 ([856d584](https://github.com/meza/adr-tools/commit/856d584335807fceaf64db64860facd779f5c06f))
44
+ * **deps:** update dependency @types/node to v22.15.18 ([7031975](https://github.com/meza/adr-tools/commit/70319757781528b2ecb9b0f5baca90705d3e5376))
45
+ * **deps:** update dependency @types/node to v22.15.19 ([fad7a00](https://github.com/meza/adr-tools/commit/fad7a00bd5c08c32b8cb0216796b23fe22158479))
46
+ * **deps:** update dependency @types/node to v22.15.2 ([e5e6498](https://github.com/meza/adr-tools/commit/e5e64981110628b38332c686c80896ec1aa696b1))
47
+ * **deps:** update dependency @types/node to v22.15.21 ([aaacc9a](https://github.com/meza/adr-tools/commit/aaacc9ae1b7a820264b8a3718e3ee014278bb7be))
48
+ * **deps:** update dependency @types/node to v22.15.3 ([3acbf9e](https://github.com/meza/adr-tools/commit/3acbf9e1413226f5e0afa16a4b653e6b679be2bc))
49
+ * **deps:** update dependency @types/node to v22.4.0 ([bd93cb6](https://github.com/meza/adr-tools/commit/bd93cb6e0fc32760760d5f873f47e472307cc9f1))
50
+ * **deps:** update dependency @types/node to v22.4.1 ([3a61cbe](https://github.com/meza/adr-tools/commit/3a61cbea9b86ca6883b8c44e9498d71f636290ee))
51
+ * **deps:** update dependency @types/node to v22.4.2 ([5918b12](https://github.com/meza/adr-tools/commit/5918b129761978c94bee761c785e38b668dd8c65))
52
+ * **deps:** update dependency @types/node to v22.5.0 ([10fc832](https://github.com/meza/adr-tools/commit/10fc832e188fd98045aa7f69872e9b4de71928f6))
53
+ * **deps:** update dependency @types/node to v22.5.1 ([07f9cd0](https://github.com/meza/adr-tools/commit/07f9cd021aac78fab0fa45e4ae238cdf496a9431))
54
+ * **deps:** update dependency @types/node to v22.5.2 ([3427f61](https://github.com/meza/adr-tools/commit/3427f61949b8bf4c2884e0bb696a6f4ffaf5c81e))
55
+ * **deps:** update dependency @types/node to v22.5.3 ([f6096e5](https://github.com/meza/adr-tools/commit/f6096e556ce0a05ec80101436bfe0d0fd98940e2))
56
+ * **deps:** update dependency @types/node to v22.5.4 ([c252908](https://github.com/meza/adr-tools/commit/c25290877bede248f426e6c8fe152823af078f58))
57
+ * **deps:** update dependency @types/node to v22.5.5 ([bde74e8](https://github.com/meza/adr-tools/commit/bde74e8bea7c39b9934ae55280c35e8419c0c6a7))
58
+ * **deps:** update dependency @types/node to v22.7.0 ([1a80aa3](https://github.com/meza/adr-tools/commit/1a80aa388c19f96ad8c779131439e761938e6eea))
59
+ * **deps:** update dependency @types/node to v22.7.4 ([e5694d6](https://github.com/meza/adr-tools/commit/e5694d65951463cf5695f8da0c5542d713d5b4fa))
60
+ * **deps:** update dependency @types/node to v22.7.5 ([e2e303c](https://github.com/meza/adr-tools/commit/e2e303c3b5e4e6b7efa54eb0cdbc11bb4250d91b))
61
+ * **deps:** update dependency @types/node to v22.7.6 ([4afb3c5](https://github.com/meza/adr-tools/commit/4afb3c5c49401db45f12a40ebe32bea6dd503da2))
62
+ * **deps:** update dependency @types/node to v22.7.7 ([9edd88c](https://github.com/meza/adr-tools/commit/9edd88c692b9402d7788eaeed4d727c6f4c799aa))
63
+ * **deps:** update dependency @types/node to v22.7.8 ([887ee9b](https://github.com/meza/adr-tools/commit/887ee9b377fedd883815ccf5322c6f6fc6ac7f7b))
64
+ * **deps:** update dependency @types/node to v22.7.9 ([0e10658](https://github.com/meza/adr-tools/commit/0e10658f806885f1705d0ee46379fceaeece4f27))
65
+ * **deps:** update dependency @types/node to v22.8.1 ([05569ff](https://github.com/meza/adr-tools/commit/05569ffc812d6c184ecf4e0aa5dc5b15ae12a355))
66
+ * **deps:** update dependency @types/node to v22.8.2 ([79cbc2c](https://github.com/meza/adr-tools/commit/79cbc2c5e235509327de98b3e853acac12086c20))
67
+ * **deps:** update dependency @types/node to v22.8.4 ([24c0723](https://github.com/meza/adr-tools/commit/24c07236c3365a681fecbbb8180b596ead84182a))
68
+ * **deps:** update dependency @types/node to v22.8.7 ([c4c4a24](https://github.com/meza/adr-tools/commit/c4c4a24ae19fae595a58bb41b62fc0fcd96c7b55))
69
+ * **deps:** update dependency @types/node to v22.9.0 ([d6916a7](https://github.com/meza/adr-tools/commit/d6916a797af0a0ebdd1ae04777e75e240ac33fc7))
70
+ * **deps:** update dependency chalk to v5.4.0 ([e3a610a](https://github.com/meza/adr-tools/commit/e3a610a298cd2a194b15fe2794d47df30934009a))
71
+ * **deps:** update dependency chalk to v5.4.1 ([66dd075](https://github.com/meza/adr-tools/commit/66dd07599778fef01c047bc48f50a2c559dc39af))
72
+ * **deps:** update dependency core-js to v3.38.1 ([ecc0667](https://github.com/meza/adr-tools/commit/ecc0667c5753275329065911c91f4b7b887f54e7))
73
+ * **deps:** update dependency core-js to v3.39.0 ([cd22b67](https://github.com/meza/adr-tools/commit/cd22b67384275a04f139d99b7717413c2eff3656))
74
+ * **deps:** update dependency core-js to v3.40.0 ([abdf128](https://github.com/meza/adr-tools/commit/abdf1282e590428a248ac30c854f98637745f74b))
75
+ * **deps:** update dependency core-js to v3.41.0 ([178ade5](https://github.com/meza/adr-tools/commit/178ade5f55a3224584a245824d1fe0d3c3c584b9))
76
+ * **deps:** update dependency core-js to v3.42.0 ([b16110b](https://github.com/meza/adr-tools/commit/b16110bb4f77af9c2005bc18cdde78928501de1d))
77
+ * **deps:** update dependency inquirer to v9.3.7 ([586a66b](https://github.com/meza/adr-tools/commit/586a66b26f1e9dab3df32e040f3710c1d1ffc55b))
78
+
3
79
  ## [1.0.10](https://github.com/meza/adr-tools/compare/v1.0.9...v1.0.10) (2022-06-27)
4
80
 
5
81