-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lit configuration bug fixes based on QA
- Loading branch information
1 parent
bd680ce
commit 5514bfa
Showing
5 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,9 @@ | |
|
||
say_status :lit, "Installing Lit + SSR Plugin..." | ||
|
||
add_gem "bridgetown-lit-renderer", version: "2.1.0.beta1" | ||
add_gem "bridgetown-lit-renderer", version: "2.1.0.beta2" | ||
|
||
run "yarn add lit esbuild-plugin-lit-css [email protected]beta1" | ||
run "yarn add lit esbuild-plugin-lit-css [email protected]beta2" | ||
|
||
copy_file in_templates_dir("lit-ssr.config.js"), "config/lit-ssr.config.js" | ||
copy_file in_templates_dir("lit-components-entry.js"), "config/lit-components-entry.js" | ||
|
@@ -30,7 +30,7 @@ | |
insert_into_file "esbuild.config.js", | ||
after: " plugins: [" do | ||
<<-JS | ||
plugins: [...plugins], | ||
...plugins, | ||
JS | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
module Bridgetown | ||
VERSION = "1.3.0.beta2" | ||
VERSION = "1.3.0.beta3" | ||
CODE_NAME = "Kelly Butte" | ||
end |