Skip to content

Commit

Permalink
chore: Update to 23.2 (#205)
Browse files Browse the repository at this point in the history
* commit the new 23.2 version

* stable version

* package name

* recover Readme and metadata

* remove new page
  • Loading branch information
VasilyStrelyaev authored Dec 21, 2023
1 parent ab411a6 commit 6f8e156
Show file tree
Hide file tree
Showing 46 changed files with 16,649 additions and 23,488 deletions.
23 changes: 10 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,45 +1,42 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
# Compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
# Node
/node_modules

# profiling files
chrome-profiler-events*.json
npm-debug.log
yarn-error.log

# IDEs and editors
/.idea
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
# System files
.DS_Store
Thumbs.db
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ For more information about the DevExtreme Angular Template and how to customize
**DevExtreme Angular Template is released as a MIT-licensed (free and open-source) add-on to DevExtreme.**

- [DevExtreme License](https://js.devexpress.com/Licensing/)
- [Free trial](http://js.devexpress.com/Buy/)
- [Free trial](http://js.devexpress.com/Buy/)
40 changes: 21 additions & 19 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"DevExtreme-App": {
"DevExtreme-app": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
Expand All @@ -25,6 +25,9 @@
"@schematics/angular:pipe": {
"skipTests": true
},
"@schematics/angular:resolver": {
"skipTests": true
},
"@schematics/angular:service": {
"skipTests": true
}
Expand All @@ -36,10 +39,12 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/DevExtreme-App",
"outputPath": "dist/DevExtreme-app",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -61,18 +66,12 @@
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "6mb"
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
Expand All @@ -92,27 +91,28 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "DevExtreme-App:build:production"
"browserTarget": "DevExtreme-app:build:production"
},
"development": {
"browserTarget": "DevExtreme-App:build:development"
"browserTarget": "DevExtreme-app:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "DevExtreme-App:build"
"browserTarget": "DevExtreme-app:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
Expand All @@ -127,5 +127,7 @@
}
}
},
"defaultProject": "DevExtreme-App"
"cli": {
"analytics": false
}
}
Loading

0 comments on commit 6f8e156

Please sign in to comment.