@tmbr/bundler 1.9.1 → 1.9.2
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ A configurable JavaScript and CSS bundler built on [esbuild](https://esbuild.git
|
|
|
4
4
|
|
|
5
5
|
**Why [esbuild](https://esbuild.github.io)?**
|
|
6
6
|
|
|
7
|
-
Compared to the mess of webpack loaders and dependencies, esbuild is
|
|
7
|
+
Compared to the mess of webpack loaders and dependencies, esbuild is faster, has better documentation and zero dependencies by default. It was created by Evan Wallace, who built this amazing [WebGL demo](https://madebyevan.com/webgl-water) ... and yeah, and co-founded [Figma](https://www.figma.com/)!
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -14,8 +14,8 @@ npm install @tmbr/bundler --save-dev
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
`@tmbr/bundler` has two commands - `build` and `watch` - that both create concurrent builds:
|
|
17
|
-
- development version with sourcemaps
|
|
18
|
-
- minified production version
|
|
17
|
+
- `build/main.dev.[css|js]` development version with sourcemaps
|
|
18
|
+
- `build/main.min.[css|js]` minified production version
|
|
19
19
|
|
|
20
20
|
### ``tmbr-bundler build``
|
|
21
21
|
### ``tmbr-bundler watch``
|