astro-loading-indicator
Advanced tools
Comparing version 0.1.1 to 0.1.2
# astro-loading-indicator | ||
## 0.1.2 | ||
### Patch Changes | ||
- 36fc58d: Improves imports | ||
## 0.1.1 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "astro-loading-indicator", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Display a progress bar between page navigations when using View Transitions", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -1,5 +0,5 @@ | ||
import { integration } from "./integration"; | ||
export * from "./types"; | ||
import { integration } from "./integration.js"; | ||
export * from "./types.js"; | ||
export { default as LoadingIndicator } from "./LoadingIndicator.astro"; | ||
export default integration; |
import type { AstroIntegration } from "astro"; | ||
import { createResolver, watchIntegration } from "astro-integration-kit"; | ||
import type { Options } from "./types"; | ||
import { resolveOptions, resolveTemplate } from "./utils"; | ||
import type { Options } from "./types.js"; | ||
import { resolveOptions, resolveTemplate } from "./utils.js"; | ||
@@ -6,0 +6,0 @@ export const integration = (_options: Options): AstroIntegration => { |
@@ -1,2 +0,2 @@ | ||
import type { Options } from "./types"; | ||
import type { Options } from "./types.js"; | ||
@@ -3,0 +3,0 @@ export const resolveOptions = ({ |
Sorry, the diff of this file is not supported yet
9000
1174