@getcronit/pylon 3.0.0-canary-20250318074812.4b922edf34090d4bbab62b3a0fb8da27e895dc24 → 3.0.0-canary-20250318080900.fb342022af81cdeb7ff4ccd1577d308240e75f1b

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.
@@ -1,6 +1,6 @@
1
1
  export * as __PYLON_ROUTER_INTERNALS_DO_NOT_USE from 'react-router';
2
2
  export { Image } from './image';
3
3
  export { Link } from './link';
4
- export { type PageProps, type PageData } from '@/plugins/use-pages';
5
- export * from '@/components/dev-overlay';
4
+ export { type PageProps, type PageData } from '../plugins/use-pages';
5
+ export * from '../components/dev-overlay';
6
6
  import '../globals.css';
@@ -1,2 +1,2 @@
1
- import { Plugin } from '@/index';
1
+ import { Plugin } from '../../../index';
2
2
  export declare const build: Plugin['build'];
@@ -1,4 +1,4 @@
1
- import { Plugin } from '@/index';
1
+ import { Plugin } from '../../index';
2
2
  import { PageData, PageProps } from './setup';
3
3
  export { PageData, PageProps };
4
4
  export declare function usePages(): Plugin;
@@ -1,4 +1,4 @@
1
- import { type Plugin } from '@/index';
1
+ import { type Plugin } from '../../../index';
2
2
  export interface PageData {
3
3
  }
4
4
  export type PageProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getcronit/pylon",
3
- "version": "3.0.0-canary-20250318074812.4b922edf34090d4bbab62b3a0fb8da27e895dc24",
3
+ "version": "3.0.0-canary-20250318080900.fb342022af81cdeb7ff4ccd1577d308240e75f1b",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -68,7 +68,8 @@
68
68
  "@types/react": "^19.0.8",
69
69
  "@types/react-dom": "^19.0.4",
70
70
  "tailwindcss": "^4.0.4",
71
- "tailwindcss-animate": "^1.0.7"
71
+ "tailwindcss-animate": "^1.0.7",
72
+ "tsc-alias": "^1.8.11"
72
73
  },
73
74
  "peerDependencies": {
74
75
  "@tailwindcss/postcss": "^4.0.4",
@@ -93,6 +94,6 @@
93
94
  },
94
95
  "scripts": {
95
96
  "build": "rimraf ./dist && node build.js && pnpm run build:declarations",
96
- "build:declarations": "tsc --declaration --emitDeclarationOnly --outDir ./dist"
97
+ "build:declarations": "tsc --declaration --emitDeclarationOnly --outDir ./dist && tsc-alias"
97
98
  }
98
99
  }