@strifeapp/astro 1.0.2 → 1.0.3

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/index.js CHANGED
@@ -1,7 +1,10 @@
1
- import { vitePluginStrifeStore } from './vite-plugin-strife-store';
1
+ // Import the vite plugin using a relative path with .js extension
2
+ import { vitePluginStrifeStore } from './vite-plugin-strife-store.js';
3
+
2
4
  const defaultClientConfig = {
3
5
  type: 'pfx',
4
6
  };
7
+
5
8
  export default function strifeIntegration(options = {}) {
6
9
  // Validate options
7
10
  /* if (!options.apiKey) {
@@ -0,0 +1 @@
1
+ export * from './vite-plugin-strife-store';
@@ -0,0 +1,2 @@
1
+ // This file serves as an entry point for the vite-plugin-strife-store module
2
+ export * from './vite-plugin-strife-store.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strifeapp/astro",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Official Strife Astro integration",
5
5
  "keywords": [
6
6
  "astro-integration",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "exports": {
17
17
  ".": "./dist/index.js",
18
- "./vite-plugin-strife-store": "./dist/vite-plugin-strife-store.js"
18
+ "./vite-plugin-strife-store": "./dist/vite-plugin-strife-store-entry.js"
19
19
  },
20
20
  "files": [
21
21
  "dist"
@@ -31,5 +31,5 @@
31
31
  "peerDependencies": {
32
32
  "astro": "^4.0.0 || ^5.0.0",
33
33
  "ravendb": "^6.0.0"
34
- }
34
+ }
35
35
  }