@slashid/jump-page 0.0.7-beta.5 → 0.0.8-package.0
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/astro.config.mjs +11 -8
- package/dist/_astro/{app.545e4cdc.js → app.a42374a9.js} +15 -15
- package/dist/_astro/sdk.080ae68e.css +1 -0
- package/dist/_astro/sdk.35b1e93e.css +1 -0
- package/dist/sdk.html +7 -0
- package/package/astro.config.d.mts +2 -0
- package/package/dist/_astro/app.a42374a9.d.ts +2 -0
- package/package/dist/_astro/client.a5ffbec0.d.ts +7 -0
- package/package/dist/_astro/index.03be2d59.d.ts +3 -0
- package/package/favicon.png +0 -0
- package/package/main.js +2915 -0
- package/package/main.js.map +1 -0
- package/package/src/components/app/app.component.d.ts +1 -0
- package/package/src/components/app/app.context.d.ts +21 -0
- package/package/src/components/app/app.css.d.ts +1 -0
- package/package/src/components/app/index.d.ts +1 -0
- package/package/src/components/card/card.component.d.ts +7 -0
- package/package/src/components/card/card.css.d.ts +4 -0
- package/package/src/components/card/index.d.ts +1 -0
- package/package/src/components/flow/flow.component.d.ts +1 -0
- package/package/src/components/flow/flow.css.d.ts +3 -0
- package/package/src/components/flow/flow.error.d.ts +4 -0
- package/package/src/components/flow/flow.initial.d.ts +1 -0
- package/package/src/components/flow/flow.loader.d.ts +1 -0
- package/package/src/components/flow/flow.progress.d.ts +9 -0
- package/package/src/components/flow/flow.recover.d.ts +1 -0
- package/package/src/components/flow/flow.success.d.ts +1 -0
- package/package/src/components/flow/flow.types.d.ts +31 -0
- package/package/src/components/flow/index.d.ts +3 -0
- package/package/src/components/text/index.d.ts +1 -0
- package/package/src/components/text/text.component.d.ts +6 -0
- package/package/src/components/text/use-i18n.d.ts +1 -0
- package/package/src/config.d.ts +4 -0
- package/package/src/domain/errors.d.ts +1 -0
- package/package/src/domain/i18n.d.ts +43 -0
- package/package/src/main.d.ts +5 -0
- package/package/style.css +1 -0
- package/package/vite.config.d.ts +2 -0
- package/package.json +30 -10
- package/tsconfig.json +5 -1
- package/cli.js +0 -53
- package/dist/_astro/index.0344e4be.css +0 -1
- package/dist/_astro/index.2f22a71e.css +0 -1
- package/dist/index.html +0 -7
package/astro.config.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import path from "node:path"
|
|
2
|
-
import { fileURLToPath } from "node:url"
|
|
3
|
-
import { defineConfig } from "astro/config"
|
|
1
|
+
import path from "node:path"
|
|
2
|
+
import { fileURLToPath } from "node:url"
|
|
3
|
+
import { defineConfig } from "astro/config"
|
|
4
4
|
|
|
5
|
-
import react from "@astrojs/react"
|
|
6
|
-
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin"
|
|
5
|
+
import react from "@astrojs/react"
|
|
6
|
+
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin"
|
|
7
7
|
|
|
8
|
-
const __filename = fileURLToPath(import.meta.url)
|
|
9
|
-
const __dirname = path.dirname(__filename)
|
|
8
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
9
|
+
const __dirname = path.dirname(__filename)
|
|
10
10
|
|
|
11
11
|
// https://astro.build/config
|
|
12
12
|
export default defineConfig({
|
|
@@ -14,4 +14,7 @@ export default defineConfig({
|
|
|
14
14
|
vite: {
|
|
15
15
|
plugins: [vanillaExtractPlugin()],
|
|
16
16
|
},
|
|
17
|
-
|
|
17
|
+
build: {
|
|
18
|
+
format: "file",
|
|
19
|
+
},
|
|
20
|
+
})
|