jekyll-tailwind-cli 0.1.0 → 1.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/CHANGELOG.md +9 -0
- data/README.md +1 -1
- data/lib/jekyll-tailwind-cli/installer.rb +2 -1
- data/lib/jekyll-tailwind-cli/version.rb +1 -1
- data/lib/jekyll-tailwind-cli.rb +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: 7a8125ddd56c69e2ae88e118ce5767790ba8b614709a3ec02b6e1a9026569165
|
|
4
|
+
data.tar.gz: bcf876c23906dff8197edc7080b1567cdd1ca4cab756d22ee4f7aa5d3b2977bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b4705aaf6eed3de64788cbe2ae7f78eaecd07f0b61574a2e6dcb51be5c765293a8dfedf485c8821a771b6aed09083e158c0d10c37d17e77a1c5d2d89ce42245
|
|
7
|
+
data.tar.gz: cda9675c8044013528fe79a4a81ed4624f85586730461ef47f5ac9c7bd8efdf551ae376badc59892f301e51d3e81f573c06909159ae85f412299a9ea7d909588
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -30,7 +30,8 @@ module Jekyll
|
|
|
30
30
|
|
|
31
31
|
def build
|
|
32
32
|
Jekyll.logger.info 'Tailwind:', 'Rebuilt _site/assets/css/app.css'
|
|
33
|
-
|
|
33
|
+
Jekyll.logger.info 'Tailwind command: #{@path} --input assets/css/app.css --output _site/assets/css/app.css --config #{@config_path}',
|
|
34
|
+
`#{@path} --input assets/css/app.css --output _site/assets/css/app.css --config #{@config_path}`
|
|
34
35
|
end
|
|
35
36
|
|
|
36
37
|
private
|
data/lib/jekyll-tailwind-cli.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-tailwind-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: '1.1'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- skatkov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -52,6 +52,7 @@ extensions: []
|
|
|
52
52
|
extra_rdoc_files: []
|
|
53
53
|
files:
|
|
54
54
|
- ".standard.yml"
|
|
55
|
+
- CHANGELOG.md
|
|
55
56
|
- LICENSE.txt
|
|
56
57
|
- README.md
|
|
57
58
|
- Rakefile
|
|
@@ -79,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
80
|
- !ruby/object:Gem::Version
|
|
80
81
|
version: '0'
|
|
81
82
|
requirements: []
|
|
82
|
-
rubygems_version: 3.5.
|
|
83
|
+
rubygems_version: 3.5.11
|
|
83
84
|
signing_key:
|
|
84
85
|
specification_version: 4
|
|
85
86
|
summary: Use Tailwind CLI with a Jekyll site
|