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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af9d8cfb9a1c9760525e72775ee8ad25d2a281b5b35574a16e42518bc91117dd
4
- data.tar.gz: de954cd7b5d7d263e78c59165aac8e825ac6fef69eee807dad59c6379957b94e
3
+ metadata.gz: e2b5665f5018375fc360949d1a468208ca63a9703421471b19ed3c952cf588d0
4
+ data.tar.gz: c59001d5605a1e65303e08915254ed6ab2d59a54fad460856939efb44209107a
5
5
  SHA512:
6
- metadata.gz: 33f20c3b906cb29b8a663b396cb1794e08f3775364f4d54573bdd75f1d5acde298df054c1a2d894008657018dff00b521c7b12c37e532737be038d77e768da55
7
- data.tar.gz: ad0264ca27cc57d871d7b38a6bdab12a96ab72674b543503b24fdafe4cc949b26e490e6608e6aebb4313c45363aea082b34f9ffc4d44d6e7785787822f25ac6d
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
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ load File.expand_path('bun_bun_bundle', __dir__)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BunBunBundle
4
- VERSION = '0.3.1'
4
+ VERSION = '0.3.2'
5
5
  end
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.1
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