@mapcomponents/deck-gl 0.0.7 → 1.5.3
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/README.md +4 -1
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/package.json +3 -5
- package/.editorconfig +0 -19
- package/.eslintrc.js +0 -30
- package/.prettierrc.json +0 -6
- package/eslintErrorTest.js +0 -10
package/README.md
CHANGED
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1691143564896" clover="3.2.0">
|
|
3
|
+
<project timestamp="1691143564896" name="All files">
|
|
4
4
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0" elements="0" coveredelements="0" complexity="0" loc="0" ncloc="0" packages="0" files="0" classes="0"/>
|
|
5
5
|
</project>
|
|
6
6
|
</coverage>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
87
87
|
Code coverage generated by
|
|
88
88
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
89
|
-
at 2023-
|
|
89
|
+
at 2023-08-04T10:06:04.891Z
|
|
90
90
|
</div>
|
|
91
91
|
<script src="prettify.js"></script>
|
|
92
92
|
<script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapcomponents/deck-gl",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -17,9 +17,7 @@
|
|
|
17
17
|
"storybook-docs": "start-storybook --docs --no-manager-cache",
|
|
18
18
|
"build-catalogue-meta": "node scripts/build-catalogue-meta.js",
|
|
19
19
|
"build-catalogue-markdown-docs": "node scripts/build-catalogue-markdown-docs.js",
|
|
20
|
-
"create-component": "./scripts/create-map-component.sh"
|
|
21
|
-
"eslint-lint": "yarn run eslint",
|
|
22
|
-
"prettier-format": "yarn run prettier --check"
|
|
20
|
+
"create-component": "./scripts/create-map-component.sh"
|
|
23
21
|
},
|
|
24
22
|
"dependencies": {
|
|
25
23
|
"@deck.gl/aggregation-layers": "^8.8.23",
|
|
@@ -195,5 +193,5 @@
|
|
|
195
193
|
"publishConfig": {
|
|
196
194
|
"access": "public"
|
|
197
195
|
},
|
|
198
|
-
"gitHead": "
|
|
196
|
+
"gitHead": "8570f4d4c3bd5e74a14d80c456a5d7a2039ee285"
|
|
199
197
|
}
|
package/.editorconfig
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# EditorConfig is awesome: https://editorconfig.org/
|
|
2
|
-
|
|
3
|
-
# top-most EditorConfig file
|
|
4
|
-
root = true
|
|
5
|
-
|
|
6
|
-
[*.md]
|
|
7
|
-
trim_trailing_whitespace = false
|
|
8
|
-
|
|
9
|
-
[*.js]
|
|
10
|
-
trim_trailing_whitespace = true
|
|
11
|
-
|
|
12
|
-
# Unix-style newlines with a newline ending every file
|
|
13
|
-
[*]
|
|
14
|
-
indent_style = tab
|
|
15
|
-
indent_size = 2
|
|
16
|
-
end_of_line = lf
|
|
17
|
-
charset = utf-8
|
|
18
|
-
insert_final_newline = true
|
|
19
|
-
max_line_length = 100
|
package/.eslintrc.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
env: {
|
|
3
|
-
browser: true,
|
|
4
|
-
node: true,
|
|
5
|
-
es2021: true,
|
|
6
|
-
},
|
|
7
|
-
extends: [
|
|
8
|
-
'eslint:recommended',
|
|
9
|
-
'plugin:react/recommended',
|
|
10
|
-
'plugin:@typescript-eslint/recommended',
|
|
11
|
-
'prettier',
|
|
12
|
-
],
|
|
13
|
-
overrides: [],
|
|
14
|
-
parser: '@typescript-eslint/parser',
|
|
15
|
-
parserOptions: {
|
|
16
|
-
ecmaVersion: 'latest',
|
|
17
|
-
sourceType: 'module',
|
|
18
|
-
},
|
|
19
|
-
plugins: ['react', '@typescript-eslint'],
|
|
20
|
-
rules: {
|
|
21
|
-
'react/prop-types': 'off',
|
|
22
|
-
// empty functions can sometimes be set intentionally. e.g. with useRef/useState, if we want an empty function first
|
|
23
|
-
'@typescript-eslint/no-empty-function': 'off',
|
|
24
|
-
},
|
|
25
|
-
settings: {
|
|
26
|
-
react: {
|
|
27
|
-
version: 'detect',
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
};
|
package/.prettierrc.json
DELETED