@myrmidon/gve-snapshot-rendition 0.0.5 → 0.0.7
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 +1 -7
- package/dist/index.cjs.min.js +4 -4
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +202 -160
- package/dist/index.js.map +1 -1
- package/dist/rendering/feature-resolver.d.ts +3 -3
- package/dist/rendering/text-layout.d.ts +5 -3
- package/dist/rendering/text-renderer.d.ts +2 -2
- package/dist/utils/feature-utils.d.ts +7 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -94,15 +94,9 @@ This component requires the following packages:
|
|
|
94
94
|
- [feather-icons](https://github.com/feathericons/feather) for icons. See also the [icons list](https://feathericons.com) (`pnpm i feather-icons`).
|
|
95
95
|
- [highlight.js](https://highlightjs.org/) for the hint designer (syntax highlight for SVG and JS code; `pnpm i highlight.js`).
|
|
96
96
|
|
|
97
|
-
## Task List
|
|
98
|
-
|
|
99
|
-
This is only a reminder.
|
|
100
|
-
|
|
101
|
-
- consider simplifying logic by drawing node features from tagged nodes rather than from steps.
|
|
102
|
-
|
|
103
97
|
## Deployment
|
|
104
98
|
|
|
105
|
-
You must be logged into NPM with your account (verify with `npm whoami`, login with `npm login` if required).
|
|
99
|
+
🚀 You must be logged into NPM with your account (verify with `npm whoami`, login with `npm login` if required).
|
|
106
100
|
|
|
107
101
|
1. ensure that tests pass (`pnpm test`) and be sure to build (`pnpm build`).
|
|
108
102
|
2. publish via `pnpm run publish:public` or directly via `npm publish --access=public`.
|