https://github.com/ymichael/widgettable
https://github.com/ymichael/widgettable
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ymichael/widgettable
- Owner: ymichael
- Created: 2021-11-08T15:42:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-28T02:21:47.000Z (about 4 years ago)
- Last Synced: 2025-02-28T15:37:00.790Z (over 1 year ago)
- Language: TypeScript
- Size: 322 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WidgetTable
## Code organization:
| dir / path | description |
| -------------------- | ------------------------------------ |
| ui-src/ | This is where the iframe code lives |
| ui-src/index.html | Main entry point for the iframe code |
| ui-src/tsconfig.json | tsconfig for the iframe code |
| code.tsx | This is the widget code |
| tsconfig.json | tsconfig for the widget code |
| dist/ | Built output goes here |
## Scripts
| script | description |
| ------------------------ | ----------------------------------------------------------------------- |
| npm run build | one-off full build of both the iframe and widget |
| npm run build:main | one-off build of the widget code |
| npm run build:ui | one-off build of the iframe code |
| npm run build:main:watch | watch-mode build of the widget code. rebuilds if when you save changes. |
| npm run build:ui:watch | watch-mode build of the iframe code. rebuilds if when you save changes. |