bridgetown-plugin-tailwindcss 0.1.0 → 0.1.5
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/Gemfile +2 -0
- data/Rakefile +32 -1
- data/bridgetown-plugin-tailwindcss.gemspec +5 -4
- data/lib/bridgetown-plugin-tailwindcss.rb +3 -2
- data/lib/bridgetown-plugin-tailwindcss/command.rb +152 -97
- data/lib/bridgetown-plugin-tailwindcss/utils.rb +84 -6
- data/lib/bridgetown-plugin-tailwindcss/version.rb +1 -1
- data/package.json +7 -2
- data/yarn.lock +803 -0
- metadata +22 -8
- data/lib/bridgetown-plugin-tailwindcss/builder.rb +0 -8
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bridgetown-plugin-tailwindcss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Konnor Rogers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bridgetown
|
@@ -30,6 +30,20 @@ dependencies:
|
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '2.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: thor
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.0'
|
33
47
|
- !ruby/object:Gem::Dependency
|
34
48
|
name: bundler
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,7 +115,7 @@ dependencies:
|
|
101
115
|
- !ruby/object:Gem::Version
|
102
116
|
version: '0.2'
|
103
117
|
description:
|
104
|
-
email:
|
118
|
+
email: konnor7414@gmail.com
|
105
119
|
executables: []
|
106
120
|
extensions: []
|
107
121
|
extra_rdoc_files: []
|
@@ -116,17 +130,17 @@ files:
|
|
116
130
|
- Rakefile
|
117
131
|
- bridgetown-plugin-tailwindcss.gemspec
|
118
132
|
- lib/bridgetown-plugin-tailwindcss.rb
|
119
|
-
- lib/bridgetown-plugin-tailwindcss/builder.rb
|
120
133
|
- lib/bridgetown-plugin-tailwindcss/command.rb
|
121
134
|
- lib/bridgetown-plugin-tailwindcss/utils.rb
|
122
135
|
- lib/bridgetown-plugin-tailwindcss/version.rb
|
123
136
|
- package.json
|
124
137
|
- tags
|
125
|
-
|
138
|
+
- yarn.lock
|
139
|
+
homepage: https://github.com/paramagicdev/bridgetown-plugin-tailwindcss
|
126
140
|
licenses:
|
127
141
|
- MIT
|
128
142
|
metadata:
|
129
|
-
yarn-add: bridgetown-plugin-tailwindcss@0.1.
|
143
|
+
yarn-add: bridgetown-plugin-tailwindcss@0.1.5
|
130
144
|
post_install_message:
|
131
145
|
rdoc_options: []
|
132
146
|
require_paths:
|
@@ -145,5 +159,5 @@ requirements: []
|
|
145
159
|
rubygems_version: 3.0.3
|
146
160
|
signing_key:
|
147
161
|
specification_version: 4
|
148
|
-
summary:
|
162
|
+
summary: A plugin to add tailwindcss to a site
|
149
163
|
test_files: []
|