mapicgc-gl-js 0.0.18 → 0.0.20

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,6 @@
1
+ # http://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ charset = utf-8
6
+ end_of_line = lf
package/.eslintrc ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "extends": [
3
+ "@geostarters"
4
+ ],
5
+ "parserOptions": {
6
+ "sourceType": "module"
7
+ },
8
+ "overrides": [
9
+ {
10
+ "files": [
11
+ "**/*.test.js"
12
+ ],
13
+ "env": {
14
+ "jest": true
15
+ },
16
+ "plugins": ["jest"],
17
+ "rules": {
18
+ "jest/no-disabled-tests": "warn",
19
+ "jest/no-focused-tests": "error",
20
+ "jest/no-identical-title": "error",
21
+ "jest/prefer-to-have-length": "warn",
22
+ "jest/valid-expect": "error"
23
+ }
24
+ }
25
+ ]
26
+ }
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Biblioteca de mapes ICGC. Envoltori de MaplibreGL
4
4
 
5
5
  <br>
6
- Versió 0.0.18
6
+ Versió 0.0.17
7
7
 
8
8
  <br>
9
9
  ### Documentació:
package/api.md ADDED
@@ -0,0 +1,3 @@
1
+ <!-- Generated by documentation.js. Update this documentation by updating the source code. -->
2
+
3
+ ### Table of Contents
@@ -0,0 +1,12 @@
1
+ // babel.config.js
2
+ module.exports = {
3
+ presets: [
4
+ [
5
+ '@babel/preset-env',
6
+ {
7
+ targets: 'defaults', // Utilitza els valors per defecte per a la compatibilitat amb els navegadors
8
+ },
9
+ ],
10
+ ],
11
+ };
12
+