Skip to content

Commit 8087da1

Browse files
committed
update(workspace): use the new angular schematics for initializing libraries.
- Pump version to 3.0.0 - Fix breaking change introduced in angular material 12.
1 parent a2a5f65 commit 8087da1

23 files changed

+5367
-7706
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
/dist
55
/tmp
66
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
79

810
# dependencies
911
/node_modules
1012

1113
# profiling files
12-
chrome-profiler-events.json
13-
speed-measure-plugin.json
14+
chrome-profiler-events*.json
1415

1516
# IDEs and editors
1617
/.idea

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Haidar Zeineddine
3+
Copyright (c) 2021 Haidar Zeineddine
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

angular.json

+6-15
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@
1010
"prefix": "ms",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-ng-packagr:build",
13+
"builder": "@angular-devkit/build-angular:ng-packagr",
1414
"options": {
15-
"tsConfig": "projects/ng-mat-select-infinite-scroll/tsconfig.lib.json",
1615
"project": "projects/ng-mat-select-infinite-scroll/ng-package.json"
1716
},
1817
"configurations": {
1918
"production": {
2019
"tsConfig": "projects/ng-mat-select-infinite-scroll/tsconfig.lib.prod.json"
20+
},
21+
"development": {
22+
"tsConfig": "projects/ng-mat-select-infinite-scroll/tsconfig.lib.json"
2123
}
22-
}
24+
},
25+
"defaultConfiguration": "production"
2326
},
2427
"test": {
2528
"builder": "@angular-devkit/build-angular:karma",
@@ -28,18 +31,6 @@
2831
"tsConfig": "projects/ng-mat-select-infinite-scroll/tsconfig.spec.json",
2932
"karmaConfig": "projects/ng-mat-select-infinite-scroll/karma.conf.js"
3033
}
31-
},
32-
"lint": {
33-
"builder": "@angular-devkit/build-angular:tslint",
34-
"options": {
35-
"tsConfig": [
36-
"projects/ng-mat-select-infinite-scroll/tsconfig.lib.json",
37-
"projects/ng-mat-select-infinite-scroll/tsconfig.spec.json"
38-
],
39-
"exclude": [
40-
"**/node_modules/**"
41-
]
42-
}
4334
}
4435
}
4536
},

0 commit comments

Comments
 (0)