Skip to content

Commit de917bd

Browse files
author
Daniil Ryazanov
authored
build: Merge pull request #1049 from keindev/dev
build: release v8.0.0
2 parents e862d0e + c3003b5 commit de917bd

File tree

9 files changed

+6543
-9011
lines changed

9 files changed

+6543
-9011
lines changed

.ghinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tasktree-cli",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "Simple terminal task tree - helps you keep track of your tasks in a tree structure.",
55
"keywords": [
66
"ascii",

.github/workflows/auto-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v1.1.1
15+
uses: dependabot/fetch-metadata@v1
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Enable auto-merge for Dependabot PRs
19-
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
19+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
2020
run: gh pr merge --auto --merge "$PR_URL"
2121
env:
2222
PR_URL: ${{github.event.pull_request.html_url}}

.gitignore

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# !ignorefile-merge block-open @tagproject/ts-package-shared-config
2+
# ---------------------------------------------------------------
3+
# This block generated automatically
4+
# @see https://www.npmjs.com/package/ignorefile-merge
5+
# ---------------------------------------------------------------
6+
17
*.log
28
*.pid
39
*.pid.lock
@@ -6,22 +12,43 @@
612
.env
713
.eslintrc
814
.yarn-integrity
9-
/.editorconfig
1015
/.eslintcache
1116
/.eslintignore
12-
/.figma.yml
1317
/.husky/
14-
/.prettierignore
15-
/.prettierrc
16-
/.vscode/
1718
/jest.config.js
18-
/src/**/tsconfig.json
19-
/tsconfig.json
2019
coverage
2120
lib
2221
logs
2322
node_modules/
2423
pids
24+
/tsconfig.json
25+
/src/**/tsconfig.json
2526
tsconfig.tsbuildinfo
2627
yarn-debug.log*
27-
yarn-error.log*
28+
yarn-error.log*
29+
30+
# !ignorefile-merge block-close @tagproject/ts-package-shared-config
31+
32+
# !ignorefile-merge block-open @tagproject/docs-shared-config
33+
# ---------------------------------------------------------------
34+
# This block generated automatically
35+
# @see https://www.npmjs.com/package/ignorefile-merge
36+
# ---------------------------------------------------------------
37+
38+
# .env
39+
# node_modules/
40+
41+
# !ignorefile-merge block-close @tagproject/docs-shared-config
42+
43+
# !ignorefile-merge block-open @tagproject/vscode-shared-config
44+
# ---------------------------------------------------------------
45+
# This block generated automatically
46+
# @see https://www.npmjs.com/package/ignorefile-merge
47+
# ---------------------------------------------------------------
48+
49+
/.editorconfig
50+
/.prettierignore
51+
/.prettierrc
52+
/.vscode/
53+
54+
# !ignorefile-merge block-close @tagproject/vscode-shared-config

.npmignore

Lines changed: 38 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1+
# !ignorefile-merge block-open @tagproject/ts-package-shared-config
2+
# ---------------------------------------------------------------
3+
# This block generated automatically
4+
# @see https://www.npmjs.com/package/ignorefile-merge
5+
# ---------------------------------------------------------------
6+
17
**/__benchmark__/**
28
**/__mocks__/**
39
**/__tests__/**
410
.changelogrc.yml
511
.config
6-
.editorconfig
712
.env
813
.eslintignore
914
.eslintrc
10-
.figma.yml
1115
.ghinfo
1216
.gitattributes
1317
.github
1418
.husky
15-
.prettierignore
16-
.prettierrc
17-
.vscode
1819
CODE_OF_CONDUCT.md
19-
SECURITY.md
2020
codecov.yml
2121
codegen.yml
2222
coverage/
@@ -27,4 +27,35 @@ media/
2727
node_modules/
2828
src/
2929
tsconfig.json
30-
typings/
30+
typings/
31+
32+
# !ignorefile-merge block-close @tagproject/ts-package-shared-config
33+
34+
# !ignorefile-merge block-open @tagproject/docs-shared-config
35+
# ---------------------------------------------------------------
36+
# This block generated automatically
37+
# @see https://www.npmjs.com/package/ignorefile-merge
38+
# ---------------------------------------------------------------
39+
40+
# .env
41+
# CODE_OF_CONDUCT.md
42+
SECURITY.md
43+
# docs/
44+
# example/
45+
# media/
46+
# node_modules/
47+
48+
# !ignorefile-merge block-close @tagproject/docs-shared-config
49+
50+
# !ignorefile-merge block-open @tagproject/vscode-shared-config
51+
# ---------------------------------------------------------------
52+
# This block generated automatically
53+
# @see https://www.npmjs.com/package/ignorefile-merge
54+
# ---------------------------------------------------------------
55+
56+
.editorconfig
57+
.prettierignore
58+
.prettierrc
59+
.vscode
60+
61+
# !ignorefile-merge block-close @tagproject/vscode-shared-config

CHANGELOG.md

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,57 @@
1-
# BREAKING CHANGES
1+
# Important Changes
22

3-
- Add `pause` method for external output [`29d054d`](https://github.com/keindev/tasktree/commit/29d054dfded962bb94c18ef5e4e3d7ad2b80ad54)
3+
## Engines
44

5-
# Important Changes
5+
- Changed **node** from `^14.13.1 || >=16.0.0` to `>=16.0.0`
66

77
## Dependencies
88

99
<details>
1010
<summary>Dependencies</summary>
1111

12-
- Changed **[stdout-update](https://www.npmjs.com/package/stdout-update)** from `^3.0.6` to `^3.1.1`
13-
- Bumped **[figures](https://www.npmjs.com/package/figures)** from `^4.0.1` to `^5.0.0`
12+
- Bumped **[chalk-template](https://www.npmjs.com/package/chalk-template)** from `^0.4.0` to `^1.1.0`
13+
- Bumped **[stdout-update](https://www.npmjs.com/package/stdout-update)** from `^3.1.1` to `^4.0.0`
1414

1515
</details>
1616

1717
<details>
1818
<summary>Dev Dependencies</summary>
1919

20-
- Added **[enquirer](https://www.npmjs.com/package/enquirer)** with `^2.3.6`
21-
- Changed **[@tagproject/docs-shared-config](https://www.npmjs.com/package/@tagproject/docs-shared-config)** from `^1.0.4` to `^1.1.2`
22-
- Changed **[@tagproject/vscode-shared-config](https://www.npmjs.com/package/@tagproject/vscode-shared-config)** from `^2.0.0` to `^2.0.5`
23-
- Changed **[@typescript-eslint/eslint-plugin](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin)** from `^5.20.0` to `^5.44.0`
24-
- Changed **[@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser)** from `^5.20.0` to `^5.44.0`
25-
- Changed **[changelog-guru](https://www.npmjs.com/package/changelog-guru)** from `^4.0.5` to `^4.0.9`
26-
- Changed **[eslint](https://www.npmjs.com/package/eslint)** from `^8.13.0` to `^8.28.0`
27-
- Changed **[eslint-plugin-promise](https://www.npmjs.com/package/eslint-plugin-promise)** from `^6.0.0` to `^6.1.1`
28-
- Changed **[ghinfo](https://www.npmjs.com/package/ghinfo)** from `^3.0.5` to `^3.0.8`
29-
- Changed **[prettier](https://www.npmjs.com/package/prettier)** from `^2.6.2` to `^2.8.0`
30-
- Changed **[ts-node](https://www.npmjs.com/package/ts-node)** from `^10.7.0` to `^10.9.1`
31-
- Changed **[typescript](https://www.npmjs.com/package/typescript)** from `^4.6.3` to `^4.9.3`
32-
- Bumped **[@tagproject/ts-package-shared-config](https://www.npmjs.com/package/@tagproject/ts-package-shared-config)** from `^9.0.7` to `^10.0.2`
33-
- Bumped **[@types/jest](https://www.npmjs.com/package/@types/jest)** from `^27.4.1` to `^29.2.3`
34-
- Bumped **[@types/node](https://www.npmjs.com/package/@types/node)** from `^17.0.25` to `^18.11.9`
35-
- Bumped **[cspell](https://www.npmjs.com/package/cspell)** from `^5.19.7` to `^6.15.0`
36-
- Bumped **[eslint-plugin-jest](https://www.npmjs.com/package/eslint-plugin-jest)** from `^26.1.4` to `^27.1.6`
37-
- Bumped **[husky](https://www.npmjs.com/package/husky)** from `^7.0.4` to `^8.0.2`
38-
- Bumped **[jest](https://www.npmjs.com/package/jest)** from `^27.5.1` to `^29.3.1`
39-
- Bumped **[ts-jest](https://www.npmjs.com/package/ts-jest)** from `^27.1.4` to `^29.0.3`
40-
- Removed **[figma-portal](https://www.npmjs.com/package/figma-portal)**, with `^1.0.1`
20+
- Changed **[enquirer](https://www.npmjs.com/package/enquirer)** from `^2.3.6` to `^2.4.1`
21+
- Changed **[strip-ansi](https://www.npmjs.com/package/strip-ansi)** from `^7.0.1` to `^7.1.0`
22+
- Bumped **[@tagproject/ts-package-shared-config](https://www.npmjs.com/package/@tagproject/ts-package-shared-config)** from `^10.0.2` to `^11.0.1`
23+
- Removed **[@tagproject/docs-shared-config](https://www.npmjs.com/package/@tagproject/docs-shared-config)**, with `^1.1.2`
24+
- Removed **[@tagproject/vscode-shared-config](https://www.npmjs.com/package/@tagproject/vscode-shared-config)**, with `^2.0.5`
25+
- Removed **[@types/jest](https://www.npmjs.com/package/@types/jest)**, with `^29.2.3`
26+
- Removed **[@types/node](https://www.npmjs.com/package/@types/node)**, with `^18.11.9`
27+
- Removed **[@typescript-eslint/eslint-plugin](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin)**, with `^5.44.0`
28+
- Removed **[@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser)**, with `^5.44.0`
29+
- Removed **[changelog-guru](https://www.npmjs.com/package/changelog-guru)**, with `^4.0.9`
30+
- Removed **[cspell](https://www.npmjs.com/package/cspell)**, with `^6.15.0`
31+
- Removed **[eslint](https://www.npmjs.com/package/eslint)**, with `^8.28.0`
32+
- Removed **[eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier)**, with `^8.5.0`
33+
- Removed **[eslint-plugin-import](https://www.npmjs.com/package/eslint-plugin-import)**, with `^2.26.0`
34+
- Removed **[eslint-plugin-jest](https://www.npmjs.com/package/eslint-plugin-jest)**, with `^27.1.6`
35+
- Removed **[eslint-plugin-node](https://www.npmjs.com/package/eslint-plugin-node)**, with `^11.1.0`
36+
- Removed **[eslint-plugin-optimize-regex](https://www.npmjs.com/package/eslint-plugin-optimize-regex)**, with `^1.2.1`
37+
- Removed **[eslint-plugin-promise](https://www.npmjs.com/package/eslint-plugin-promise)**, with `^6.1.1`
38+
- Removed **[ghinfo](https://www.npmjs.com/package/ghinfo)**, with `^3.0.8`
39+
- Removed **[husky](https://www.npmjs.com/package/husky)**, with `^8.0.2`
40+
- Removed **[jest](https://www.npmjs.com/package/jest)**, with `^29.3.1`
41+
- Removed **[npm-run-all](https://www.npmjs.com/package/npm-run-all)**, with `^4.1.5`
42+
- Removed **[prettier](https://www.npmjs.com/package/prettier)**, with `^2.8.0`
43+
- Removed **[rimraf](https://www.npmjs.com/package/rimraf)**, with `^3.0.2`
44+
- Removed **[ts-jest](https://www.npmjs.com/package/ts-jest)**, with `^29.0.3`
45+
- Removed **[typescript](https://www.npmjs.com/package/typescript)**, with `^4.9.3`
4146

4247
</details>
4348

4449
# :memo: Internal changes
4550

46-
- Rebuild configs [`55660a8`](https://github.com/keindev/tasktree/commit/55660a88b41c8f08ab58387fffcb4e60185fa187)
47-
- Fix example, remove generate:media script [`971e0a0`](https://github.com/keindev/tasktree/commit/971e0a08c60ef2dae9fa3c02c083b6e33e2c9b67)
48-
- Remove banner [`cf0a39e`](https://github.com/keindev/tasktree/commit/cf0a39e834d382ecf728c672d997ce651aa07456)
49-
- Remove vscode/launch node port [`e74c9fa`](https://github.com/keindev/tasktree/commit/e74c9fa75c55ea72a3c6f430888d114b775cb307)
50-
- Create example with external output [`af34490`](https://github.com/keindev/tasktree/commit/af344904ad0978b1225d32158c8236f87c6c4d90)
51+
- Fix lint errors [`109087f`](https://github.com/keindev/tasktree/commit/109087f61294ca587955674a510591a847709bfc)
5152

5253
---
5354

5455
# Contributors
5556

56-
[![@keindev](https://avatars.githubusercontent.com/u/4527292?v=4&s=40)](https://github.com/keindev)
57+
[![@github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4&s=40)](https://github.com/github-actions%5Bbot%5D) [![@keindev](https://avatars.githubusercontent.com/u/4527292?v=4&s=40)](https://github.com/keindev)

0 commit comments

Comments
 (0)