jekyll-vite 1.0.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -10
- data/lib/jekyll/vite/installation.rb +2 -2
- data/lib/jekyll/vite/version.rb +1 -1
- metadata +8 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bafe7153e1c9630e700f260e3b1d62abfffbf9644b99cfa51ce1c55a07b29ab
|
4
|
+
data.tar.gz: a82aeab53c17e0e703374f491e809a304fe92bef444cd90266fec6f20d9f7701
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f3df4787397aee8281ac83faae2d0dfd2669b40669726fd358cd36e692a70ab7eae55d7fba0110e0b8e0493d193f68413670414ab69a90eaf07a6d45b552b2a
|
7
|
+
data.tar.gz: 4c12df59bccefcd7d669446dbbf8da5a8615e170a5d270551b5d97e14ee8c3a2eea8adb0ab466f9c4a13fd55c3e4ca77ca53643c1de37639a99aa7f1345eb090
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -45,6 +45,7 @@
|
|
45
45
|
[rollup.js]: https://rollupjs.org
|
46
46
|
[esbuild]: https://esbuild.github.io/
|
47
47
|
[example]: https://github.com/ElMassimo/jekyll-vite/tree/main/docs
|
48
|
+
[installation]: https://jekyll-vite.netlify.app/posts/installation/
|
48
49
|
|
49
50
|
Use [Vite.js] in [Jekyll] and enjoy a modern assets pipeline! ⚡️
|
50
51
|
|
@@ -89,16 +90,7 @@ bundle install
|
|
89
90
|
bundle exec vite install
|
90
91
|
```
|
91
92
|
|
92
|
-
Additional installation instructions are available in the [documentation website][
|
93
|
-
|
94
|
-
## Getting Started 💻
|
95
|
-
|
96
|
-
Run <kbd>bin/vite dev</kbd> to start the Vite development server, and then
|
97
|
-
restart your Jekyll server with <kbd>bin/jekyll serve</kbd>.
|
98
|
-
|
99
|
-
Visit any page and you should see a printed console output: `Vite ⚡️ Ruby`.
|
100
|
-
|
101
|
-
Check the [documentation website][website] for more information.
|
93
|
+
Additional [installation instructions][installation] are available in the [documentation website][installation].
|
102
94
|
|
103
95
|
## Contact ✉️
|
104
96
|
|
@@ -19,8 +19,8 @@ module Jekyll::Vite::Installation
|
|
19
19
|
# Override: Inject the vite client and sample script to the default HTML template.
|
20
20
|
def install_sample_files
|
21
21
|
super
|
22
|
-
|
23
|
-
|
22
|
+
inject_line_after_last root.join('_config.yml'), 'plugins:', ' - jekyll/vite'
|
23
|
+
inject_line_after_last root.join('_config.yml'), 'exclude:', <<-YML.chomp("\n")
|
24
24
|
- bin
|
25
25
|
- config
|
26
26
|
- vite.config.ts
|
data/lib/jekyll/vite/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-vite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Máximo Mussini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -34,22 +34,16 @@ dependencies:
|
|
34
34
|
name: vite_ruby
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 1.2.14
|
40
|
-
- - "<"
|
37
|
+
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
|
-
version: '
|
39
|
+
version: '3.0'
|
43
40
|
type: :runtime
|
44
41
|
prerelease: false
|
45
42
|
version_requirements: !ruby/object:Gem::Requirement
|
46
43
|
requirements:
|
47
|
-
- - "
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 1.2.14
|
50
|
-
- - "<"
|
44
|
+
- - "~>"
|
51
45
|
- !ruby/object:Gem::Version
|
52
|
-
version: '
|
46
|
+
version: '3.0'
|
53
47
|
- !ruby/object:Gem::Dependency
|
54
48
|
name: pry-byebug
|
55
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,8 +136,8 @@ homepage: https://github.com/ElMassimo/jekyll-vite
|
|
142
136
|
licenses:
|
143
137
|
- MIT
|
144
138
|
metadata:
|
145
|
-
source_code_uri: https://github.com/ElMassimo/jekyll-vite/tree/
|
146
|
-
changelog_uri: https://github.com/ElMassimo/jekyll-vite/blob/
|
139
|
+
source_code_uri: https://github.com/ElMassimo/jekyll-vite/tree/v3.0.0
|
140
|
+
changelog_uri: https://github.com/ElMassimo/jekyll-vite/blob/v3.0.0/CHANGELOG.md
|
147
141
|
post_install_message:
|
148
142
|
rdoc_options: []
|
149
143
|
require_paths:
|