Skip to content

Commit eac61c4

Browse files
authored
Merge branch 'master' into valadzhov/update-to-react-19
2 parents 32eae01 + 471443d commit eac61c4

File tree

65 files changed

+448
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+448
-219
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [14.5.0](https://github.com/IgniteUI/igniteui-cli/compare/v14.4.4...v14.5.0) (2025-06-05)
2+
3+
🎉 This update includes:
4+
5+
- `igniteui-angular` version [20.0.0](https://github.com/IgniteUI/igniteui-angular/releases/tag/20.0.0).
6+
7+
## What's Changed
8+
* chore: update ng templates with 20 by @lipata in https://github.com/IgniteUI/igniteui-cli/pull/1401
9+
10+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.4.4...v14.5.0
11+
12+
# [14.4.4](https://github.com/IgniteUI/igniteui-cli/compare/v14.4.3...v14.4.4) (2025-05-21)
13+
14+
## What's Changed
15+
* feat: add azure pipelines yaml files for angular, react and wc templates by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1396
16+
17+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.4.3...v14.4.4
18+
119
# [14.4.3](https://github.com/IgniteUI/igniteui-cli/compare/v14.4.2...v14.4.3) (2025-04-25)
220

321
## What's Changed

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igniteui-cli",
3-
"version": "14.4.3",
3+
"version": "14.5.0",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -76,8 +76,8 @@
7676
"all": true
7777
},
7878
"dependencies": {
79-
"@igniteui/angular-templates": "~19.2.1443",
80-
"@igniteui/cli-core": "~14.4.3",
79+
"@igniteui/angular-templates": "~20.0.1450",
80+
"@igniteui/cli-core": "~14.5.0",
8181
"@inquirer/prompts": "^5.4.0",
8282
"@types/yargs": "^17.0.33",
8383
"chalk": "^5.3.0",

packages/cli/templates/angular/ig-ts/projects/empty/files/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "~19.0.0",
14-
"@angular/common": "~19.0.0",
15-
"@angular/compiler": "~19.0.0",
16-
"@angular/core": "~19.0.0",
17-
"@angular/forms": "~19.0.0",
18-
"@angular/platform-browser": "~19.0.0",
19-
"@angular/platform-browser-dynamic": "~19.0.0",
20-
"@angular/router": "~19.0.0",
13+
"@angular/animations": "~20.0.0",
14+
"@angular/common": "~20.0.0",
15+
"@angular/compiler": "~20.0.0",
16+
"@angular/core": "~20.0.0",
17+
"@angular/forms": "~20.0.0",
18+
"@angular/platform-browser": "~20.0.0",
19+
"@angular/platform-browser-dynamic": "~20.0.0",
20+
"@angular/router": "~20.0.0",
2121
"jquery": ">=1.9.1",
2222
"jquery-ui": ">=1.10.5",
2323
"igniteui-angular-wrappers": "~17.0.0",
@@ -27,9 +27,9 @@
2727
"zone.js": "~0.15.0"
2828
},
2929
"devDependencies": {
30-
"@angular-devkit/build-angular": "~19.0.0",
31-
"@angular/cli": "~19.0.0",
32-
"@angular/compiler-cli": "~19.0.0",
30+
"@angular-devkit/build-angular": "~20.0.0",
31+
"@angular/cli": "~20.0.0",
32+
"@angular/compiler-cli": "~20.0.0",
3333
"@types/jasmine": "~5.1.0",
3434
"@types/node": "^18.16.0",
3535
"igniteui-cli": "^$(cliVersion)",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Azure CI
2+
3+
trigger:
4+
branches:
5+
include: [ $(yamlDefaultBranch) ]
6+
7+
pr:
8+
branches:
9+
include: [ $(yamlDefaultBranch) ]
10+
11+
pool:
12+
vmImage: 'ubuntu-latest'
13+
14+
steps:
15+
- script: npm i # replace with 'npm ci' after committing lock file from first install
16+
displayName: 'Install dependencies'
17+
- script: npm run lint
18+
displayName: 'Run linter'
19+
continueOnError: true
20+
- script: npm run build
21+
displayName: 'Build the project'
22+
- script: npm run test
23+
displayName: 'Run tests'

packages/cli/templates/webcomponents/igc-ts/accordion/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcAccordionComponent', () => {

packages/cli/templates/webcomponents/igc-ts/avatar/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcAvatarComponent', () => {

packages/cli/templates/webcomponents/igc-ts/badge/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcBadgeComponent', () => {

packages/cli/templates/webcomponents/igc-ts/banner/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcBannerComponent', () => {

packages/cli/templates/webcomponents/igc-ts/button-group/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcButtonGroupComponent', () => {

packages/cli/templates/webcomponents/igc-ts/button/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcButtonComponent', () => {

0 commit comments

Comments
 (0)