tailwindcss-rails-alt 2.0.18-x64-mingw32 → 2.0.20-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/tailwindcss/version.rb +1 -1
- data/lib/{tailwindcss-rails.rb → tailwindcss-rails-alt.rb} +0 -0
- data/lib/tasks/build.rake +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0941e6e1b39ffefa9032b7b97a8da50647b6bf581c5a368f491f702b94359d55'
|
4
|
+
data.tar.gz: 45291eb7e45963ee5f38cc23414c3032a124de973570598720cfd1ee7922a6d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c3bab4f9bac8ce3c4c7dc3eb22e4f19987ace817d7cee8ef7a8ef140800d4e9d2e337b204355c3558fe333809d55e47e61c53efd23f9d4c4f1d5cf7049ec555
|
7
|
+
data.tar.gz: 7882fa928b1a267be437accc281c8b0e187207509dfb0bfb205dd6df273809d3dbfbda9f25e36b5dfbb63e882dd13f7d9e7c32166756b0435647ab048625ac02
|
data/lib/tailwindcss/version.rb
CHANGED
File without changes
|
data/lib/tasks/build.rake
CHANGED
@@ -2,7 +2,7 @@ namespace :tailwindcss do
|
|
2
2
|
desc "Build your Tailwind CSS"
|
3
3
|
task :build do |_, args|
|
4
4
|
debug = args.extras.include?("debug")
|
5
|
-
postcss = args.extras.include?("postcss")
|
5
|
+
postcss = args.extras.include?("postcss") || !ENV['TAILWIND_POSTCSS'].blank?
|
6
6
|
command = Tailwindcss::Commands.compile_command(debug: debug, postcss: postcss)
|
7
7
|
puts command.inspect
|
8
8
|
system(*command, exception: true)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tailwindcss-rails-alt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.20
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -71,7 +71,7 @@ files:
|
|
71
71
|
- lib/install/dev
|
72
72
|
- lib/install/tailwind.config.js
|
73
73
|
- lib/install/tailwindcss.rb
|
74
|
-
- lib/tailwindcss-rails.rb
|
74
|
+
- lib/tailwindcss-rails-alt.rb
|
75
75
|
- lib/tailwindcss/commands.rb
|
76
76
|
- lib/tailwindcss/engine.rb
|
77
77
|
- lib/tailwindcss/upstream.rb
|
@@ -103,5 +103,6 @@ requirements: []
|
|
103
103
|
rubygems_version: 3.2.32
|
104
104
|
signing_key:
|
105
105
|
specification_version: 4
|
106
|
-
summary: Integrate Tailwind CSS with the asset pipeline in Rails.
|
106
|
+
summary: Integrate Tailwind CSS with the asset pipeline in Rails. This gem was created
|
107
|
+
to test a new feature in the original gem
|
107
108
|
test_files: []
|