bun_bun_bundle 0.3.1 → 0.3.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.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/exe/bbb +4 -0
- data/lib/bun_bun_bundle/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2b5665f5018375fc360949d1a468208ca63a9703421471b19ed3c952cf588d0
|
|
4
|
+
data.tar.gz: c59001d5605a1e65303e08915254ed6ab2d59a54fad460856939efb44209107a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 995ffb9ba1c45d7181df18165906aa71a8545fd5c30bcb1939da7a967e81e91263122826fa4d2e427a10407e155905c23bbaed641739b13f50301a159fcae28d
|
|
7
|
+
data.tar.gz: 5ed158041bcff104d79f18660f0de467e466fc5f4f2dc78df00044cc5fdcf3a5dba357edc2e830ab9f2969ab7ad4ff1c9ebb6ae01294863fcbe84c4f54089bf4
|
data/README.md
CHANGED
|
@@ -174,7 +174,8 @@ All tag helpers accept additional HTML attributes:
|
|
|
174
174
|
|
|
175
175
|
## CLI
|
|
176
176
|
|
|
177
|
-
Build your assets using the bundled CLI
|
|
177
|
+
Build your assets using the bundled CLI (`bbb` is available as a shorter
|
|
178
|
+
alias):
|
|
178
179
|
|
|
179
180
|
```sh
|
|
180
181
|
# Development: builds, watches, and starts the live reload server
|
|
@@ -187,6 +188,10 @@ bun_bun_bundle build
|
|
|
187
188
|
bun_bun_bundle dev --prod
|
|
188
189
|
```
|
|
189
190
|
|
|
191
|
+
> [!NOTE]
|
|
192
|
+
> When running from a Procfile (e.g. with Overmind or Foreman), use
|
|
193
|
+
> `bundle exec bun_bun_bundle` to ensure the correct gem version is loaded.
|
|
194
|
+
|
|
190
195
|
## Configuration
|
|
191
196
|
|
|
192
197
|
Place a `config/bun.json` in your project root:
|
data/exe/bbb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bun_bun_bundle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wout Fierens
|
|
@@ -27,12 +27,14 @@ description: Zero-dependency asset bundler with CSS hot-reloading, fingerprintin
|
|
|
27
27
|
live reload, and a flexible plugin system. Works with Rails, Hanami, or any Rack
|
|
28
28
|
app.
|
|
29
29
|
executables:
|
|
30
|
+
- bbb
|
|
30
31
|
- bun_bun_bundle
|
|
31
32
|
extensions: []
|
|
32
33
|
extra_rdoc_files: []
|
|
33
34
|
files:
|
|
34
35
|
- LICENSE
|
|
35
36
|
- README.md
|
|
37
|
+
- exe/bbb
|
|
36
38
|
- exe/bun_bun_bundle
|
|
37
39
|
- lib/bun/bake.js
|
|
38
40
|
- lib/bun/bun_bundle.js
|