@aiready/visualizer 0.6.4 → 0.6.6
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/dist/cli.js +22 -2
- package/dist/cli.js.map +1 -1
- package/dist/graph/index.d.ts +30 -3
- package/dist/graph/index.js +22 -2
- package/dist/graph/index.js.map +1 -1
- package/dist/index.js +22 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/web/dist/assets/{index-BPpKlAEI.js → index-DbVV6ZUw.js} +62 -2
- package/web/dist/assets/index-DbVV6ZUw.js.map +1 -0
- package/web/dist/index.html +1 -1
- package/web/vite.config.ts +1 -1
- package/web/dist/assets/index-BPpKlAEI.js.map +0 -1
package/web/dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AIReady Visualizer (Dev)</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-DbVV6ZUw.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-SEmv1C_v.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/web/vite.config.ts
CHANGED
|
@@ -97,7 +97,7 @@ export default defineConfig(async ({ command }) => {
|
|
|
97
97
|
// during dev resolve to source for HMR; during build use the built dist
|
|
98
98
|
'@aiready/components': isDev
|
|
99
99
|
? componentsPath
|
|
100
|
-
: resolve(__dirname, '../../components/dist'),
|
|
100
|
+
: resolve(__dirname, '../../components/dist/index.js'),
|
|
101
101
|
},
|
|
102
102
|
},
|
|
103
103
|
};
|