Skip to content

Commit f8b90d0

Browse files
author
Michel Bröker
committed
DN-34: Updated to map.apps 4.18.1
1 parent fdba26f commit f8b90d0

38 files changed

Lines changed: 254 additions & 113 deletions

.editorconfig

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1+
# http://editorconfig.org
2+
# top-most EditorConfig file
13
root = true
24

35
[*]
46
indent_style = space
57
indent_size = 4
68
end_of_line = lf
79
charset = utf-8
8-
trim_trailing_whitespace = false
10+
trim_trailing_whitespace = true
911
insert_final_newline = true
10-
max_line_length = 120
11-
12-
[*.md]
13-
trim_trailing_whitespace = false
14-
15-
[*.yml]
16-
indent_size = 2

.eslintrc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extends": "eslint-config-ct-prodeng",
3-
"plugins": [
4-
"vue"
5-
]
2+
"extends": "eslint-config-ct-prodeng",
3+
"plugins": [
4+
"vue"
5+
]
66
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
/.vscode/settings.json
1515
/.externalToolBuilders/
1616
/package-lock.json
17+
/gulpfile.overrides.js

.stylelintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# add path patterns to ignore style files
2+
**/external-libs/**
3+
**/styles/dijit/**

.stylelintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "stylelint-config-ct-prodeng"
3+
}

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,3 +199,4 @@
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201201
limitations under the License.
202+

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ Restart your map.apps instance. You should now see a new tab in the manager view
2323
| topic | String | | | Topic used in GitHub |
2424

2525

26-
## Attention
26+
## Quick start
2727

28-
The included sample app is just for ui design. Functional tests can only be performed in full installed map.apps manager (role=maAdmin).
28+
Clone this project and ensure that you have all required dependencies installed correctly (see [Documentation](https://docs.conterra.de/en/mapapps/latest/developersguide/getting-started/set-up-development-environment.html)).
29+
30+
Then run the following commands from the project root directory to start a local development server:
31+
32+
```bash
33+
# install all required node modules
34+
$ mvn initialize
35+
36+
# start dev server
37+
$ mvn compile -Denv=dev -Pinclude-mapapps-deps
38+
39+
# run unit tests
40+
$ mvn test -P run-js-tests,include-mapapps-deps
41+
```

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
✅ Tested for map.apps 4.13.1 / Linie 4
1+
✅ Tested for map.apps 4.18.1 / Linie 4
22

33
#### Release Notes
4-
- SNAPSHOT-Release
4+
- autogenerated SNAPSHOT-Release

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2024 con terra GmbH (info@conterra.de)
2+
# Copyright (C) 2023 con terra GmbH (info@conterra.de)
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

gulpfile.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2023 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -66,14 +66,12 @@ mapapps.registerTasks({
6666
/* a list of themes inside this project */
6767
themes: [],
6868
/* state that the custom theme will be dependant from map.apps everlasting theme that provides the base styles */
69-
hasBaseThemes: false,
69+
hasBaseThemes: true,
7070
/* state that we want to support vuetify components and therefore need the vuetify core styles*/
71-
hasVuetify: false,
72-
/*themeChangeTargets: {
73-
"vuetify": [
74-
"theme-custom"
75-
]
76-
},*/
71+
hasVuetify: true,
72+
themeChangeTargets: {
73+
"vuetify": []
74+
},
7775
/* A list oft target browser versions. This should be streamlined with Esri JS API requirements. */
7876
transpileTargets: {
7977
firefox: 102,

0 commit comments

Comments
 (0)