jekyll-vite 1.0.0 → 3.0.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: 10377d6a8cf9988c534b9d52ac19bf81150b8f81b72e6eed087ea1117dd322fe
4
- data.tar.gz: 5966ec28d23067a4dca3e21325aa07455e27201ff3f29ff4420c27574ed5cd40
3
+ metadata.gz: 4bafe7153e1c9630e700f260e3b1d62abfffbf9644b99cfa51ce1c55a07b29ab
4
+ data.tar.gz: a82aeab53c17e0e703374f491e809a304fe92bef444cd90266fec6f20d9f7701
5
5
  SHA512:
6
- metadata.gz: fdd47ace9d425788c53ab1d63c0aa271f028fae81523c73e6939a0fadddc769c766a1a22844de719259dde226870be778b5a446e7572afc6702b9e81880ffc5b
7
- data.tar.gz: 498549d2b52c5e933d258e3ffe8b91588dddb66be0930ed053a5e12a6f2226cde50cd5bf6f64bea94a09c4736722d23150fb5ce03bfa39bebc05b58ec5feb161
6
+ metadata.gz: 7f3df4787397aee8281ac83faae2d0dfd2669b40669726fd358cd36e692a70ab7eae55d7fba0110e0b8e0493d193f68413670414ab69a90eaf07a6d45b552b2a
7
+ data.tar.gz: 4c12df59bccefcd7d669446dbbf8da5a8615e170a5d270551b5d97e14ee8c3a2eea8adb0ab466f9c4a13fd55c3e4ca77ca53643c1de37639a99aa7f1345eb090
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [3.0.0](https://github.com/ElMassimo/jekyll-vite/compare/v1.0.0...v3.0.0) (2021-08-16)
2
+
3
+ See ElMassimo/vite_ruby/pull/116 for features and breaking changes.
4
+
1
5
  # [1.0.0](https://github.com/ElMassimo/jekyll-vite/compare/v0.0.3...v1.0.0) (2021-07-22)
2
6
 
3
7
 
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][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
- inject_line_after root.join('_config.yml'), 'plugins:', ' - jekyll/vite'
23
- inject_line_after root.join('_config.yml'), 'exclude:', <<-YML.chomp("\n")
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Vite
5
- VERSION = '1.0.0'
5
+ VERSION = '3.0.0'
6
6
  end
7
7
  end
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.0
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-07-22 00:00:00.000000000 Z
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: '2'
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: '2'
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/v1.0.0
146
- changelog_uri: https://github.com/ElMassimo/jekyll-vite/blob/v1.0.0/CHANGELOG.md
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: