vite-react-ssg 0.3.3 → 0.5.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/README.md +13 -0
- package/dist/index.d.cts +24 -0
- package/dist/index.d.mts +24 -0
- package/dist/index.d.ts +2 -2
- package/dist/node/cli.cjs +18 -4
- package/dist/node/cli.d.cts +2 -0
- package/dist/node/cli.d.mts +2 -0
- package/dist/node/cli.d.ts +1 -1
- package/dist/node/cli.mjs +16 -2
- package/dist/node.cjs +29153 -20
- package/dist/node.d.cts +11 -0
- package/dist/node.d.mts +11 -0
- package/dist/node.d.ts +1 -1
- package/dist/node.mjs +29132 -15
- package/dist/{types-3aee4b6b.d.ts → shared/vite-react-ssg.d5f23f74.d.cts} +1 -1
- package/dist/shared/vite-react-ssg.d5f23f74.d.mts +178 -0
- package/dist/shared/vite-react-ssg.d5f23f74.d.ts +178 -0
- package/dist/style-collectors/styled-components.d.cts +9 -0
- package/dist/style-collectors/styled-components.d.mts +9 -0
- package/package.json +20 -20
- package/dist/shared/vite-react-ssg.69de2462.cjs +0 -1541
- package/dist/shared/vite-react-ssg.f8eacfb1.mjs +0 -1532
package/dist/node.d.cts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { InlineConfig } from 'vite';
|
|
2
|
+
import { V as ViteReactSSGOptions } from './shared/vite-react-ssg.d5f23f74.cjs';
|
|
3
|
+
import 'critters';
|
|
4
|
+
import 'react';
|
|
5
|
+
import 'react-router-dom';
|
|
6
|
+
|
|
7
|
+
declare function build(ssgOptions?: Partial<ViteReactSSGOptions>, viteConfig?: InlineConfig): Promise<void>;
|
|
8
|
+
|
|
9
|
+
declare function dev(ssgOptions?: Partial<ViteReactSSGOptions>, viteConfig?: InlineConfig): Promise<void>;
|
|
10
|
+
|
|
11
|
+
export { build, dev };
|
package/dist/node.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { InlineConfig } from 'vite';
|
|
2
|
+
import { V as ViteReactSSGOptions } from './shared/vite-react-ssg.d5f23f74.mjs';
|
|
3
|
+
import 'critters';
|
|
4
|
+
import 'react';
|
|
5
|
+
import 'react-router-dom';
|
|
6
|
+
|
|
7
|
+
declare function build(ssgOptions?: Partial<ViteReactSSGOptions>, viteConfig?: InlineConfig): Promise<void>;
|
|
8
|
+
|
|
9
|
+
declare function dev(ssgOptions?: Partial<ViteReactSSGOptions>, viteConfig?: InlineConfig): Promise<void>;
|
|
10
|
+
|
|
11
|
+
export { build, dev };
|
package/dist/node.d.ts
CHANGED