Skip to content

Commit 6102060

Browse files
Resolve merge conflicts and finalize merge
2 parents 0dfb532 + fcd0131 commit 6102060

Some content is hidden

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

48 files changed

+22886
-61789
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* text=auto eol=lf
2+
13
VB/* linguist-vendored
24
scripts linguist-vendored
35
*.css linguist-detectable=false

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ jobs:
7373
uses: actions/checkout@v3
7474

7575
- name: Use Node.js
76-
uses: actions/setup-node@v3
76+
uses: actions/setup-node@v4
77+
with:
78+
node-version: '20'
7779

7880
- name: Restore npm cache
7981
uses: actions/cache@v3

.github/workflows/typescript.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
uses: actions/checkout@v3
4545

4646
- name: Use Node.js
47-
uses: actions/setup-node@v3
47+
uses: actions/setup-node@v4
48+
with:
49+
node-version: '20'
4850

4951
- name: Restore npm cache
5052
uses: actions/cache@v3

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,3 +303,8 @@ TesterMetadata.xml
303303

304304
# Backup files
305305
*.bak
306+
307+
*/wwwroot/*
308+
309+
!*/wwwroot/css/Site.css
310+
*.DS_Store

Angular/README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
1-
# AngularTest
1+
# Angular DevExtreme Example
22

3-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.3.
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.0.4 and includes DevExtreme Angular components version 24.2.3.
44

55
## Development server
66

7-
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
7+
Run `npm start` or `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
88

99
## Code scaffolding
1010

1111
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
1212

1313
## Build
1414

15-
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
15+
Run `npm run build` or `ng build` to build the project. The build artifacts will be stored in the `dist/Angular/` directory.
1616

1717
## Running unit tests
1818

19-
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
19+
Run `npm test` or `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Linting
22+
23+
Run `npm run lint` to execute linting checks for TypeScript, CSS/SCSS, and HTML formatting.
24+
- `npm run lint-ts` - ESLint for TypeScript files
25+
- `npm run lint-css` - Stylelint for CSS/SCSS files
26+
- `npm run lint-html` - Prettier for HTML formatting
2027

2128
## Running end-to-end tests
2229

2330
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
2431

2532
## Further help
2633

27-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
28-
To get more help on DevExtreme submit an issue on [GitHub](https://github.com/DevExpress/devextreme/issues) or [Support Center](https://www.devexpress.com/Support/Center/Question/Create)
34+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
35+
To get more help on DevExtreme submit an issue on [GitHub](https://github.com/DevExpress/devextreme/issues) or [Support Center](https://supportcenter.devexpress.com/ticket/create)

Angular/angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@
6767
"builder": "@angular-devkit/build-angular:dev-server",
6868
"configurations": {
6969
"production": {
70-
"browserTarget": "Angular:build:production"
70+
"buildTarget": "Angular:build:production"
7171
},
7272
"development": {
73-
"browserTarget": "Angular:build:development"
73+
"buildTarget": "Angular:build:development"
7474
}
7575
},
7676
"defaultConfiguration": "development"
7777
},
7878
"extract-i18n": {
7979
"builder": "@angular-devkit/build-angular:extract-i18n",
8080
"options": {
81-
"browserTarget": "Angular:build"
81+
"buildTarget": "Angular:build"
8282
}
8383
},
8484
"test": {

Angular/ngcc.config.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
module.exports = {
2-
packages: {
3-
'devextreme-angular': {
4-
ignorableDeepImportMatchers: [
5-
/devextreme\//,
6-
/jszip\//
7-
]
8-
},
9-
'devextreme' : {
10-
ignorableDeepImportMatchers: [
11-
/devextreme-quill\//
12-
]
13-
}
14-
}
15-
};
1+
module.exports = {
2+
packages: {
3+
'devextreme-angular': {
4+
ignorableDeepImportMatchers: [
5+
/devextreme\//,
6+
/jszip\//
7+
]
8+
},
9+
'devextreme' : {
10+
ignorableDeepImportMatchers: [
11+
/devextreme-quill\//
12+
]
13+
}
14+
}
15+
};

0 commit comments

Comments
 (0)