Skip to content

Workspace v1.6.0 #7

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
Sep 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
14 changes: 0 additions & 14 deletions .eslintrc.json

This file was deleted.

11 changes: 2 additions & 9 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Thank you for your pull request.
Check following steps to help us land your changes:
- Fill current date
- Create list with pull request changes / or describe purpose of pull request
- Change [ ] to [x] for completed items.
-->

## What's Changed on 202x-xx-xx
Expand All @@ -14,13 +13,7 @@ Check following steps to help us land your changes:

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

**Full Changelog:** [latest][CHANGELOG]
**Full Changelog:** [Latest update][FULL-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`)
- [ ] description of changes is added in CHANGELOG.md
- [ ] update .d.ts typings
[FULL-CHANGELOG]: https://github.com/astrohelm/node-workspace/blob/main/CHANGELOG.md
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased][unreleased]

# [1.6.0][] - 2024-09-03

- Update eslint to 9.x
- Remove default Makefile
- Packages update

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

- Packages update
Expand Down Expand Up @@ -56,7 +62,8 @@
- Stable release version
- Repository created

[unreleased]: https://github.com/astrohelm/node-workspace/compare/v1.5.0...HEAD
[unreleased]: https://github.com/astrohelm/node-workspace/compare/v1.6.0...HEAD
[1.6.0]: https://github.com/astrohelm/node-workspace/compare/v1.5.0...v1.6.0
[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
Expand Down
78 changes: 0 additions & 78 deletions Makefile

This file was deleted.

7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ You can use this repository as template - otherwise install it manually:
git clone https://github.com/astrohelm/node-workspace
rm -rf ./path/to/workspace/.git ./path/to/workspace/package-lock.json
cd ./path/to/workspace/
# Update and install dependencies
ncu -u
npm i
# Update node.js (optional)
nvm install latest
nvm use latest
# Update and install dependencies
ncu -u
npm i
```

### Second step: Package personalization
Expand Down Expand Up @@ -62,7 +62,6 @@ Update package json:
"eslint": "^8.40.0",
"eslint-config-astrohelm": "^1.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.2"
Expand Down
3 changes: 3 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

module.exports = require('eslint-config-astrohelm');
Loading
Loading