Skip to content

v1.5.2 #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: 🐞 Bug report
description: Create a report to help us improve
labels: [bug]
assignees:
- sashapop10
body:
- type: input
attributes:
Expand Down
7 changes: 5 additions & 2 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: 💡 Feature request
description: Suggest an idea for this project
labels: [functionality]
labels: ['feature request']
assignees:
- sashapop10
body:
- type: textarea
attributes:
Expand All @@ -15,7 +17,8 @@ body:
- type: textarea
attributes:
label: Alternatives
description: A clear and concise description of any alternative solutions or features you've considered.
description:
A clear and concise description of any alternative solutions or features you've considered.
- type: textarea
attributes:
label: Additional context
Expand Down
9 changes: 8 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,19 @@ Check following steps to help us land your changes:
- Change [ ] to [x] for completed items.
-->

## Changes - 202x-xx-xx
## What's Changed on 202x-xx-xx

- Added ...
- Updated ...
- Deleted ...

<!-- **Full Changelog:** (vX.X.X...vX.X.X)[CHANGES] -->

**Full Changelog:** [latest][CHANGELOG]

[CHANGES]: https://github.com/astrohelm/node-workspace/compare/vX.X.X...vX.X.X
[CHANGELOG]: https://github.com/astrohelm/node-workspace/blob/main/CHANGELOG.md

- [ ] tests and linter show no problems (`npm t`)
- [ ] tests are added/updated for bug fixes and new features
- [ ] code is properly formatted (`npm run fmt`)
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased][unreleased]

# [1.5.2][] - 2024-07-03

- Packages update
- Templates update

# [1.5.1][] - 2024-05-05

- Packages update
Expand Down Expand Up @@ -52,6 +57,7 @@
- Repository created

[unreleased]: https://github.com/astrohelm/node-workspace/compare/v1.5.0...HEAD
[1.5.2]: https://github.com/astrohelm/node-workspace/compare/v1.5.0...v1.5.2
[1.5.1]: https://github.com/astrohelm/node-workspace/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/astrohelm/node-workspace/compare/v1.4.0...v1.5.0
[1.4.0]: https://github.com/astrohelm/node-workspace/compare/v1.3.0...v1.4.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Update package json:
"types": "types/index.d.ts",
"packageManager": "npm@9.6.4",
"readmeFilename": "README.md",
"engines": { "node": "18 || 19 || 20" },
"engines": { "node": ">= 18" },
"browser": {},
"files": ["/dist", "/lib", "/types"],

Expand Down
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"license": "MIT",
"version": "1.4.0",
"version": "1.5.2",
"type": "commonjs",
"name": "astrohelm-workspace",
"homepage": "https://astrohelm.ru",
Expand Down Expand Up @@ -43,13 +43,13 @@
},

"devDependencies": {
"@types/node": "^20.12.8",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-config-astrohelm": "^1.4.0",
"@types/node": "^20.14.9",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.1",
"eslint-config-astrohelm": "^1.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
"prettier": "^3.3.2",
"typescript": "^5.5.3"
}
}
Loading