@m00rl0ck/simple-builder 1.1.3 β†’ 1.1.4

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 +141 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,141 @@
1
+ # ⚑ Simple Builder
2
+
3
+ > Zero-deps JavaScript bundler. Fast, minimal, under your control.
4
+
5
+ ---
6
+
7
+ ## πŸ€” Why?
8
+
9
+ Modern tools like Webpack and Vite are powerful… but often **overkill**.
10
+
11
+ * Too many dependencies
12
+ * Hard to understand what’s going on
13
+ * Configs become a mess
14
+
15
+ **Simple Builder** exists for one reason:
16
+
17
+ > Give you a bundler you actually understand.
18
+
19
+ ---
20
+
21
+ ## πŸš€ Features
22
+
23
+ * ⚑ Zero dependencies
24
+ * πŸ“¦ ES Modules support
25
+ * πŸ”₯ Super fast builds
26
+ * 🧠 Simple and predictable behavior
27
+ * πŸͺΆ Lightweight (no bloat)
28
+
29
+ ---
30
+
31
+ ## πŸ“¦ Installation
32
+
33
+ ```bash
34
+ npm install simple-builder
35
+ ```
36
+
37
+ ---
38
+
39
+ ## βš™οΈ Usage
40
+
41
+ ```bash
42
+ simple-builder build
43
+ ```
44
+
45
+ Or with config:
46
+
47
+ ```js
48
+ import { build } from 'simple-builder';
49
+
50
+ build({
51
+ entry: './src/app.js',
52
+ output: './dist/bundle.js'
53
+ });
54
+ ```
55
+
56
+ ---
57
+
58
+ ## 🧩 Example
59
+
60
+ ```js
61
+ // app.js
62
+ import { hello } from './hello.js';
63
+
64
+ hello();
65
+ ```
66
+
67
+ πŸ‘‰ Run build β†’ get a single bundled file.
68
+
69
+ ---
70
+
71
+ ## 😎 Why choose Simple Builder?
72
+
73
+ | Feature | Simple Builder | Webpack | Vite |
74
+ | ------------------ | -------------- | ------- | ---- |
75
+ | Zero deps | βœ… | ❌ | ❌ |
76
+ | Easy to understand | βœ… | ❌ | ⚠️ |
77
+ | Minimal config | βœ… | ❌ | βœ… |
78
+ | Full control | βœ… | ⚠️ | ⚠️ |
79
+
80
+ ---
81
+
82
+ ## πŸ’‘ Philosophy
83
+
84
+ * No magic
85
+ * No hidden behavior
86
+ * Just JavaScript
87
+
88
+ ---
89
+
90
+ ## πŸ”₯ Pro Version
91
+
92
+ Want more power?
93
+
94
+ ### πŸ‘‰ Simple Builder Pro includes:
95
+
96
+ * πŸ‘€ Watch mode
97
+ * ⚑ Advanced caching
98
+ * πŸ”Œ Plugin system
99
+ * πŸ—œ Built-in minifier
100
+ * πŸš€ Production optimizations
101
+
102
+ ---
103
+
104
+ ## πŸ’³ Get Pro
105
+
106
+ Unlock all features and speed up your workflow:
107
+
108
+ πŸ‘‰ Get access to Pro version
109
+
110
+ (coming soon)
111
+
112
+ ---
113
+
114
+ ## πŸ›£ Roadmap
115
+
116
+ * [ ] Watch mode
117
+ * [ ] Plugin API
118
+ * [ ] Minifier
119
+ * [ ] Dev server improvements
120
+
121
+ ---
122
+
123
+ ## 🀝 Contributing
124
+
125
+ PRs are welcome. Keep it simple.
126
+
127
+ ---
128
+
129
+ ## ⭐ Support
130
+
131
+ If you like this project:
132
+
133
+ * Star the repo
134
+ * Share it
135
+ * Use it in your projects
136
+
137
+ ---
138
+
139
+ ## 🧠 Final thought
140
+
141
+ > Tools should work for you, not the other way around.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m00rl0ck/simple-builder",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Zero-dependency JS and CSS bundler with dev server and minifier",
5
5
  "changelog": {
6
6
  "1.1.1": "Fix: small bugs",