-
Notifications
You must be signed in to change notification settings - Fork 1
feat: callback added to demo, add a server, and remove vite dependency #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
const loadingEl = document.getElementById("loading"); | ||
const errorEl = document.getElementById("error"); | ||
<script type="module"> | ||
import { EmbeddedWidget } from "https://cdn.jsdelivr.net/npm/@airbyte-embedded/[email protected]/+esm"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note to ourselves: we'll want a way to update this automatically
"build": "tsc", | ||
"prepare": "pnpm run build", | ||
"format": "prettier --write .", | ||
"lint": "prettier --check .", | ||
"test": "jest", | ||
"test:watch": "jest --watch" | ||
}, | ||
"keywords": [ | ||
"airbyte", | ||
"embedded", | ||
"modal", | ||
"widget", | ||
"sources", | ||
"connectors", | ||
"ui", | ||
"oauth", | ||
"authentication", | ||
"authorization", | ||
"connect", | ||
"connector", | ||
"connectors" | ||
], | ||
"author": "Airbyte", | ||
"license": "UNLICENSED", | ||
"devDependencies": { | ||
"@types/jest": "^29.5.12", | ||
"@types/node": "^20.11.24", | ||
"eslint": "^9.23.0", | ||
"jest": "^29.7.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"ts-jest": "^29.1.2", | ||
"typescript": "^5.3.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need quite a bit of this :) adding some back.
package.json
Outdated
] | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@girarda was this intentional? We had a chat a month ago about making this UNLICENSED, so I am not sure about this.
"@playwright/test": "^1.42.1", | ||
"@types/node": "^22.13.14", | ||
"@vitejs/plugin-basic-ssl": "^2.0.0", | ||
"dotenv": "^16.4.7", | ||
"prettier": "^3.5.3", | ||
"typescript": "^5.3.3", | ||
"vite": "^5.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here if we want tests of the demo, we need these :)
No description provided.