Skip to content

Commit d068402

Browse files
Michael PARRYNeonox31
authored andcommitted
feat: update to angular 9
- migrate to angular 9.1 - upgrade demo to openlayer 6.3.1 - fix cyclic dependencies for Raster (change Sources management) - migrate hammer to use HammerModule (Swipe exemple) - add umdModuleIds to handle ng-packagr warning - fix arcgis & tilejson example - format with prettier - clean unused dependencies (hammer-timejs & geojson)
1 parent aad20a5 commit d068402

File tree

78 files changed

+22337
-17814
lines changed

Some content is hidden

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

78 files changed

+22337
-17814
lines changed

.editorconfig

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
# Editor configuration, see http://editorconfig.org
2-
root = true
3-
4-
[*]
5-
charset = utf-8
6-
indent_style = space
7-
indent_size = 2
8-
insert_final_newline = true
9-
trim_trailing_whitespace = true
10-
11-
[*.md]
12-
max_line_length = off
13-
trim_trailing_whitespace = false
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

angular.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
"@schematics/angular:component": {
1010
"inlineTemplate": true,
1111
"inlineStyle": true,
12-
"spec": false
12+
"skipTests": true
1313
},
1414
"@schematics/angular:class": {
15-
"spec": false
15+
"skipTests": true
1616
},
1717
"@schematics/angular:directive": {
18-
"spec": false
18+
"skipTests": true
1919
},
2020
"@schematics/angular:guard": {
21-
"spec": false
21+
"skipTests": true
2222
},
2323
"@schematics/angular:module": {
24-
"spec": false
24+
"skipTests": true
2525
},
2626
"@schematics/angular:pipe": {
27-
"spec": false
27+
"skipTests": true
2828
},
2929
"@schematics/angular:service": {
30-
"spec": false
30+
"skipTests": true
3131
}
3232
},
3333
"root": "",
@@ -55,6 +55,12 @@
5555
},
5656
"configurations": {
5757
"production": {
58+
"budgets": [
59+
{
60+
"type": "anyComponentStyle",
61+
"maximumWarning": "6kb"
62+
}
63+
],
5864
"fileReplacements": [
5965
{
6066
"replace": "src/environments/environment.ts",
@@ -145,7 +151,7 @@
145151
},
146152
"configurations": {
147153
"production": {
148-
"project": "projects/ngx-openlayers/ng-package.prod.json"
154+
"tsConfig": "projects/ngx-openlayers/tsconfig.lib.prod.json"
149155
}
150156
}
151157
},

0 commit comments

Comments
 (0)