Skip to content

Commit d1c7e22

Browse files
authored
feat: updated angular dependencies to 18.2.6, updated stackblitz configs (#322)
1 parent abf8ad7 commit d1c7e22

File tree

12 files changed

+327
-330
lines changed

12 files changed

+327
-330
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ insert_final_newline = true
1111
trim_trailing_whitespace = true
1212

1313
[*.md]
14+
insert_final_newline = false
1415
trim_trailing_whitespace = false
1516
max_line_length = off
1617

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
21
root = true
32

43
[*]
54
charset = utf-8
65
indent_style = space
76
indent_size = 4
8-
# Unix-style newlines with a newline ending every file
7+
max_line_length = 120
98
end_of_line = lf
109
insert_final_newline = true
1110
trim_trailing_whitespace = true
1211

1312
[*.md]
1413
insert_final_newline = false
1514
trim_trailing_whitespace = false
15+
max_line_length = off

apps/docs/src/assets/stackblitz/.gitignore

Lines changed: 32 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,39 @@
1-
# firebase artifacts
2-
.firebase
1+
# compiled output
2+
/dist
3+
/tmp
4+
/out-tsc
35

4-
package-lock.json
6+
# dependencies
7+
/node_modules
58

6-
.env
7-
8-
# folders
9-
node_modules/
10-
coverage/
11-
dist/
12-
tmp/
13-
temp/
14-
15-
# Example module file will be auto-generated.
16-
/packages/docs-examples/example-module.ts
17-
18-
# IDEs
9+
# IDEs and editors
1910
/.idea
20-
/.vscode
21-
/.awcache
11+
.project
12+
.classpath
13+
.c9/
14+
*.launch
15+
.settings/
16+
*.sublime-workspace
17+
18+
# IDE - VSCode
19+
.vscode/*
20+
!.vscode/settings.json
21+
!.vscode/tasks.json
22+
!.vscode/launch.json
23+
!.vscode/extensions.json
24+
.history/*
2225

2326
# misc
27+
/.angular/cache
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
2438
.DS_Store
2539
Thumbs.db
26-
npm-debug.log
27-
*~
28-
*.sw[mnpcod]
29-
*.log
30-
*.tmp
31-
*.tmp.*

apps/docs/src/assets/stackblitz/angular.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"version": 1,
4+
"cli": {
5+
"analytics": false
6+
},
47
"newProjectRoot": "projects",
58
"projects": {
69
"koobiq-docs": {
@@ -23,7 +26,7 @@
2326
"outputPath": "dist/koobiq-docs",
2427
"index": "src/index.html",
2528
"main": "src/main.ts",
26-
"polyfills": "src/polyfills.ts",
29+
"polyfills": ["zone.js"],
2730
"tsConfig": "tsconfig.app.json",
2831
"assets": ["src/assets"],
2932
"styles": [

apps/docs/src/assets/stackblitz/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@
2929
"@koobiq/date-formatter": "^3.1.2",
3030
"@koobiq/design-tokens": "^3.6.0",
3131
"marked": "^9.0.0",
32+
"overlayscrollbars": "2.7.3",
3233
"@messageformat/core": "^3.0.0",
3334
"moment": "~2.29.2",
3435
"ngx-highlightjs": "^10.0.0",
3536
"luxon": "^3.4.4",
36-
"rxjs": "~7.8.0",
37+
"rxjs": "^7.8.1",
3738
"tslib": "^2.6.2",
38-
"zone.js": "^0.14.4"
39+
"zone.js": "^0.14.10"
3940
},
4041
"devDependencies": {
4142
"@angular-devkit/build-angular": "^18.2.6",

apps/docs/src/assets/stackblitz/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
55
import { BrowserModule } from '@angular/platform-browser';
66
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
77
import { DemoKoobiqModule } from '../koobiq.module';
8-
import '../polyfills';
98
import { KoobiqDocsExample } from './koobiq-docs-example';
109

1110
@NgModule({

apps/docs/src/assets/stackblitz/src/polyfills.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/docs/src/assets/stackblitz/tsconfig.app.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"types": []
66
},
77
"files": [
8-
"src/main.ts",
9-
"src/polyfills.ts"
8+
"src/main.ts"
109
],
1110
"include": [
1211
"src/**/*.d.ts"

apps/docs/src/assets/stackblitz/tsconfig.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@
1212
"module": "ES2022",
1313
"target": "ES2022",
1414
"lib": ["ES2022", "DOM"],
15-
"noImplicitAny": true,
15+
"noUnusedParameters": false,
16+
"noUnusedLocals": false,
17+
"useDefineForClassFields": false,
18+
"strictNullChecks": true,
1619
"noImplicitReturns": true,
17-
"noImplicitThis": true,
20+
"strictFunctionTypes": true,
21+
"noImplicitOverride": true,
1822
"noFallthroughCasesInSwitch": true,
19-
"useDefineForClassFields": false,
20-
"strictNullChecks": true
23+
"noImplicitAny": true,
24+
"noImplicitThis": true,
25+
"strictBindCallApply": true,
26+
"esModuleInterop": true
2127
},
2228
"angularCompilerOptions": {
2329
"fullTemplateTypeCheck": true,

apps/docs/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"include": [
12-
"src/**/*.ts"
12+
"src/**/*.d.ts"
1313
],
1414
"files": [
1515
"src/main.ts",

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"packageManager": "yarn@4.1.1",
1919
"requiredAngularVersion": "^18.0.0",
2020
"dependencies": {
21-
"@angular/animations": "18.2.5",
22-
"@angular/cdk": "18.2.5",
23-
"@angular/common": "18.2.5",
24-
"@angular/compiler": "18.2.5",
25-
"@angular/core": "18.2.5",
26-
"@angular/forms": "18.2.5",
27-
"@angular/platform-browser": "18.2.5",
21+
"@angular/animations": "18.2.6",
22+
"@angular/cdk": "18.2.6",
23+
"@angular/common": "18.2.6",
24+
"@angular/compiler": "18.2.6",
25+
"@angular/core": "18.2.6",
26+
"@angular/forms": "18.2.6",
27+
"@angular/platform-browser": "18.2.6",
2828
"@docsearch/css": "^3.6.0",
2929
"@docsearch/js": "^3.6.0",
3030
"@koobiq/date-adapter": "^3.1.2",
@@ -33,26 +33,26 @@
3333
"core-js": "^3.36.0",
3434
"marked": "^9.0.0",
3535
"overlayscrollbars": "2.7.3",
36-
"rxjs": "7.8.1",
36+
"rxjs": "^7.8.1",
3737
"tslib": "^2.6.2",
3838
"ua-parser-js": "^1.0.38",
3939
"zone.js": "^0.14.10"
4040
},
4141
"devDependencies": {
4242
"@angular-builders/jest": "18.0.0",
43-
"@angular-devkit/architect": "0.1802.5",
44-
"@angular-devkit/architect-cli": "0.1802.5",
45-
"@angular-devkit/build-angular": "18.2.5",
46-
"@angular-devkit/core": "18.2.5",
47-
"@angular-devkit/schematics": "18.2.5",
43+
"@angular-devkit/architect": "0.1802.6",
44+
"@angular-devkit/architect-cli": "0.1802.6",
45+
"@angular-devkit/build-angular": "18.2.6",
46+
"@angular-devkit/core": "18.2.6",
47+
"@angular-devkit/schematics": "18.2.6",
4848
"@angular-eslint/eslint-plugin": "18.3.1",
4949
"@angular-eslint/eslint-plugin-template": "18.3.1",
5050
"@angular-eslint/template-parser": "18.3.1",
51-
"@angular/cli": "18.2.5",
52-
"@angular/compiler-cli": "18.2.5",
53-
"@angular/platform-browser-dynamic": "18.2.5",
54-
"@angular/platform-server": "18.2.5",
55-
"@angular/router": "18.2.5",
51+
"@angular/cli": "18.2.6",
52+
"@angular/compiler-cli": "18.2.6",
53+
"@angular/platform-browser-dynamic": "18.2.6",
54+
"@angular/platform-server": "18.2.6",
55+
"@angular/router": "18.2.6",
5656
"@commitlint/cli": "^19.5.0",
5757
"@commitlint/config-conventional": "^19.5.0",
5858
"@cspell/dict-markdown": "^2.0.2",

0 commit comments

Comments
 (0)