@fluenti/vite-plugin 0.6.0 → 0.6.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.
@@ -1,3 +1,3 @@
1
- export { createRuntimeGenerator } from '../../core/src/transform.ts';
2
- export type { RuntimePrimitives } from '../../core/src/transform.ts';
1
+ export { createRuntimeGenerator } from '@fluenti/core/transform';
2
+ export type { RuntimePrimitives } from '@fluenti/core/transform';
3
3
  //# sourceMappingURL=runtime-template.d.ts.map
@@ -1,5 +1,5 @@
1
- import { FluentiBuildConfig } from '../../core/src/compiler.ts';
2
- export type { RuntimeGeneratorOptions, RuntimeGenerator } from '../../core/src/transform.ts';
1
+ import { FluentiBuildConfig } from '@fluenti/core/compiler';
2
+ export type { RuntimeGeneratorOptions, RuntimeGenerator } from '@fluenti/core/transform';
3
3
  /** Custom message ID generator function */
4
4
  export type IdGenerator = (message: string, context?: string) => string;
5
5
  /** User-facing plugin options (framework packages expose this to consumers) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluenti/vite-plugin",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "type": "module",
5
5
  "description": "Vite plugin for Fluenti — build-time transforms, virtual modules, code splitting",
6
6
  "homepage": "https://fluenti.dev",
@@ -61,7 +61,7 @@
61
61
  "llms*.txt"
62
62
  ],
63
63
  "dependencies": {
64
- "@fluenti/core": "0.6.0"
64
+ "@fluenti/core": "0.6.1"
65
65
  },
66
66
  "peerDependencies": {
67
67
  "vite": "^5 || ^6 || ^8"