Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2124b4c
added copilot instructions
shlomoa Feb 9, 2026
0df4960
build: restore dependencies (npm install)
shlomoa Feb 9, 2026
47e87ed
build(deps): update Angular Core and CLI to v20
shlomoa Feb 9, 2026
8280721
build(deps): update angular-eslint packages to v20
shlomoa Feb 9, 2026
d2f904a
build(deps): update ngx-bootstrap to v20
shlomoa Feb 9, 2026
9d52b5c
build: update to Angular 20 and fix build scripts
shlomoa Feb 9, 2026
7d9bd0d
build: update to Angular 21
shlomoa Feb 9, 2026
91fdd3a
build: finalize Angular 21 update
shlomoa Feb 9, 2026
6984d24
docs: update CHANGELOG for Angular 21 update
shlomoa Feb 9, 2026
06022b1
ci: update node versions for Angular 21
shlomoa Feb 9, 2026
e5f1d20
Merge pull request #1 from shlomoa/update_to_angular_21
shlomoa Feb 9, 2026
05f9ed2
build: update supported node versions to 24
shlomoa Feb 9, 2026
2544c03
build: additional updates (to be stashed in rebase)
shlomoa Feb 11, 2026
54048ac
Merge branch 'main' into update_to_angular_21
SanderElias Feb 16, 2026
1c428b2
Merge branch 'main' into update_to_angular_21
SanderElias Feb 17, 2026
01df0d3
Merge branch 'main' into update_to_angular_21
SanderElias Feb 20, 2026
f945a47
fix(packaging): fixed issues flaged by github AI agent
shlomoa Feb 22, 2026
a205db9
Merge branch 'update_to_angular_21' of https://github.com/shlomoa/ang…
shlomoa Feb 22, 2026
3910106
fix(build): fixed all AI requirements
shlomoa Feb 22, 2026
99d4cb6
fix: enabled cleaner install
shlomoa Feb 22, 2026
bc13682
fix: updated several package versions
shlomoa Feb 22, 2026
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
80 changes: 80 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Copilot Instructions — angular-split

Quick-start operating manual for this repo.
Rules are repo specific and override any general rules you may have been trained on.

- applicable to git branch update_to_angular_21
- This document should be constantly revised and updated.

There are two main sections in this document representing two strategies for working with github copilot:

- Interactive via chat mode of operation rules
- Automatic (code generation) mode of operation rules

# expectations from github copilot

Always ask user for guidance.

- Provide best in class response:
- accurate, correct, complete, concise, clear, and relevant.
- Provide best in class code:
- correct, clean, efficient, and well documented.
- Learn cutting edge techniques - ask user for guidance.
- Use best known methods and practices -

# purpose of this activity

- Update the codebase to Angular 21.
- Update all dependencies to their latest versions as possible.

# Interactive (chat) mode of operation rules

## KISS rules (general)

KISS stands for "Keep It Stupid Simple". This is a design principle that states that most systems work best if they are kept simple.
Simple is:

- minimal in code and features.
- using existing reusable components or create reusable components when needed.
- structured in a way that is:
- easy to navigate and maintain.
- built correctly the first time - correct by construction.
- always verifiable
Stupid is:
- not over-engineered.
- not over-complicated.
- not over-designed.
- every dummy even github copilot could understand it.

## Single sources of truth

Respect the single source of truth principle. definitions are made once in a single place, further use of this definition is done by referencing (for documenting) or importing (in code).

## Collaboration rules (repo‑specific)

- read user instructions carefully.
- fix typos in them.
- clarify any:
- ambiguities.
- missing information.
- elaborate on any:
- vague instructions.
- incomplete instructions.
- discuss options with the user, if there are any.
- Develop a detailed plan with the user, that includes:
- tasks, sub tasks
- validation steps in all stages of the process.
- enumerated action plan.

## Mode of operation

- Stop if context is unclear.
- Start by gaining context - ask user for help.
- Wait for user instructions.
- Execute plans for actions.
- Validate results with the user.
- Document everything.

# Automatic (code generation) mode of operation rules

None yet.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ testem.log
# System Files
.DS_Store
Thumbs.db
.wireit
.wireit
PLAN.md
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 21.0.0 (2026-02-09)

- feat: update to angular 21
- feat: update ngx-bootstrap to v21
- refactor: migrate to inject() function

## 19.0.0 (2025-02-01)

- feat: support node v22 (#470) ([52ee663](https://github.com/angular-split/angular-split/commit/52ee663)), closes [#470](https://github.com/angular-split/angular-split/issues/470)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
no Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down
32 changes: 29 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": {
"base": "dist/angular-split-app"
Expand Down Expand Up @@ -46,7 +46,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"options": {
"buildTarget": "angular-split-app:build"
},
Expand Down Expand Up @@ -79,7 +79,7 @@
"prefix": "as",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"builder": "@angular/build:ng-packagr",
"options": {
"tsConfig": "projects/angular-split/tsconfig.lib.json",
"project": "projects/angular-split/ng-package.json"
Expand All @@ -96,5 +96,31 @@
},
"cli": {
"analytics": "4af3d67b-15ea-40d9-8c3a-998fb02958b9"
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Loading