jekyll-vite 1.0.0 → 1.0.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/README.md +2 -10
- data/lib/jekyll/vite/installation.rb +2 -2
- data/lib/jekyll/vite/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6687f3165b7bd34011b9d488746cdb5b998a091ec106fe20bc6ec25534861e8
|
|
4
|
+
data.tar.gz: fe3e88c00738f30d4fde3637a658cf4d617b4dfb4a625d6b5280229ed59452bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf7a8c2a00fb7f46cf14c0574adaa8d84e0d6a72433b838703e11d18519a7255841502712a594d3e0aacf34f88c4197f804fb254a3363d26aa1c95bae4061d8c
|
|
7
|
+
data.tar.gz: 24eadaa85832157190f81fece490f8907dbe5f59c14ec4234672da6010dd762b8327d8b478ae6814edece0b73b7834cdb2322148697bc38168ac3867a873ba41
|
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: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
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-07-
|
|
11
|
+
date: 2021-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -142,8 +142,8 @@ homepage: https://github.com/ElMassimo/jekyll-vite
|
|
|
142
142
|
licenses:
|
|
143
143
|
- MIT
|
|
144
144
|
metadata:
|
|
145
|
-
source_code_uri: https://github.com/ElMassimo/jekyll-vite/tree/v1.0.
|
|
146
|
-
changelog_uri: https://github.com/ElMassimo/jekyll-vite/blob/v1.0.
|
|
145
|
+
source_code_uri: https://github.com/ElMassimo/jekyll-vite/tree/v1.0.1
|
|
146
|
+
changelog_uri: https://github.com/ElMassimo/jekyll-vite/blob/v1.0.1/CHANGELOG.md
|
|
147
147
|
post_install_message:
|
|
148
148
|
rdoc_options: []
|
|
149
149
|
require_paths:
|