@operato/scene-compass 10.0.0-beta.14 → 10.0.0-beta.65

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.
Files changed (2) hide show
  1. package/README.md +30 -8
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,11 +1,33 @@
1
- # things-scene-compass
1
+ # @operato/scene-compass
2
2
 
3
- ## build
3
+ > Compass Component for things-scene.
4
4
 
5
- `$ yarn build`
5
+ <!-- AUTOGEN_BEGIN: do not edit between markers (run scripts/regenerate-readmes.mjs to update) -->
6
6
 
7
- | type | filename | for | tested |
8
- | ---- | -------------------------- | -------------- | ------ |
9
- | UMD | things-scene-compass.js | modern browser | O |
10
- | UMD | things-scene-compass-ie.js | ie 11 | O |
11
- | ESM | things-scene-compass.mjs | modern browser | O |
7
+ ## Components
8
+
9
+ - `Compass`
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ yarn add @operato/scene-compass
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```ts
20
+ import { Compass } from '@operato/scene-compass'
21
+ ```
22
+
23
+ ## Build
24
+
25
+ ```bash
26
+ yarn build
27
+ ```
28
+
29
+ Output: ESM module at `dist/index.js` (single bundle, no UMD/IE legacy).
30
+
31
+ _Version: 10.0.0-beta.14_
32
+
33
+ <!-- AUTOGEN_END -->
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-compass",
3
3
  "description": "Compass Component for things-scene.",
4
4
  "author": "heartyoh",
5
- "version": "10.0.0-beta.14",
5
+ "version": "10.0.0-beta.65",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.js",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@hatiolab/prettier-config": "^1.0.0",
35
- "@things-factory/builder": "^10.0.0-beta.1",
36
- "@things-factory/operato-board": "^10.0.0-beta.1",
35
+ "@things-factory/builder": "^10.0.0-zeta.1",
36
+ "@things-factory/operato-board": "^10.0.0-zeta.1",
37
37
  "@typescript-eslint/eslint-plugin": "^8.0.0",
38
38
  "@typescript-eslint/parser": "^8.0.0",
39
39
  "@web/dev-server": "^0.1.28",
@@ -58,5 +58,5 @@
58
58
  "prettier --write"
59
59
  ]
60
60
  },
61
- "gitHead": "3defb7207c541d87da3f5ebdd34f06d2e9e1cebb"
61
+ "gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
62
62
  }