@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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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 significantly 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)! ... oh yeah, and he also co-founded [Figma](https://www.figma.com/).
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``
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmbr/bundler",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "repository": "github:TMBR/tmbr-bundler",
5
5
  "bin": {
6
6
  "bundler": "cli.js",