@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 CHANGED
@@ -1 +1,4 @@
1
- # DeckGl Readme
1
+ # DeckGl Components
2
+
3
+
4
+ A custom `useDeckGl` hook and components showing the usage of deckGL within [@mapcomponents/react-maplibre](https://www.npmjs.com/package/@mapcomponents/react-maplibre)
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1688125160432" clover="3.2.0">
3
- <project timestamp="1688125160432" name="All files">
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-06-30T11:39:20.429Z
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": "0.0.7",
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": "ebbc7011de1e8709b14c89816890ad067322df16"
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
@@ -1,6 +0,0 @@
1
- {
2
- "printWidth": 100,
3
- "singleQuote": true,
4
- "trailingComma": "es5",
5
- "useTabs": true
6
- }
@@ -1,10 +0,0 @@
1
- const eslintErrorTest = () => {
2
- let c;
3
- const b;
4
- const ab;
5
- const l = "abc";
6
- const j = 'oh no'
7
-
8
- for (let i = 0; i < 10; i--) {}
9
- while (true) {}
10
- };