jekyll-tailwindcss 0.2.0 → 0.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7222dda6988203980567600702a6a7dce62cac3dccc09c1f198978eb7f1e5f9
4
- data.tar.gz: a88ac0c96718707874dcb1398e0eedfe91f3a530cd21cc8d50b6bdef4b423109
3
+ metadata.gz: e5faa947e25ddbf760e646d08df3ee2d2c67cea57715f2018532087a7b914ad9
4
+ data.tar.gz: c758c3946ec9757979ecba495eb887316a2a1782dbb02017dfaa646b9f53cb82
5
5
  SHA512:
6
- metadata.gz: dd873f4796c5108d9d16daa2a28fe3dd50a7a3e804bdb8fdec30f7c07370f841cb1f8a3c5f7cd9e83dea5ca8f05722b97b68f9a7c77ff036a1380380739910dc
7
- data.tar.gz: 3f8472a7468756ab46e352fe92ebd1a296755504203c83cfffc8b9686d9363098cf5d0baa09e7ca131d924a564250de9d7480ec20fa588e4a30d754a9d095b67
6
+ metadata.gz: 64279d4437ef361b7b52026d343753b9cde8ce3c98addc99aaaa783a8e2b7ecf4d319a1ad8254d7f43593bcaae18403af24f04311cfa77a6012a74194ac3b53e
7
+ data.tar.gz: a2b9da11c8bbe2279586eb7108cc4385b26392732f99ec3b0b75ff24ffc0aa8d9119bb20e2491794f8f08a38543135145d5f9c4109d580acd40fa9490da17c93
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,27 +1,27 @@
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: ruby
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:
21
21
  - LICENSE
22
22
  - README.md
23
23
  - Rakefile
24
- - exe/tailwindcss
24
+ - exe/jekyll-tailwindcss
25
25
  - lib/jekyll-tailwindcss.rb
26
26
  - lib/jekyll-tailwindcss/version.rb
27
27
  - lib/jekyll/converters/tailwindcss.rb
@@ -47,7 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  requirements: []
50
- rubygems_version: 3.5.7
50
+ rubygems_version: 3.5.11
51
51
  signing_key:
52
52
  specification_version: 4
53
53
  summary: Integrate Tailwind CSS into your Jekyll site.
File without changes