tailwindcss-rails 2.2.0-x86_64-darwin → 2.3.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +24 -1
- data/exe/x86_64-darwin/tailwindcss +0 -0
- data/lib/generators/tailwindcss/controller/controller_generator.rb +2 -1
- data/lib/generators/tailwindcss/mailer/mailer_generator.rb +2 -1
- data/lib/generators/tailwindcss/mailer/templates/layout.html.erb.tt +13 -0
- data/lib/generators/tailwindcss/mailer/templates/layout.text.erb.tt +1 -0
- data/lib/generators/tailwindcss/scaffold/scaffold_generator.rb +2 -1
- data/lib/generators/tailwindcss/scaffold/templates/_form.html.erb.tt +1 -1
- data/lib/tailwindcss/commands.rb +9 -4
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 176fd98bf19af0331bf8a3b8eddb84437761c4de6658a3b08c4f57efe489cce5
|
4
|
+
data.tar.gz: 20e767c151cb2f5f052728450e149399f2dd81c0cca6083e75c7c0ec36973558
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa09d48bed7005b02bb08e09b43d55710f0d4bff5392e219898f3aa19390d8f529d144d11a00b8a2a97d056bb99a580882af7e66980fcfeeed0e5114ddbc45a8
|
7
|
+
data.tar.gz: ff7f977d5845c48c5665817ef101436ee9508b0fb1e974bc4e777c3f24eb493f03a4df95de57ecb22dbc4973a88dba0a18ef6b8036b92167358d40f3360e9d8e
|
data/README.md
CHANGED
@@ -38,7 +38,6 @@ This also works with relative paths. If you've installed into your app's directo
|
|
38
38
|
TAILWINDCSS_INSTALL_DIR=node_modules/.bin
|
39
39
|
```
|
40
40
|
|
41
|
-
|
42
41
|
## Developing with Tailwindcss
|
43
42
|
|
44
43
|
### Configuration
|
@@ -100,6 +99,24 @@ If you want unminified assets, you can pass a `debug` argument to the rake task,
|
|
100
99
|
Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
|
101
100
|
|
102
101
|
|
102
|
+
### Using with PostCSS
|
103
|
+
|
104
|
+
If you want to use PostCSS as a preprocessor, create a custom `config/postcss.config.js` and it will be loaded automatically.
|
105
|
+
|
106
|
+
For example, to enable nesting:
|
107
|
+
|
108
|
+
```js
|
109
|
+
// config/postcss.config.js
|
110
|
+
module.exports = {
|
111
|
+
plugins: {
|
112
|
+
'postcss-import': {},
|
113
|
+
'tailwindcss/nesting': {},
|
114
|
+
tailwindcss: {},
|
115
|
+
autoprefixer: {},
|
116
|
+
},
|
117
|
+
}
|
118
|
+
```
|
119
|
+
|
103
120
|
### Custom inputs or outputs
|
104
121
|
|
105
122
|
If you need to use a custom input or output file, you can run `bundle exec tailwindcss` to access the platform-specific executable, and give it your own build options.
|
@@ -192,6 +209,12 @@ The inline version also works:
|
|
192
209
|
<section class="bg-[url('image.svg')]">Has the image as it's background</section>
|
193
210
|
```
|
194
211
|
|
212
|
+
### Conflict with pre-existing asset pipeline stylesheets
|
213
|
+
|
214
|
+
If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you incorrectly double-process `application.tailwind.css`. This is a misconfiguration, even though the styles will be fully effective in many cases. The file `application.tailwind.css` is installed when running `rails tailwindcss:install` and is placed alongside the common `application.css` in `app/assets/stylesheets`. Because the `application.css` in a newly generated Rails app includes a `require_tree .` directive, the asset pipeline incorrectly processes `application.tailwind.css`, where it should be taken care of by `tailwindcss`. The asset pipeline ignores TailwindCSS's at-directives, and the browser can't process them.
|
215
|
+
|
216
|
+
To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes. Else, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
|
217
|
+
|
195
218
|
## License
|
196
219
|
|
197
220
|
Tailwind for Rails is released under the [MIT License](https://opensource.org/licenses/MIT).
|
Binary file
|
@@ -3,7 +3,8 @@ require "rails/generators/erb/controller/controller_generator"
|
|
3
3
|
module Tailwindcss
|
4
4
|
module Generators
|
5
5
|
class ControllerGenerator < Erb::Generators::ControllerGenerator
|
6
|
-
source_root File.expand_path("
|
6
|
+
source_root File.expand_path("templates", __dir__)
|
7
|
+
source_paths << "lib/templates/erb/controller"
|
7
8
|
end
|
8
9
|
end
|
9
10
|
end
|
@@ -3,7 +3,8 @@ require "rails/generators/erb/mailer/mailer_generator"
|
|
3
3
|
module Tailwindcss
|
4
4
|
module Generators
|
5
5
|
class MailerGenerator < Erb::Generators::MailerGenerator
|
6
|
-
source_root File.expand_path("
|
6
|
+
source_root File.expand_path("templates", __dir__)
|
7
|
+
source_paths << "lib/templates/erb/mailer"
|
7
8
|
end
|
8
9
|
end
|
9
10
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<%%= yield %>
|
@@ -6,7 +6,8 @@ module Tailwindcss
|
|
6
6
|
class ScaffoldGenerator < Erb::Generators::ScaffoldGenerator
|
7
7
|
include Rails::Generators::ResourceHelpers
|
8
8
|
|
9
|
-
source_root File.expand_path("
|
9
|
+
source_root File.expand_path("templates", __dir__)
|
10
|
+
source_paths << "lib/templates/erb/scaffold"
|
10
11
|
|
11
12
|
argument :attributes, type: :array, default: [], banner: "field:type field:type"
|
12
13
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<div class="my-5">
|
16
16
|
<% if attribute.password_digest? -%>
|
17
17
|
<%%= form.label :password %>
|
18
|
-
<%%= form.password_field :password %>
|
18
|
+
<%%= form.password_field :password, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
|
19
19
|
</div>
|
20
20
|
|
21
21
|
<div class="my-5">
|
data/lib/tailwindcss/commands.rb
CHANGED
@@ -74,14 +74,19 @@ module Tailwindcss
|
|
74
74
|
end
|
75
75
|
|
76
76
|
def compile_command(debug: false, **kwargs)
|
77
|
-
[
|
77
|
+
command = [
|
78
78
|
executable(**kwargs),
|
79
79
|
"-i", Rails.root.join("app/assets/stylesheets/application.tailwind.css").to_s,
|
80
80
|
"-o", Rails.root.join("app/assets/builds/tailwind.css").to_s,
|
81
81
|
"-c", Rails.root.join("config/tailwind.config.js").to_s,
|
82
|
-
]
|
83
|
-
|
84
|
-
|
82
|
+
]
|
83
|
+
|
84
|
+
command << "--minify" unless (debug || rails_css_compressor?)
|
85
|
+
|
86
|
+
postcss_path = Rails.root.join("config/postcss.config.js")
|
87
|
+
command += ["--postcss", postcss_path.to_s] if File.exist?(postcss_path)
|
88
|
+
|
89
|
+
command
|
85
90
|
end
|
86
91
|
|
87
92
|
def watch_command(always: false, poll: false, **kwargs)
|
data/lib/tailwindcss/upstream.rb
CHANGED
data/lib/tailwindcss/version.rb
CHANGED
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.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -58,6 +58,8 @@ files:
|
|
58
58
|
- lib/generators/tailwindcss/controller/controller_generator.rb
|
59
59
|
- lib/generators/tailwindcss/controller/templates/view.html.erb.tt
|
60
60
|
- lib/generators/tailwindcss/mailer/mailer_generator.rb
|
61
|
+
- lib/generators/tailwindcss/mailer/templates/layout.html.erb.tt
|
62
|
+
- lib/generators/tailwindcss/mailer/templates/layout.text.erb.tt
|
61
63
|
- lib/generators/tailwindcss/mailer/templates/view.html.erb.tt
|
62
64
|
- lib/generators/tailwindcss/mailer/templates/view.text.erb.tt
|
63
65
|
- lib/generators/tailwindcss/scaffold/scaffold_generator.rb
|