@codygo-ai/vite-tools 0.1.0 → 0.2.0-alpha
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/.turbo/turbo-build.log +6 -6
- package/README.md +43 -0
- package/package.json +2 -2
- package/release-notes.md +4 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @codygo-ai/vite-tools@0.
|
|
2
|
+
> @codygo-ai/vite-tools@0.2.0-alpha build /home/runner/work/tooling/tooling/packages/vite/vite-tools
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[32m3.31 KB[39m
|
|
14
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m6.65 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in 17ms
|
|
16
13
|
[32mCJS[39m [1mdist/index.cjs [22m[32m4.52 KB[39m
|
|
17
14
|
[32mCJS[39m [1mdist/index.cjs.map [22m[32m6.78 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 14ms
|
|
16
|
+
[32mESM[39m [1mdist/index.js [22m[32m3.31 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m6.65 KB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 16ms
|
|
19
19
|
[34mDTS[39m Build start
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 863ms
|
|
21
21
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m219.00 B[39m
|
|
22
22
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m219.00 B[39m
|
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @codygo-ai/vite-tools
|
|
2
|
+
|
|
3
|
+
Vite utilities and tools for CodyGo AI projects.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install --save-dev @codygo-ai/vite-tools
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Requirements
|
|
12
|
+
|
|
13
|
+
- Vite 5.x or 6.x
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { /* utilities */ } from '@codygo-ai/vite-tools';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Development
|
|
22
|
+
|
|
23
|
+
### Build
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm run build
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Lint
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run lint
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Type Check
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm run typecheck
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codygo-ai/vite-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-alpha",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"tsup": "^8.0.0",
|
|
21
21
|
"typescript": "^5.7.2",
|
|
22
22
|
"vite": "^6.0.5",
|
|
23
|
-
"@codygo-ai/eslint-config-base": "^0.
|
|
23
|
+
"@codygo-ai/eslint-config-base": "^0.2.0-alpha",
|
|
24
24
|
"@codygo-ai/tsconfig": "^0.1.8"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
package/release-notes.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
## Initial alpha release
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-
|
|
6
|
-
- No functional changes from alpha version
|
|
3
|
+
- Add comprehensive README with installation, usage, and development instructions
|
|
4
|
+
- Document Vite 5.x and 6.x peer dependency requirements
|
|
5
|
+
- Include build, lint, and typecheck workflow documentation
|