@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @codygo-ai/vite-tools@0.1.0 build /home/runner/work/tooling/tooling/packages/vite/vite-tools
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
  CLI Building entry: src/index.ts
@@ -10,13 +10,13 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/index.js 3.31 KB
14
- ESM dist/index.js.map 6.65 KB
15
- ESM ⚡️ Build success in 17ms
16
13
  CJS dist/index.cjs 4.52 KB
17
14
  CJS dist/index.cjs.map 6.78 KB
18
- CJS ⚡️ Build success in 18ms
15
+ CJS ⚡️ Build success in 14ms
16
+ ESM dist/index.js 3.31 KB
17
+ ESM dist/index.js.map 6.65 KB
18
+ ESM ⚡️ Build success in 16ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 851ms
20
+ DTS ⚡️ Build success in 863ms
21
21
  DTS dist/index.d.ts 219.00 B
22
22
  DTS dist/index.d.cts 219.00 B
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.1.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.1.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
- Since there are no commits or changes specific to the vite-tools package since v0.1.0-alpha, this appears to be a version bump from alpha to stable.
1
+ ## Initial alpha release
2
2
 
3
- ## Initial stable release
4
-
5
- - Promoted from v0.1.0-alpha to v0.1.0 stable
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