@object-ui/runner 3.3.0 → 3.3.1

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/vite.config.ts DELETED
@@ -1,37 +0,0 @@
1
- /**
2
- * ObjectUI
3
- * Copyright (c) 2024-present ObjectStack Inc.
4
- *
5
- * This source code is licensed under the MIT license found in the
6
- * LICENSE file in the root directory of this source tree.
7
- */
8
-
9
- import { defineConfig } from 'vite'
10
- import react from '@vitejs/plugin-react'
11
- import path from 'path'
12
-
13
- // https://vitejs.dev/config/
14
- export default defineConfig({
15
- plugins: [react()],
16
- resolve: {
17
- alias: {
18
- // ⚡️ DX: Fix Shadcn component imports in the monorepo source
19
- "@/ui": path.resolve(__dirname, "../../packages/components/src/ui"),
20
- "@/lib/utils": path.resolve(__dirname, "../../packages/components/src/lib/utils"),
21
- "@/hooks": path.resolve(__dirname, "../../packages/components/src/hooks"),
22
-
23
- "@": path.resolve(__dirname, "./src"),
24
- // ⚡️ DX: App Data Symlink
25
- "@app": path.resolve(__dirname, "./src/app-data"),
26
-
27
- // ⚡️ DX: Map imports to source code for Hot Module Replacement
28
- "@object-ui/components": path.resolve(__dirname, "../../packages/components/src"),
29
- "@object-ui/react": path.resolve(__dirname, "../../packages/react/src"),
30
- "@object-ui/core": path.resolve(__dirname, "../../packages/core/src"),
31
- "@object-ui/types": path.resolve(__dirname, "../../packages/types/src"),
32
- "@object-ui/data-objectql": path.resolve(__dirname, "../../packages/data-objectql/src"),
33
- "@object-ui/plugin-kanban": path.resolve(__dirname, "../../packages/plugin-kanban/src"),
34
- "@object-ui/plugin-charts": path.resolve(__dirname, "../../packages/plugin-charts/src"),
35
- },
36
- },
37
- })