tailwindcss-rails 2.2.1-x64-mingw32 → 2.3.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -1
- data/lib/generators/tailwindcss/controller/controller_generator.rb +2 -1
- data/lib/generators/tailwindcss/mailer/mailer_generator.rb +2 -1
- data/lib/generators/tailwindcss/scaffold/scaffold_generator.rb +2 -1
- data/lib/tailwindcss/commands.rb +9 -4
- data/lib/tailwindcss/version.rb +1 -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: 43f553bf05ef1f9cb0d69f857457e6245b65607864b0afd77eeaeeb826eeb2da
|
4
|
+
data.tar.gz: 30cc6e4163811d207c7f22cb197fe228aa2cea4f2971ec6abeea1db465e8a545
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c28a6d40da914ca6d8dfb25d0efe2cd84a4eb8dd772494caa17db9046caffe0227307c75bd9132198d876edcef24b6a745ffceeb78bb963c68a14295feea743
|
7
|
+
data.tar.gz: 5af03d89a3aa133f135e6b3d7f48b7f75f5e6b069b3caa3f668529ff7a3bb7af3d9d2bc5617f00dbb77906a377975b8aa363a0be0a8152234d2eb22221b0ec80
|
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.
|
@@ -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
|
@@ -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
|
|
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/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: x64-mingw32
|
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
|