@coherent.js/build-tools 1.0.0-beta.2 → 1.0.0-beta.5

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +6 -8
package/README.md CHANGED
@@ -14,6 +14,22 @@ Build tool integrations for Coherent.js, providing seamless integration with pop
14
14
  npm install @coherent.js/build-tools
15
15
  ```
16
16
 
17
+
18
+ ## Exports
19
+
20
+ Build and development tools
21
+
22
+ ### Modular Imports (Tree-Shakable)
23
+
24
+ - Build utilities: `@coherent.js/build-tools`
25
+
26
+ ### Example Usage
27
+
28
+ ```javascript
29
+ import { buildProject } from '@coherent.js/build-tools';
30
+ ```
31
+
32
+ > **Note**: All exports are tree-shakable. Import only what you need for optimal bundle size.
17
33
  ## Usage
18
34
 
19
35
  ### Vite Integration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coherent.js/build-tools",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Build tools and bundler integrations for Coherent.js (Vite, Webpack, Rollup)",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -29,16 +29,13 @@
29
29
  ],
30
30
  "author": "Coherent.js Team",
31
31
  "license": "MIT",
32
- "dependencies": {
33
- "@coherent.js/core": "1.0.0-beta.2"
34
- },
35
32
  "devDependencies": {
36
- "vitest": "^3.2.4"
33
+ "vitest": "^4.0.8"
37
34
  },
38
35
  "peerDependencies": {
39
- "vite": "^5.0.0",
40
- "webpack": "^5.0.0",
41
- "rollup": "^4.0.0"
36
+ "vite": "^7.2.2",
37
+ "webpack": "^5.102.1",
38
+ "rollup": "^4.53.2"
42
39
  },
43
40
  "peerDependenciesMeta": {
44
41
  "vite": {
@@ -59,6 +56,7 @@
59
56
  "access": "public",
60
57
  "registry": "https://registry.npmjs.org/"
61
58
  },
59
+ "sideEffects": false,
62
60
  "scripts": {
63
61
  "build": "node build.mjs",
64
62
  "test": "vitest"