jekyll-tailwindcss 0.2.0-arm64-darwin → 0.3.0-arm64-darwin

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: 636d205d74d261033efbefd532134f8cc919a6b2314b5348a7354a26667888b7
4
- data.tar.gz: bb1226f27bef3c2bdbf0bc5497a0ea5d44387a1be070581bf9d511efe6d447d3
3
+ metadata.gz: ddfa6ecf094f34df164f44db591e64cba466cbbf47b4445f470bd6b3e2f4dac9
4
+ data.tar.gz: f96013ef903a9343360e3dfbb7e1c1796c3a8746aa8c52130b65a2690cc4c99e
5
5
  SHA512:
6
- metadata.gz: f2967dd3ec34257701de26c527cfab98d6f7870e03dfcc6d7f9da2a95ae6b17c3cab0a976822dbc42e364ba6ecd89f1b4ea4cceb502aafc90eae555550d5389f
7
- data.tar.gz: 8ca6310e20c9c959183b844829efa4b7b6d84493a1c176d7681bacece349f0ebbaf3673d8c51d611b2cdec45b50a6ef01c8d67e2ece7f2772fd122675dbc0380
6
+ metadata.gz: e8b9c7a226f13e5ea7cb5dfffd76ad12928f9952108f4e3419de0b4d463314a8e44b337acba603f2c9caa1bc6d28d26fbffbd53ac376623c2a77257269637706
7
+ data.tar.gz: aed1bab04b118e828efbb58f3fce252fb9b431fda8cb57c5c1ad8281bed43a35c367e7f20c4160fb08163e4cc33117a96af26f42410b13632ac4fea6ddd9d7d3
data/README.md CHANGED
@@ -28,19 +28,19 @@ plugins:
28
28
  This plugin requires you to have a tailwind configuration file (`tailwind.config.js`) at the root level of your project, which can be generated by running:
29
29
 
30
30
  ```
31
- bundle exec tailwindcss init
31
+ bundle exec jekyll-tailwindcss init
32
32
  ```
33
33
 
34
34
  Tailwind will include the CSS for the classes found in `content` directories. For most jekyll sites, this would work well.
35
35
 
36
36
  ```js
37
37
  content: [
38
- "./_includes/**/*.{html,liquid}",
39
- "./_layouts/**/*.{html,liquid}",
40
- "./_pages/*.{html,liquid}",
41
- "./_posts/**/*.md",
42
- "./*.md",
43
- "./*.html",
38
+ "./_drafts/**/*.md",
39
+ "./_includes/**/*.html",
40
+ "./_layouts/**/*.html",
41
+ "./_pages/*.{html,md}",
42
+ "./_posts/*.md",
43
+ "./*.{html,md}",
44
44
  ],
45
45
  ```
46
46
 
@@ -84,12 +84,11 @@ will be converted to
84
84
  /* _site/assets/css/styles.css */
85
85
 
86
86
  /*
87
- * Tailwind generated CSS
87
+ * Tailwind generated CSS
88
+ * ...
88
89
  */
89
90
  ```
90
91
 
91
-
92
-
93
92
  ## Development
94
93
 
95
94
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Tailwindcss
5
- VERSION = "0.2.0"
5
+ VERSION = "0.3.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,20 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tailwindcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Mike Vormwald
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-17 00:00:00.000000000 Z
11
+ date: 2024-06-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
15
15
  - mvormwald@gmail.com
16
16
  executables:
17
- - tailwindcss
17
+ - jekyll-tailwindcss
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
@@ -23,7 +23,7 @@ files:
23
23
  - README.md
24
24
  - Rakefile
25
25
  - exe/arm64-darwin/tailwindcss
26
- - exe/tailwindcss
26
+ - exe/jekyll-tailwindcss
27
27
  - lib/jekyll-tailwindcss.rb
28
28
  - lib/jekyll-tailwindcss/version.rb
29
29
  - lib/jekyll/converters/tailwindcss.rb
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.5.7
52
+ rubygems_version: 3.5.11
53
53
  signing_key:
54
54
  specification_version: 4
55
55
  summary: Integrate Tailwind CSS into your Jekyll site.
File without changes