jekyll-tailwindcss 0.5.0 → 0.5.1
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/README.md +1 -1
- data/lib/jekyll/converters/tailwindcss.rb +1 -1
- data/lib/jekyll-tailwindcss/version.rb +1 -1
- metadata +3 -8
- data/lib/tailwindcss/upstream.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78c6146f98c780cb65d3e2c6e77609212130b0b0442602a3fb1ee9218143978e
|
|
4
|
+
data.tar.gz: 001cd2bfefdc9db3b6519640294064fb19bf93a2b09445cad5757ebeff1f4cf2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b98e748ed916539e63ffd33cb6202a51bcb0b4c95abea76c7ebb5415897d7647c4dd097c9e205927a47825af5de5aec9d789b50703f29a92c1e589976589d6b8
|
|
7
|
+
data.tar.gz: 7f0dc3a01fd94bf14a78fb7fd8ceca7f7f246144cddb438017ba40324ecc49b7a552e8e0d4fbbed645650ed79d8af7d37465002bec69301320b46e3a642b70f4
|
data/README.md
CHANGED
|
@@ -126,7 +126,7 @@ gem "jekyll-tailwindcss", path: "/path/to/jekyll-tailwindcss"
|
|
|
126
126
|
- [ ] commit and create a git tag ( example `git tag -a v0.3.1 -m "Release 0.3.1"` )
|
|
127
127
|
- push
|
|
128
128
|
- [ ] `bundle exec rake build`
|
|
129
|
-
- [ ] `gem push pkg
|
|
129
|
+
- [ ] `gem push pkg/jekyll-tailwind-[NEW_VERSION].gem
|
|
130
130
|
- [ ] `git push --follow-tags`
|
|
131
131
|
- announce
|
|
132
132
|
- [ ] create a release at https://github.com/vormwald/jekyll-tailwindcss/releases
|
|
@@ -29,8 +29,8 @@ module Jekyll
|
|
|
29
29
|
Open3.popen3(tailwindcss_env_options, compile_command) do |stdin, stdout, stderr, _wait_thread|
|
|
30
30
|
stdin.write content # write the content of *.tailwindcss to the tailwindcss CLI as input
|
|
31
31
|
stdin.close
|
|
32
|
-
error = stderr.read
|
|
33
32
|
output = stdout.read
|
|
33
|
+
error = stderr.read
|
|
34
34
|
end
|
|
35
35
|
Jekyll.logger.warn "Jekyll Tailwind:", error unless error.nil?
|
|
36
36
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-tailwindcss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Vormwald
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2025-01-07 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: tailwindcss-ruby
|
|
@@ -24,7 +23,6 @@ dependencies:
|
|
|
24
23
|
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: '0'
|
|
27
|
-
description:
|
|
28
26
|
email:
|
|
29
27
|
- mvormwald@gmail.com
|
|
30
28
|
executables:
|
|
@@ -40,13 +38,11 @@ files:
|
|
|
40
38
|
- lib/jekyll-tailwindcss/version.rb
|
|
41
39
|
- lib/jekyll/converters/tailwindcss.rb
|
|
42
40
|
- lib/tailwindcss/commands.rb
|
|
43
|
-
- lib/tailwindcss/upstream.rb
|
|
44
41
|
homepage: https://github.com/vormwald/jekyll-tailwindcss
|
|
45
42
|
licenses:
|
|
46
43
|
- MIT
|
|
47
44
|
metadata:
|
|
48
45
|
homepage_uri: https://github.com/vormwald/jekyll-tailwindcss
|
|
49
|
-
post_install_message:
|
|
50
46
|
rdoc_options: []
|
|
51
47
|
require_paths:
|
|
52
48
|
- lib
|
|
@@ -61,8 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
57
|
- !ruby/object:Gem::Version
|
|
62
58
|
version: '0'
|
|
63
59
|
requirements: []
|
|
64
|
-
rubygems_version: 3.
|
|
65
|
-
signing_key:
|
|
60
|
+
rubygems_version: 3.6.2
|
|
66
61
|
specification_version: 4
|
|
67
62
|
summary: Integrate Tailwind CSS into your Jekyll site.
|
|
68
63
|
test_files: []
|