bertui 0.1.1 → 0.1.2
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { program } from "./src/cli.js";
|
|
|
8
8
|
|
|
9
9
|
// Router exports - these will be available after compilation
|
|
10
10
|
// Users import these from 'bertui/router'
|
|
11
|
-
export { Link, navigate, Router } from './src/router/
|
|
11
|
+
export { Link, navigate, Router } from './src/router/router.js';
|
|
12
12
|
|
|
13
13
|
// Named exports for CLI and build tools
|
|
14
14
|
export {
|
|
@@ -28,5 +28,5 @@ export default {
|
|
|
28
28
|
buildProduction,
|
|
29
29
|
compileProject,
|
|
30
30
|
program,
|
|
31
|
-
version: "0.1.
|
|
31
|
+
version: "0.1.2"
|
|
32
32
|
};
|