aerobuilt 0.2.10 → 0.3.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/dist/client.d.mts +3 -0
- package/dist/client.mjs +1 -0
- package/dist/config.d.mts +2 -0
- package/dist/config.mjs +1 -0
- package/dist/content.d.mts +2 -0
- package/dist/content.mjs +1 -0
- package/dist/vite.d.mts +2 -0
- package/dist/vite.mjs +1 -0
- package/package.json +14 -14
- package/dist/client.d.ts +0 -5
- package/dist/client.js +0 -1
- package/dist/config.d.ts +0 -1
- package/dist/config.js +0 -1
- package/dist/content.d.ts +0 -1
- package/dist/content.js +0 -1
- package/dist/vite.d.ts +0 -1
- package/dist/vite.js +0 -1
package/dist/client.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import e from"@aerobuilt/core";export{e as default};
|
package/dist/config.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{createViteConfig as e,defineConfig as t,getDefaultOptions as n}from"@aerobuilt/config";export{e as createViteConfig,t as defineConfig,n as getDefaultOptions};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { ContentCollectionConfig, ContentConfig, ContentDocument, ContentMeta, defineCollection, defineConfig, render } from "@aerobuilt/content";
|
|
2
|
+
export { type ContentCollectionConfig, type ContentConfig, type ContentDocument, type ContentMeta, defineCollection, defineConfig, render };
|
package/dist/content.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{defineCollection as e,defineConfig as t,render as n}from"@aerobuilt/content";export{e as defineCollection,t as defineConfig,n as render};
|
package/dist/vite.d.mts
ADDED
package/dist/vite.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{aero as e}from"@aerobuilt/core/vite";export{e as aero};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aerobuilt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jamie Wilson",
|
|
@@ -15,32 +15,32 @@
|
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"types": "./dist/client.d.
|
|
19
|
-
"default": "./dist/client.
|
|
18
|
+
"types": "./dist/client.d.mts",
|
|
19
|
+
"default": "./dist/client.mjs"
|
|
20
20
|
},
|
|
21
21
|
"./config": {
|
|
22
|
-
"types": "./dist/config.d.
|
|
23
|
-
"default": "./dist/config.
|
|
22
|
+
"types": "./dist/config.d.mts",
|
|
23
|
+
"default": "./dist/config.mjs"
|
|
24
24
|
},
|
|
25
25
|
"./content": {
|
|
26
|
-
"types": "./dist/content.d.
|
|
27
|
-
"default": "./dist/content.
|
|
26
|
+
"types": "./dist/content.d.mts",
|
|
27
|
+
"default": "./dist/content.mjs"
|
|
28
28
|
},
|
|
29
29
|
"./vite": {
|
|
30
|
-
"types": "./dist/vite.d.
|
|
31
|
-
"default": "./dist/vite.
|
|
30
|
+
"types": "./dist/vite.d.mts",
|
|
31
|
+
"default": "./dist/vite.mjs"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@aerobuilt/core": "0.
|
|
36
|
-
"@aerobuilt/config": "0.
|
|
37
|
-
"@aerobuilt/content": "0.
|
|
35
|
+
"@aerobuilt/core": "0.3.0",
|
|
36
|
+
"@aerobuilt/config": "0.3.0",
|
|
37
|
+
"@aerobuilt/content": "0.3.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"
|
|
40
|
+
"tsdown": "^0.21.0-beta.2",
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
|
-
"build": "
|
|
44
|
+
"build": "tsdown src/client.ts src/config.ts src/content.ts src/vite.ts --format esm --dts --clean --out-dir dist --minify"
|
|
45
45
|
}
|
|
46
46
|
}
|
package/dist/client.d.ts
DELETED
package/dist/client.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{default as e}from"@aerobuilt/core";export{e as default};
|
package/dist/config.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { AeroConfig, AeroConfigFunction, AeroUserConfig, createViteConfig, defineConfig, getDefaultOptions } from '@aerobuilt/config';
|
package/dist/config.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{defineConfig as i,createViteConfig as f,getDefaultOptions as n}from"@aerobuilt/config";export{f as createViteConfig,i as defineConfig,n as getDefaultOptions};
|
package/dist/content.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ContentCollectionConfig, ContentConfig, ContentDocument, ContentMeta, defineCollection, defineConfig, render } from '@aerobuilt/content';
|
package/dist/content.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{defineCollection as o,defineConfig as t,render as C}from"@aerobuilt/content";export{o as defineCollection,t as defineConfig,C as render};
|
package/dist/vite.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { aero } from '@aerobuilt/core/vite';
|
package/dist/vite.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{aero as e}from"@aerobuilt/core/vite";export{e as aero};
|