tailwindcss-rails 2.0.27-aarch64-linux → 2.0.28-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21c90ae6d45c8d419c2cb99a6dbccf72fa856799b1cb76c7008bb8dd17038eae
4
- data.tar.gz: b06322f8c754deedc09865d50f458d8a06400a94152c94803abbeeaba7c4123d
3
+ metadata.gz: c88522e32a076ca9bccff6a79af62499c58485445aaae88fc3a61fcf5a78e71c
4
+ data.tar.gz: ac9aa9ba3bbc2ed1190517cb288657040908ea03a0bdd52fdae5c65c0ba1ee1b
5
5
  SHA512:
6
- metadata.gz: 6b7039794482f9dea93e627419e7ea80ed27b1966c852c376414da8a8af062c6f148a6bbd82f0551dc3e1e35f463ece023fabc12c8053ceed84292a624cb9d3d
7
- data.tar.gz: 9c6d44ab39270d870f9626160b4c3fa989a662cc14fcc5a4e2ac2a2ad465f5da4dba75c5ffb7b9a30ed015a33a2b4c559f9905d0ddbeb559e9c79844fdd76b56
6
+ metadata.gz: a57daedd8e9511ba249ab66ed96dd09e3d51e63ee6f8b0575a7d32932103d6b8843b62020f36948877865bab3862ee9ae564158997dd847dca7e4df06d813b21
7
+ data.tar.gz: c833a10e48fa43dbe1caf787f8146e84f02767a93ea1a8ea0b503a6453c13b2adf72d800c7e4c9db479276c3a0c831c46fcf7d23956fe7c546520e372d3fd58d
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` 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`.
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.27"
2
+ VERSION = "2.0.28"
3
3
  end
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
- command = Tailwindcss::Commands.watch_command(debug: debug, poll: poll)
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.27
4
+ version: 2.0.28
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-02 00:00:00.000000000 Z
11
+ date: 2023-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties