tailwindcss-rails 4.0.0.rc2 → 4.0.0.rc3

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: 25b499cfb3a5bb8ff72c083b3db9b55f805841e72f4c7d70822f43ad549841f1
4
- data.tar.gz: ce5a7fec5aebe849b5ec925e26314a2d49757457447f4abdce46a05a3d00f4c9
3
+ metadata.gz: 9132c959c2d738315776b226dc5fe8292972e0e6a344e8d3f7c9294465910998
4
+ data.tar.gz: dd76376002a3a4ab5051b4affc63f57f0094fe3a95984d7b3c0ea3cd58f8161a
5
5
  SHA512:
6
- metadata.gz: aa8f794bbd71a24f565fe426d92195568421ce59f2c3d025e3efec7ff6e9b809a040639db693de0945fa717e559ace7c26ffef61f321524cf27000ad1fb6192d
7
- data.tar.gz: 7202ece89941519c53a56cb4c276abfac516f59f9baada3212283b499dd51432747ee9fb2a1e95416f7bb671da70d95a7b609a734e4ae34d3f9479e6027df3a6
6
+ metadata.gz: 8de6d29182f7a5599944c65e6d2e86bc22fe8ebc3fa55a6eb7a2b6f71d5450a9349458c86343a6a47d184b96251acc2d1c078fd99890bfe74f32cbb3b9b5db8f
7
+ data.tar.gz: 6317cc4ea1fc599657af5cfee72ef1c04dd8a5caa8e6dd10a2e0c52b3ba6ce634dae5058abc86cfd2d4daa74677ebb020fc385d3b46a99007198b9343259f8bc
data/README.md CHANGED
@@ -12,7 +12,6 @@
12
12
  - [Upgrading your application from Tailwind v3 to v4](#upgrading-your-application-from-tailwind-v3-to-v4)
13
13
  * [You don't _have_ to upgrade](#you-dont-_have_-to-upgrade)
14
14
  * [Upgrade steps](#upgrade-steps)
15
- * [Plugins](#plugins)
16
15
  * [Troubleshooting](#troubleshooting)
17
16
  - [Developing with Tailwindcss](#developing-with-tailwindcss)
18
17
  * [Configuration and commands](#configuration-and-commands)
@@ -152,13 +151,6 @@ Done in 56ms
152
151
  If this doesn't succeed, it's likely that you've customized your Tailwind configuration and you'll need to do some work to make sure your application upgrades. Please read the [official upgrade guide](https://tailwindcss.com/docs/upgrade-guide)!
153
152
 
154
153
 
155
- ### Plugins
156
-
157
- In Tailwind CLI v3, some Tailwind plugins were included by default in the CLI tool. However, in v4 these default plugins have been removed.
158
-
159
- In order to use any plugins with v4, either by declaring them in your (optional) config file or using the [`@plugin` directive](https://tailwindcss.com/docs/functions-and-directives#plugin-directive), it's necessary to install them using a local javascript package manager.
160
-
161
-
162
154
  ### Troubleshooting
163
155
 
164
156
  You may want to check out [TailwindCSS v4 - upgrade experience report · rails/tailwindcss-rails · Discussion #450](https://github.com/rails/tailwindcss-rails/discussions/450) if you're having trouble upgrading.
@@ -6,7 +6,7 @@ module Tailwindcss
6
6
  Rails.application.config.generators.stylesheets = false
7
7
  end
8
8
 
9
- initializer "tailwindcss.exclude_asset_path", after: "propshaft.append_assets_path" do
9
+ initializer "tailwindcss.exclude_asset_path", before: "propshaft.append_assets_path" do
10
10
  if Rails.application.config.assets.excluded_paths # the app may not be using Propshaft
11
11
  Rails.application.config.assets.excluded_paths << Rails.root.join("app/assets/tailwind")
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "4.0.0.rc2"
2
+ VERSION = "4.0.0.rc3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.rc2
4
+ version: 4.0.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-26 00:00:00.000000000 Z
10
+ date: 2025-01-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties
@@ -45,22 +45,6 @@ files:
45
45
  - MIT-LICENSE
46
46
  - README.md
47
47
  - Rakefile
48
- - app/assets/fonts/Inter-italic.alternates.var.woff2
49
- - app/assets/fonts/Inter-italic.cyrillic.var.woff2
50
- - app/assets/fonts/Inter-italic.extra.var.woff2
51
- - app/assets/fonts/Inter-italic.greek.var.woff2
52
- - app/assets/fonts/Inter-italic.latin-ext.var.woff2
53
- - app/assets/fonts/Inter-italic.latin.var.woff2
54
- - app/assets/fonts/Inter-italic.symbols.var.woff2
55
- - app/assets/fonts/Inter-italic.vietnamese.var.woff2
56
- - app/assets/fonts/Inter-roman.alternates.var.woff2
57
- - app/assets/fonts/Inter-roman.cyrillic.var.woff2
58
- - app/assets/fonts/Inter-roman.extra.var.woff2
59
- - app/assets/fonts/Inter-roman.greek.var.woff2
60
- - app/assets/fonts/Inter-roman.latin-ext.var.woff2
61
- - app/assets/fonts/Inter-roman.latin.var.woff2
62
- - app/assets/fonts/Inter-roman.symbols.var.woff2
63
- - app/assets/fonts/Inter-roman.vietnamese.var.woff2
64
48
  - lib/generators/tailwindcss/authentication/authentication_generator.rb
65
49
  - lib/generators/tailwindcss/authentication/templates/app/views/passwords/edit.html.erb
66
50
  - lib/generators/tailwindcss/authentication/templates/app/views/passwords/new.html.erb