@fboes/aerofly-data 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.editorconfig ADDED
@@ -0,0 +1,20 @@
1
+ # EditorConfig is awesome: https://editorconfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+
6
+ [*]
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+ charset = utf-8
11
+ indent_style = space
12
+ indent_size = 2
13
+ max_line_length = 120
14
+
15
+ [*.html]
16
+ max_line_length = 720
17
+
18
+
19
+ [*.{md,svg}]
20
+ trim_trailing_whitespace = false
package/.eslintrc.json CHANGED
@@ -3,11 +3,7 @@
3
3
  "es2021": true,
4
4
  "node": true
5
5
  },
6
- "extends": [
7
- "eslint:recommended",
8
- "eslint-config-prettier",
9
- "plugin:jsdoc/recommended-error"
10
- ],
6
+ "extends": ["eslint:recommended", "eslint-config-prettier", "plugin:jsdoc/recommended-error"],
11
7
  "parserOptions": {
12
8
  "ecmaVersion": "latest",
13
9
  "sourceType": "module"
@@ -16,7 +12,5 @@
16
12
  "jsdoc/require-param-description": 0,
17
13
  "jsdoc/require-returns-description": 0
18
14
  },
19
- "plugins": [
20
- "jsdoc"
21
- ]
15
+ "plugins": ["jsdoc"]
22
16
  }
package/.prettierignore CHANGED
@@ -1,4 +1,3 @@
1
- *.json
2
1
  .vscode
3
2
  *.svg
4
- *.geojson
3
+ *.geojson
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.3.0] - 2025-10-15
9
+
10
+ - Added Mapbox map
11
+
8
12
  ## [1.2.1] - 2025-09-23
9
13
 
10
14
  - Added new aircraft
@@ -27,4 +31,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
31
 
28
32
  ## [1.0.0] - 2025-05-18
29
33
 
30
- - Initial release
34
+ - Initial release