tailwindcss-rails 2.0.27-aarch64-linux → 2.0.29-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/exe/aarch64-linux/tailwindcss +0 -0
- data/lib/tailwindcss/commands.rb +2 -1
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- data/lib/tasks/build.rake +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bde86c8c7fa3d2d07d440fd86c25de75d8d3b210d4794d2942248514c3dee21d
|
4
|
+
data.tar.gz: aac1a74fbb044dd190006b3e3be3e514a1b4908c22472eaff0a575d3176f1625
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c123dbf0dadd335202229f2dae7621ed75ffa9c82e86ad33d225d7b303de0299fceca48d6d39877433041bd352ec05fe30dc249aab06f3d951a204201fcca66c
|
7
|
+
data.tar.gz: bbb91407e0e59aeaa41e91b9fa46cc4fec1f66af4feb66a80e0a5f3588865e476ba7cba93d44177498febe0721f90f9310f32a2c964d9fa2dd620dd7e2f994d2
|
data/README.md
CHANGED
@@ -70,9 +70,11 @@ While you're developing your application, you want to run Tailwind in "watch" mo
|
|
70
70
|
- running `rails tailwindcss:watch` as a separate process,
|
71
71
|
- or by running `./bin/dev` which uses [foreman](https://github.com/ddollar/foreman) to start both the Tailwind watch process and the rails server in development mode.
|
72
72
|
|
73
|
+
If you are running `rails tailwindcss:watch` on a system that doesn't fully support file system events, pass a `poll` argument to the task to instruct tailwindcss to instead use polling: `rails tailwindcss:watch[poll]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
|
74
|
+
|
73
75
|
If you are running `rails tailwindcss:watch` as a process in a Docker container, set `tty: true` in `docker-compose.yml` for the appropriate container to keep the watch process running.
|
74
76
|
|
75
|
-
If you are running `rails tailwindcss:watch`
|
77
|
+
If you are running `rails tailwindcss:watch` in a docker container without a tty, pass the `always` argument to the task to instruct tailwindcss to keep the watcher alive even when `stdin` is closed: `rails tailwindcss:watch[always]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
|
76
78
|
|
77
79
|
|
78
80
|
### Debugging with unminified assets
|
Binary file
|
data/lib/tailwindcss/commands.rb
CHANGED
@@ -83,9 +83,10 @@ module Tailwindcss
|
|
83
83
|
end
|
84
84
|
end
|
85
85
|
|
86
|
-
def watch_command(poll: false, **kwargs)
|
86
|
+
def watch_command(always: false, poll: false, **kwargs)
|
87
87
|
compile_command(**kwargs).tap do |command|
|
88
88
|
command << "-w"
|
89
|
+
command << "always" if always
|
89
90
|
command << "-p" if poll
|
90
91
|
end
|
91
92
|
end
|
data/lib/tailwindcss/upstream.rb
CHANGED
data/lib/tailwindcss/version.rb
CHANGED
data/lib/tasks/build.rake
CHANGED
@@ -11,7 +11,8 @@ namespace :tailwindcss do
|
|
11
11
|
task watch: :environment do |_, args|
|
12
12
|
debug = args.extras.include?("debug")
|
13
13
|
poll = args.extras.include?("poll")
|
14
|
-
|
14
|
+
always = args.extras.include?("always")
|
15
|
+
command = Tailwindcss::Commands.watch_command(always: always, debug: debug, poll: poll)
|
15
16
|
puts command.inspect if args.extras.include?("verbose")
|
16
17
|
system(*command)
|
17
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tailwindcss-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.29
|
5
5
|
platform: aarch64-linux
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|