@coherent.js/build-tools 1.0.0-beta.3 → 1.0.0-beta.6
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 +16 -0
- package/package.json +2 -1
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.
|
|
3
|
+
"version": "1.0.0-beta.6",
|
|
4
4
|
"description": "Build tools and bundler integrations for Coherent.js (Vite, Webpack, Rollup)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"access": "public",
|
|
57
57
|
"registry": "https://registry.npmjs.org/"
|
|
58
58
|
},
|
|
59
|
+
"sideEffects": false,
|
|
59
60
|
"scripts": {
|
|
60
61
|
"build": "node build.mjs",
|
|
61
62
|
"test": "vitest"
|