@glaicer/supercode-token-usage-panel 0.1.1 → 0.1.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 +2 -0
- package/dist/usage-model.js +850 -0
- package/dist/usage-panel.js +136 -0
- package/package.json +9 -7
- package/src/usage-model.ts +0 -1031
- package/src/usage-panel.tsx +0 -82
package/README.md
CHANGED
|
@@ -37,4 +37,6 @@ Manual install also works: add the package to the `plugin` array in `tui.json` (
|
|
|
37
37
|
```bash
|
|
38
38
|
npm run typecheck # tsc --noEmit
|
|
39
39
|
npm test # node --test, network-free: session history comes from fixtures
|
|
40
|
+
npm run build # precompile Solid TSX into dist
|
|
41
|
+
npm pack --dry-run # build and verify the publish artifact
|
|
40
42
|
```
|