Skip to content
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

Feat/update #11

Merged
merged 2 commits into from
Jun 1, 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
6 changes: 3 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
## Describe your changes
## ✍️ Describe your changes

_None_

## Issue ticket number and link
## 🔗 Issue ticket number and link

_None_

## Checklist before requesting a review
## Checklist before requesting a review

- [ ] I have performed a self-review of my code.
- [ ] If it is a core feature, I have added thorough tests.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'beta') == false
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
registry-url: https://npm.pkg.github.com/
scope: '@celtian'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: 🗜️ Setup node version
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
registry-url: 'https://registry.npmjs.org'

- name: 🛠️ Install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

This package contains Architect builders used to build and test Angular applications and libraries.

> ✓ _Angular 17 compatible_
> ✓ _Angular 18 compatible_

## Builders
## 🚀 Builders

| Name | Description |
| ---------------------------------------------------- | --------------------------------- |
Expand All @@ -25,14 +25,14 @@ This package contains Architect builders used to build and test Angular applicat

_More builders can be added in the future._

## Compatibility
## 🔧 Compatibility

| Angular | ngx-app-version | Install |
| ------- | --------------- | ---------------------------- |
| >= 17 | 1.x | `yarn add ngx-app-version` |
| >= 16 | 0.x | `yarn add ngx-app-version@0` |

## License
## 🪪 License

Copyright © 2022 - 2024 [Dominik Hladik](https://github.com/Celtian)

Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"publish:npmjs": "yarn build && npm publish --folder dist",
"script:gpr-setup": "yarn tsx scripts/gpr-setup.ts",
"script:prepare-dist": "yarn tsx scripts/prepare-dist.ts",
"prepare": "husky install",
"prepare": "husky",
"version": "auto-changelog -p && git add CHANGELOG.md",
"postversion": "git push && git push --follow-tags",
"publish:beta": "yarn && yarn build && npm publish --folder dist --tag beta",
Expand All @@ -28,27 +28,27 @@
"fix-vulnerabilities": "npx yarn-audit-fix && npx browserslist --update-db"
},
"dependencies": {
"@angular-devkit/architect": "^0.1701.3",
"@angular-devkit/core": "^17.1.3",
"@angular-devkit/architect": "^0.1800.2",
"@angular-devkit/core": "^18.0.2",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"auto-changelog": "^2.4.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
"rimraf": "^5.0.7",
"tsc-watch": "^6.2.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"homepage": "https://github.com/Celtian/ngx-devkit-builders#readme",
"repository": {
Expand All @@ -65,7 +65,7 @@
"url": "https://github.com/Celtian/ngx-devkit-builders/issues"
},
"engines": {
"node": ">=20 <22",
"node": ">=22 <24",
"npm": "please-use-yarn"
},
"publishConfig": {
Expand Down
Loading