Skip to content

Commit

Permalink
revert bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhlongviolin1 committed Jun 13, 2024
1 parent f7ba5a9 commit 698efa5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/taipy-gui/base/src/dataManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export type ModuleData = Record<string, VarName>;

export type VarName = Record<string, VarData>;

interface VarData {
export interface VarData {
type: string;
value: unknown;
encoded_name: string;
Expand Down
4 changes: 4 additions & 0 deletions frontend/taipy-gui/base/src/exports.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { TaipyApp } from "./app";
import { WsAdapter } from "./wsAdapter";

export { TaipyApp, WsAdapter }
7 changes: 7 additions & 0 deletions frontend/taipy-gui/base/src/packaging/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "taipy-gui-base",
"version": "3.2.0",
"private": true,
"main": "./taipy-gui-base.js",
"types": "./taipy-gui-base.d.ts"
}
10 changes: 5 additions & 5 deletions frontend/taipy-gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion frontend/taipy-gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"lint:fix": "npm run lint -- --fix",
"coverage": "npm test -- --coverage",
"types": "dts-bundle-generator -o packaging/taipy-gui.gen.d.ts src/extensions/exports.ts",
"types-base": "dts-bundle-generator -o base/src/packaging/taipy-gui-base.gen.d.ts base/src/exports.ts",
"doc": "typedoc --plugin typedoc-plugin-markdown --excludeNotDocumented --disableSources src/extensions/exports.ts",
"doc.json": "typedoc --json docs/taipy-gui.json src/extensions/exports.ts",
"mkdocs": "typedoc --options typedoc-mkdocs.json"
Expand Down Expand Up @@ -97,7 +98,7 @@
"css-loader": "^7.1.0",
"css-mediaquery": "^0.1.2",
"dotenv-webpack": "^8.0.0",
"dts-bundle-generator": "^9.2.1",
"dts-bundle-generator": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
Expand Down

0 comments on commit 698efa5

Please sign in to comment.