bridgetown-lit-renderer 2.0.0.beta3 → 2.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +7 -102
- data/bridgetown-lit-renderer.gemspec +1 -1
- data/lib/bridgetown-lit-renderer/builder.rb +2 -4
- data/lib/bridgetown-lit-renderer/version.rb +1 -1
- data/lib/bridgetown-lit-renderer.rb +4 -0
- data/package.json +3 -3
- data/src/server/ssr_exec.js +9 -6
- data/yarn.lock +209 -189
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '098cad769622e3e3eb968119f88af868129b12009eaff8909595555b08b3133f'
|
4
|
+
data.tar.gz: d3bd8119e8585437c7b646edfca73cad24f75a4f36a4d9822bb3457a16413b07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0a20c898456dc70d77614d034d310299d7e51d5b53ec7c1f1efb371e1be146c3b2b716f180cac3dfcf124346dd38a20ad9e9fef1863bc3f8233b67f5e1e3160
|
7
|
+
data.tar.gz: fc3932f91c89f0cac409217e63433e2e2021658f736995ced421019ca387830e176b92128c4a2537f1a53caa671634b65dd6f9b639c58f30e3dcea5353539826
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [2.0.0] - 2022-10-08
|
11
|
+
|
12
|
+
- Work with latest Lit SSR, upgrade to initializers system in Bridgetown 1.2
|
13
|
+
|
10
14
|
## [2.0.0.beta3] - 2022-05-14
|
11
15
|
|
12
16
|
- Relocate `@lit-labs/ssr` to package dependency, import the experimental hydrate module directly
|
data/README.md
CHANGED
@@ -7,7 +7,11 @@
|
|
7
7
|
|
8
8
|
This [Bridgetown](https://www.bridgetownrb.com) plugin provides you with an easy-to-use pipeline for SSR + hydration of Lit components. Create "islands" of interactivity using Lit-based web components which are fully supported in all major browsers, and take full advantage of scoped component styling via the shadow DOM.
|
9
9
|
|
10
|
-
|
10
|
+
## Documentation
|
11
|
+
|
12
|
+
**[The official documentation is now available on the Bridgetown website.](https://edge.bridgetownrb.com/docs/components/lit)**
|
13
|
+
|
14
|
+
[Check out the demo site repo.](https://github.com/bridgetownrb/lit-renderer-example)
|
11
15
|
|
12
16
|
## Installation
|
13
17
|
|
@@ -17,7 +21,7 @@ Starting in Bridgetown v1.1, you can install this plugin via a bundled configura
|
|
17
21
|
$ bin/bridgetown configure lit
|
18
22
|
```
|
19
23
|
|
20
|
-
|
24
|
+
For a manual installation overview:
|
21
25
|
|
22
26
|
Run this command to add this plugin to your site's Gemfile, along with Lit and SSR support:
|
23
27
|
|
@@ -72,105 +76,6 @@ Now add the following to the top of your `frontend/javascript/index.js` file:
|
|
72
76
|
import "bridgetown-lit-renderer"
|
73
77
|
```
|
74
78
|
|
75
|
-
### Take Lit for a Spin
|
76
|
-
|
77
|
-
For the purposes of testing your install, create the `src/_components/happy-days.lit.js` file:
|
78
|
-
|
79
|
-
```js
|
80
|
-
import "lit/experimental-hydrate-support.js"
|
81
|
-
import { LitElement, html, css } from "lit"
|
82
|
-
|
83
|
-
export class HappyDaysElement extends LitElement {
|
84
|
-
static styles = css`
|
85
|
-
:host {
|
86
|
-
display: block;
|
87
|
-
border: 2px dashed gray;
|
88
|
-
padding: 20px;
|
89
|
-
max-width: 300px;
|
90
|
-
}
|
91
|
-
`
|
92
|
-
|
93
|
-
static properties = {
|
94
|
-
hello: { type: String }
|
95
|
-
}
|
96
|
-
|
97
|
-
render() {
|
98
|
-
return html`
|
99
|
-
<p>Hello ${this.hello}! ${Date.now()}</p>
|
100
|
-
`;
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
|
-
customElements.define('happy-days', HappyDaysElement)
|
105
|
-
```
|
106
|
-
|
107
|
-
Finally, create a new `.erb` page somewhere in `src`, and add this to your template:
|
108
|
-
|
109
|
-
```erb
|
110
|
-
<%= lit :happy_days, hello: "there" %>
|
111
|
-
```
|
112
|
-
|
113
|
-
(The helper will know how to convert the tag name and attribute keywords to HTML output.)
|
114
|
-
|
115
|
-
Now start up your Bridgetown site, visit the page, and if all goes well, you should see a box containing "Hello there!" and a timestamp when the page was first rendered.
|
116
|
-
|
117
|
-
You can reload the page several times and see that the timestamp doesn't change, because Lit's SSR + Hydration support knows not to re-render the component. However, if you change the `hello` attribute, you'll get a re-render and thus see a new timestamp. _How cool is that?!_
|
118
|
-
|
119
|
-
### Lit Helper Options
|
120
|
-
|
121
|
-
The `lit` helper works in any Ruby template language and let's you pass data down to the Lit SSR build process. Any value that's not alreadey a string will be converted to JSON (via Ruby's `to_json`). You can use a symbol or string for the tag name and underscores are automatically converted to dashes.
|
122
|
-
|
123
|
-
```erb
|
124
|
-
<%= lit :page_header, title: resource.data.title %>
|
125
|
-
```
|
126
|
-
|
127
|
-
(Remember, all custom elements always must have at least one dash within the HTML.)
|
128
|
-
|
129
|
-
If you pass a block to `lit`, it will add that additional HTML into the Lit template output:
|
130
|
-
|
131
|
-
```erb
|
132
|
-
<%= lit :ui_sidebar do %>
|
133
|
-
<h2 slot="title">Nice Sidebar</h2>
|
134
|
-
<% end %>
|
135
|
-
```
|
136
|
-
|
137
|
-
You can also pass page/resource front matter and other data along via the `data` keyword, which then can be used in the block. In addition, if a tag name isn't present, you can add it yourself in within the block.
|
138
|
-
|
139
|
-
```erb
|
140
|
-
<%= lit data: resource.data do %>
|
141
|
-
<page-header>
|
142
|
-
<h1>${data.title}</h1>
|
143
|
-
</page-header>
|
144
|
-
<% end %>
|
145
|
-
```
|
146
|
-
|
147
|
-
When the component is hydrated, it will utilize the same data that was passed at build time and avoid a client-side re-render. However, from that point forward you're free to mutate component attribute/properties to trigger re-renders as normal. [Check out Lit's `firstUpdated` method](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle-completing) as a good place to start.
|
148
|
-
|
149
|
-
You also have the option of choosing a different entry point (aka your JS file that contains or imports one or more Lit components). The default is `./config/lit-components-entry.js`, but you can specify any other file you wish (the path should be relative to your project root).
|
150
|
-
|
151
|
-
```erb
|
152
|
-
<%= lit data: resource.data, entry: "./frontend/javascript/components/headers.js" do %>
|
153
|
-
<page-header title="${data.title}"></page-header>
|
154
|
-
<% end %>
|
155
|
-
```
|
156
|
-
|
157
|
-
This would typically coincide with a strategy of having multiple esbuild/Webpack entry points, and loading different entry points on different parts of your site. An exercise left for the reader…
|
158
|
-
|
159
|
-
### Sidecar CSS Files
|
160
|
-
|
161
|
-
The "default" manner in which you author styles in Lit components is to use `css` tagged template literals (as you saw in the `happy-days` example above). However, some people prefer authoring styles in dedicated CSS files.
|
162
|
-
|
163
|
-
The [esbuild-plugin-lit-css](https://github.com/bennypowers/lit-css/tree/main/packages/esbuild-plugin-lit-css) plugin allows you to author perfectly vanilla CSS files alongside your component files and import them.
|
164
|
-
|
165
|
-
In order to separate the "globally-accessible" stylesheets you may have in `src/_components` from the Lit component-specific stylesheets (which we only want to get instantiated within component shadow roots), we'll use the following file conventions:
|
166
|
-
|
167
|
-
* For global stylesheets, use a `.global.css` suffix.
|
168
|
-
* For Lit component stylesheets, use a `.lit.css` suffix.
|
169
|
-
|
170
|
-
If you used Bridgetown v1.1 or later's Lit bundled configuration, this is already installed and configured for you. Otherwise, you'll need to do just a bit of manual setup to get things working.
|
171
|
-
|
172
|
-
TBD
|
173
|
-
|
174
79
|
### Technical and Performance Considerations
|
175
80
|
|
176
81
|
The Bridgetown Lit render helper works by compiling your entry point together with your code block via esbuild and caching the resulting JS snippet. A second pass combines your `data` with the snippet and executes it via a temporary "sidecar" Node server which utilizes Lit's SSR rendering pipeline.
|
@@ -232,4 +137,4 @@ you should be doing this:
|
|
232
137
|
[gem]: https://img.shields.io/gem/v/bridgetown-lit-renderer.svg?style=for-the-badge&color=red
|
233
138
|
[gem-url]: https://rubygems.org/gems/bridgetown-lit-renderer
|
234
139
|
[npm]: https://img.shields.io/npm/v/bridgetown-lit-renderer.svg?style=for-the-badge
|
235
|
-
[npm-url]: https://npmjs.com/package/bridgetown-lit-renderer
|
140
|
+
[npm-url]: https://npmjs.com/package/bridgetown-lit-renderer
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
|
22
22
|
spec.required_ruby_version = ">= 2.7.0"
|
23
23
|
|
24
|
-
spec.add_dependency "bridgetown", ">= 1.0", "< 2.0"
|
24
|
+
spec.add_dependency "bridgetown", ">= 1.2.0.beta2", "< 2.0"
|
25
25
|
spec.add_dependency "random-port", ">= 0.5"
|
26
26
|
|
27
27
|
spec.add_development_dependency "bundler"
|
@@ -43,7 +43,7 @@ module BridgetownLitRenderer
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
|
-
helper "lit"
|
46
|
+
helper "lit" do | # rubocop:todo Metrics/ParameterLists
|
47
47
|
tag = nil,
|
48
48
|
data: {},
|
49
49
|
hydrate_root: true,
|
@@ -51,7 +51,7 @@ module BridgetownLitRenderer
|
|
51
51
|
**kwargs,
|
52
52
|
&block
|
53
53
|
|
|
54
|
-
code = block ? view.capture(&block) : ""
|
54
|
+
code = block ? helpers.view.capture(&block) : ""
|
55
55
|
code = process_tag.(tag, kwargs, code) if tag
|
56
56
|
|
57
57
|
if hydrate_root
|
@@ -75,5 +75,3 @@ module BridgetownLitRenderer
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
78
|
-
|
79
|
-
BridgetownLitRenderer::Builder.register
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bridgetown-lit-renderer",
|
3
|
-
"version": "2.0.0
|
3
|
+
"version": "2.0.0",
|
4
4
|
"main": "frontend/javascript/index.js",
|
5
5
|
"exports": {
|
6
6
|
".": {
|
@@ -25,10 +25,10 @@
|
|
25
25
|
"src"
|
26
26
|
],
|
27
27
|
"dependencies": {
|
28
|
+
"@lit-labs/ssr": "^2.1.0",
|
28
29
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
29
30
|
"colors": "^1.4.0",
|
30
31
|
"esbuild": "^0.14",
|
31
|
-
"glob": "^7.2.0"
|
32
|
-
"@lit-labs/ssr": "^2.1.0"
|
32
|
+
"glob": "^7.2.0"
|
33
33
|
}
|
34
34
|
}
|
data/src/server/ssr_exec.js
CHANGED
@@ -16,12 +16,15 @@ module.exports = {
|
|
16
16
|
execScript(str) {
|
17
17
|
const vm = require("vm")
|
18
18
|
const contextObject = {
|
19
|
-
require
|
20
|
-
console
|
21
|
-
process
|
22
|
-
global
|
23
|
-
URL
|
24
|
-
|
19
|
+
require,
|
20
|
+
console,
|
21
|
+
process,
|
22
|
+
global,
|
23
|
+
URL,
|
24
|
+
URLSearchParams,
|
25
|
+
Buffer,
|
26
|
+
setTimeout() {},
|
27
|
+
clearTimeout() {},
|
25
28
|
__filename: "__lit_eval.js",
|
26
29
|
}
|
27
30
|
|
data/yarn.lock
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
+
"@esbuild/linux-loong64@0.14.54":
|
6
|
+
version "0.14.54"
|
7
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz#de2a4be678bd4d0d1ffbb86e6de779cde5999028"
|
8
|
+
integrity sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==
|
9
|
+
|
5
10
|
"@lit-labs/ssr-client@^1.0.0":
|
6
11
|
version "1.0.1"
|
7
12
|
resolved "https://registry.yarnpkg.com/@lit-labs/ssr-client/-/ssr-client-1.0.1.tgz#b97e121184aa201bbe6f165f3a7dc919f67129a2"
|
@@ -12,29 +17,29 @@
|
|
12
17
|
lit-html "^2.0.0"
|
13
18
|
|
14
19
|
"@lit-labs/ssr@^2.1.0":
|
15
|
-
version "2.
|
16
|
-
resolved "https://registry.yarnpkg.com/@lit-labs/ssr/-/ssr-2.
|
17
|
-
integrity sha512-
|
20
|
+
version "2.2.3"
|
21
|
+
resolved "https://registry.yarnpkg.com/@lit-labs/ssr/-/ssr-2.2.3.tgz#8f9cc343ebf531dd670136d342562bee33ce9be0"
|
22
|
+
integrity sha512-QOHZGR5a6znwqa8wM5hpMdlfO/fXUh0LYV39b16TEGtnszhGlKECx4+w9RiBuwOj/Qb5/SHGKpr81APRevWGeg==
|
18
23
|
dependencies:
|
19
24
|
"@lit-labs/ssr-client" "^1.0.0"
|
20
|
-
"@lit/reactive-element" "^1.
|
25
|
+
"@lit/reactive-element" "^1.4.0"
|
21
26
|
"@types/node" "^16.0.0"
|
22
|
-
lit "^2.
|
27
|
+
lit "^2.3.0"
|
23
28
|
lit-element "^3.1.0"
|
24
|
-
lit-html "^2.
|
25
|
-
node-fetch "^2.
|
29
|
+
lit-html "^2.3.0"
|
30
|
+
node-fetch "^3.2.8"
|
26
31
|
parse5 "^6.0.1"
|
27
32
|
resolve "^1.10.1"
|
28
33
|
|
29
|
-
"@lit/reactive-element@^1.0.0", "@lit/reactive-element@^1.
|
30
|
-
version "1.
|
31
|
-
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.
|
32
|
-
integrity sha512-
|
34
|
+
"@lit/reactive-element@^1.0.0", "@lit/reactive-element@^1.3.0", "@lit/reactive-element@^1.4.0":
|
35
|
+
version "1.4.1"
|
36
|
+
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.4.1.tgz#3f587eec5708692135bc9e94cf396130604979f3"
|
37
|
+
integrity sha512-qDv4851VFSaBWzpS02cXHclo40jsbAjRXnebNXpm0uVg32kCneZPo9RYVQtrTNICtZ+1wAYHu1ZtxWSWMbKrBw==
|
33
38
|
|
34
39
|
"@types/node@^16.0.0":
|
35
|
-
version "16.11.
|
36
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.
|
37
|
-
integrity sha512-
|
40
|
+
version "16.11.64"
|
41
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.64.tgz#9171f327298b619e2c52238b120c19056415d820"
|
42
|
+
integrity sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==
|
38
43
|
|
39
44
|
"@types/trusted-types@^2.0.2":
|
40
45
|
version "2.0.2"
|
@@ -67,138 +72,159 @@ colors@^1.4.0:
|
|
67
72
|
concat-map@0.0.1:
|
68
73
|
version "0.0.1"
|
69
74
|
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
70
|
-
integrity
|
71
|
-
|
72
|
-
|
73
|
-
version "0.
|
74
|
-
resolved "https://registry.yarnpkg.com/
|
75
|
-
integrity sha512-
|
76
|
-
|
77
|
-
esbuild-android-
|
78
|
-
version "0.14.
|
79
|
-
resolved "https://registry.yarnpkg.com/esbuild-android-
|
80
|
-
integrity sha512
|
81
|
-
|
82
|
-
esbuild-
|
83
|
-
version "0.14.
|
84
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
85
|
-
integrity sha512-
|
86
|
-
|
87
|
-
esbuild-darwin-
|
88
|
-
version "0.14.
|
89
|
-
resolved "https://registry.yarnpkg.com/esbuild-darwin-
|
90
|
-
integrity sha512
|
91
|
-
|
92
|
-
esbuild-
|
93
|
-
version "0.14.
|
94
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
95
|
-
integrity sha512-
|
96
|
-
|
97
|
-
esbuild-freebsd-
|
98
|
-
version "0.14.
|
99
|
-
resolved "https://registry.yarnpkg.com/esbuild-freebsd-
|
100
|
-
integrity sha512-
|
101
|
-
|
102
|
-
esbuild-
|
103
|
-
version "0.14.
|
104
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
105
|
-
integrity sha512-
|
106
|
-
|
107
|
-
esbuild-linux-
|
108
|
-
version "0.14.
|
109
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
110
|
-
integrity sha512-
|
111
|
-
|
112
|
-
esbuild-linux-
|
113
|
-
version "0.14.
|
114
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
115
|
-
integrity sha512-
|
116
|
-
|
117
|
-
esbuild-linux-
|
118
|
-
version "0.14.
|
119
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
120
|
-
integrity sha512-
|
121
|
-
|
122
|
-
esbuild-linux-
|
123
|
-
version "0.14.
|
124
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
125
|
-
integrity sha512-
|
126
|
-
|
127
|
-
esbuild-linux-
|
128
|
-
version "0.14.
|
129
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
130
|
-
integrity sha512-
|
131
|
-
|
132
|
-
esbuild-linux-
|
133
|
-
version "0.14.
|
134
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
135
|
-
integrity sha512-
|
136
|
-
|
137
|
-
esbuild-linux-
|
138
|
-
version "0.14.
|
139
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-
|
140
|
-
integrity sha512-
|
141
|
-
|
142
|
-
esbuild-
|
143
|
-
version "0.14.
|
144
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
145
|
-
integrity sha512-
|
146
|
-
|
147
|
-
esbuild-
|
148
|
-
version "0.14.
|
149
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
150
|
-
integrity sha512-
|
151
|
-
|
152
|
-
esbuild-
|
153
|
-
version "0.14.
|
154
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
155
|
-
integrity sha512-
|
156
|
-
|
157
|
-
esbuild-
|
158
|
-
version "0.14.
|
159
|
-
resolved "https://registry.yarnpkg.com/esbuild-
|
160
|
-
integrity sha512-
|
161
|
-
|
162
|
-
esbuild-windows-
|
163
|
-
version "0.14.
|
164
|
-
resolved "https://registry.yarnpkg.com/esbuild-windows-
|
165
|
-
integrity sha512-
|
166
|
-
|
167
|
-
esbuild-windows-
|
168
|
-
version "0.14.
|
169
|
-
resolved "https://registry.yarnpkg.com/esbuild-windows-
|
170
|
-
integrity sha512-
|
75
|
+
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
|
76
|
+
|
77
|
+
data-uri-to-buffer@^4.0.0:
|
78
|
+
version "4.0.0"
|
79
|
+
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b"
|
80
|
+
integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==
|
81
|
+
|
82
|
+
esbuild-android-64@0.14.54:
|
83
|
+
version "0.14.54"
|
84
|
+
resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz#505f41832884313bbaffb27704b8bcaa2d8616be"
|
85
|
+
integrity sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==
|
86
|
+
|
87
|
+
esbuild-android-arm64@0.14.54:
|
88
|
+
version "0.14.54"
|
89
|
+
resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz#8ce69d7caba49646e009968fe5754a21a9871771"
|
90
|
+
integrity sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==
|
91
|
+
|
92
|
+
esbuild-darwin-64@0.14.54:
|
93
|
+
version "0.14.54"
|
94
|
+
resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz#24ba67b9a8cb890a3c08d9018f887cc221cdda25"
|
95
|
+
integrity sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==
|
96
|
+
|
97
|
+
esbuild-darwin-arm64@0.14.54:
|
98
|
+
version "0.14.54"
|
99
|
+
resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz#3f7cdb78888ee05e488d250a2bdaab1fa671bf73"
|
100
|
+
integrity sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==
|
101
|
+
|
102
|
+
esbuild-freebsd-64@0.14.54:
|
103
|
+
version "0.14.54"
|
104
|
+
resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz#09250f997a56ed4650f3e1979c905ffc40bbe94d"
|
105
|
+
integrity sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==
|
106
|
+
|
107
|
+
esbuild-freebsd-arm64@0.14.54:
|
108
|
+
version "0.14.54"
|
109
|
+
resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz#bafb46ed04fc5f97cbdb016d86947a79579f8e48"
|
110
|
+
integrity sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==
|
111
|
+
|
112
|
+
esbuild-linux-32@0.14.54:
|
113
|
+
version "0.14.54"
|
114
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz#e2a8c4a8efdc355405325033fcebeb941f781fe5"
|
115
|
+
integrity sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==
|
116
|
+
|
117
|
+
esbuild-linux-64@0.14.54:
|
118
|
+
version "0.14.54"
|
119
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz#de5fdba1c95666cf72369f52b40b03be71226652"
|
120
|
+
integrity sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==
|
121
|
+
|
122
|
+
esbuild-linux-arm64@0.14.54:
|
123
|
+
version "0.14.54"
|
124
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz#dae4cd42ae9787468b6a5c158da4c84e83b0ce8b"
|
125
|
+
integrity sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==
|
126
|
+
|
127
|
+
esbuild-linux-arm@0.14.54:
|
128
|
+
version "0.14.54"
|
129
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz#a2c1dff6d0f21dbe8fc6998a122675533ddfcd59"
|
130
|
+
integrity sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==
|
131
|
+
|
132
|
+
esbuild-linux-mips64le@0.14.54:
|
133
|
+
version "0.14.54"
|
134
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz#d9918e9e4cb972f8d6dae8e8655bf9ee131eda34"
|
135
|
+
integrity sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==
|
136
|
+
|
137
|
+
esbuild-linux-ppc64le@0.14.54:
|
138
|
+
version "0.14.54"
|
139
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz#3f9a0f6d41073fb1a640680845c7de52995f137e"
|
140
|
+
integrity sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==
|
141
|
+
|
142
|
+
esbuild-linux-riscv64@0.14.54:
|
143
|
+
version "0.14.54"
|
144
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz#618853c028178a61837bc799d2013d4695e451c8"
|
145
|
+
integrity sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==
|
146
|
+
|
147
|
+
esbuild-linux-s390x@0.14.54:
|
148
|
+
version "0.14.54"
|
149
|
+
resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz#d1885c4c5a76bbb5a0fe182e2c8c60eb9e29f2a6"
|
150
|
+
integrity sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==
|
151
|
+
|
152
|
+
esbuild-netbsd-64@0.14.54:
|
153
|
+
version "0.14.54"
|
154
|
+
resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz#69ae917a2ff241b7df1dbf22baf04bd330349e81"
|
155
|
+
integrity sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==
|
156
|
+
|
157
|
+
esbuild-openbsd-64@0.14.54:
|
158
|
+
version "0.14.54"
|
159
|
+
resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz#db4c8495287a350a6790de22edea247a57c5d47b"
|
160
|
+
integrity sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==
|
161
|
+
|
162
|
+
esbuild-sunos-64@0.14.54:
|
163
|
+
version "0.14.54"
|
164
|
+
resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz#54287ee3da73d3844b721c21bc80c1dc7e1bf7da"
|
165
|
+
integrity sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==
|
166
|
+
|
167
|
+
esbuild-windows-32@0.14.54:
|
168
|
+
version "0.14.54"
|
169
|
+
resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz#f8aaf9a5667630b40f0fb3aa37bf01bbd340ce31"
|
170
|
+
integrity sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==
|
171
|
+
|
172
|
+
esbuild-windows-64@0.14.54:
|
173
|
+
version "0.14.54"
|
174
|
+
resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz#bf54b51bd3e9b0f1886ffdb224a4176031ea0af4"
|
175
|
+
integrity sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==
|
176
|
+
|
177
|
+
esbuild-windows-arm64@0.14.54:
|
178
|
+
version "0.14.54"
|
179
|
+
resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz#937d15675a15e4b0e4fafdbaa3a01a776a2be982"
|
180
|
+
integrity sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==
|
171
181
|
|
172
182
|
esbuild@^0.14:
|
173
|
-
version "0.14.
|
174
|
-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.
|
175
|
-
integrity sha512-
|
183
|
+
version "0.14.54"
|
184
|
+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.54.tgz#8b44dcf2b0f1a66fc22459943dccf477535e9aa2"
|
185
|
+
integrity sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==
|
176
186
|
optionalDependencies:
|
177
|
-
esbuild-
|
178
|
-
esbuild-android-
|
179
|
-
esbuild-
|
180
|
-
esbuild-darwin-
|
181
|
-
esbuild-
|
182
|
-
esbuild-freebsd-
|
183
|
-
esbuild-
|
184
|
-
esbuild-linux-
|
185
|
-
esbuild-linux-
|
186
|
-
esbuild-linux-
|
187
|
-
esbuild-linux-
|
188
|
-
esbuild-linux-
|
189
|
-
esbuild-linux-
|
190
|
-
esbuild-linux-
|
191
|
-
esbuild-
|
192
|
-
esbuild-
|
193
|
-
esbuild-
|
194
|
-
esbuild-
|
195
|
-
esbuild-windows-
|
196
|
-
esbuild-windows-
|
187
|
+
"@esbuild/linux-loong64" "0.14.54"
|
188
|
+
esbuild-android-64 "0.14.54"
|
189
|
+
esbuild-android-arm64 "0.14.54"
|
190
|
+
esbuild-darwin-64 "0.14.54"
|
191
|
+
esbuild-darwin-arm64 "0.14.54"
|
192
|
+
esbuild-freebsd-64 "0.14.54"
|
193
|
+
esbuild-freebsd-arm64 "0.14.54"
|
194
|
+
esbuild-linux-32 "0.14.54"
|
195
|
+
esbuild-linux-64 "0.14.54"
|
196
|
+
esbuild-linux-arm "0.14.54"
|
197
|
+
esbuild-linux-arm64 "0.14.54"
|
198
|
+
esbuild-linux-mips64le "0.14.54"
|
199
|
+
esbuild-linux-ppc64le "0.14.54"
|
200
|
+
esbuild-linux-riscv64 "0.14.54"
|
201
|
+
esbuild-linux-s390x "0.14.54"
|
202
|
+
esbuild-netbsd-64 "0.14.54"
|
203
|
+
esbuild-openbsd-64 "0.14.54"
|
204
|
+
esbuild-sunos-64 "0.14.54"
|
205
|
+
esbuild-windows-32 "0.14.54"
|
206
|
+
esbuild-windows-64 "0.14.54"
|
207
|
+
esbuild-windows-arm64 "0.14.54"
|
208
|
+
|
209
|
+
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
|
210
|
+
version "3.2.0"
|
211
|
+
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
|
212
|
+
integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
|
213
|
+
dependencies:
|
214
|
+
node-domexception "^1.0.0"
|
215
|
+
web-streams-polyfill "^3.0.3"
|
216
|
+
|
217
|
+
formdata-polyfill@^4.0.10:
|
218
|
+
version "4.0.10"
|
219
|
+
resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
|
220
|
+
integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
|
221
|
+
dependencies:
|
222
|
+
fetch-blob "^3.1.2"
|
197
223
|
|
198
224
|
fs.realpath@^1.0.0:
|
199
225
|
version "1.0.0"
|
200
226
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
201
|
-
integrity
|
227
|
+
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
|
202
228
|
|
203
229
|
function-bind@^1.1.1:
|
204
230
|
version "1.1.1"
|
@@ -206,9 +232,9 @@ function-bind@^1.1.1:
|
|
206
232
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
207
233
|
|
208
234
|
glob@^7.2.0:
|
209
|
-
version "7.2.
|
210
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.
|
211
|
-
integrity sha512-
|
235
|
+
version "7.2.3"
|
236
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
|
237
|
+
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
|
212
238
|
dependencies:
|
213
239
|
fs.realpath "^1.0.0"
|
214
240
|
inflight "^1.0.4"
|
@@ -227,7 +253,7 @@ has@^1.0.3:
|
|
227
253
|
inflight@^1.0.4:
|
228
254
|
version "1.0.6"
|
229
255
|
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
230
|
-
integrity
|
256
|
+
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
|
231
257
|
dependencies:
|
232
258
|
once "^1.3.0"
|
233
259
|
wrappy "1"
|
@@ -237,36 +263,36 @@ inherits@2:
|
|
237
263
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
238
264
|
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
239
265
|
|
240
|
-
is-core-module@^2.
|
241
|
-
version "2.
|
242
|
-
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.
|
243
|
-
integrity sha512
|
266
|
+
is-core-module@^2.9.0:
|
267
|
+
version "2.10.0"
|
268
|
+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
|
269
|
+
integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
|
244
270
|
dependencies:
|
245
271
|
has "^1.0.3"
|
246
272
|
|
247
273
|
lit-element@^3.1.0, lit-element@^3.2.0:
|
248
|
-
version "3.2.
|
249
|
-
resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.2.
|
250
|
-
integrity sha512-
|
274
|
+
version "3.2.2"
|
275
|
+
resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.2.2.tgz#d148ab6bf4c53a33f707a5168e087725499e5f2b"
|
276
|
+
integrity sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==
|
251
277
|
dependencies:
|
252
278
|
"@lit/reactive-element" "^1.3.0"
|
253
279
|
lit-html "^2.2.0"
|
254
280
|
|
255
|
-
lit-html@^2.0.0, lit-html@^2.
|
256
|
-
version "2.
|
257
|
-
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.
|
258
|
-
integrity sha512-
|
281
|
+
lit-html@^2.0.0, lit-html@^2.2.0, lit-html@^2.3.0, lit-html@^2.4.0:
|
282
|
+
version "2.4.0"
|
283
|
+
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.4.0.tgz#b510430f39a56ec959167ed1187241a4e3ab1574"
|
284
|
+
integrity sha512-G6qXu4JNUpY6aaF2VMfaszhO9hlWw0hOTRFDmuMheg/nDYGB+2RztUSOyrzALAbr8Nh0Y7qjhYkReh3rPnplVg==
|
259
285
|
dependencies:
|
260
286
|
"@types/trusted-types" "^2.0.2"
|
261
287
|
|
262
|
-
lit@^2.0.0, lit@^2.
|
263
|
-
version "2.
|
264
|
-
resolved "https://registry.yarnpkg.com/lit/-/lit-2.
|
265
|
-
integrity sha512-
|
288
|
+
lit@^2.0.0, lit@^2.3.0:
|
289
|
+
version "2.4.0"
|
290
|
+
resolved "https://registry.yarnpkg.com/lit/-/lit-2.4.0.tgz#e33a0f463e17408f6e7f71464e6a266e60a5bb77"
|
291
|
+
integrity sha512-fdgzxEtLrZFQU/BqTtxFQCLwlZd9bdat+ltzSFjvWkZrs7eBmeX0L5MHUMb3kYIkuS8Xlfnii/iI5klirF8/Xg==
|
266
292
|
dependencies:
|
267
|
-
"@lit/reactive-element" "^1.
|
293
|
+
"@lit/reactive-element" "^1.4.0"
|
268
294
|
lit-element "^3.2.0"
|
269
|
-
lit-html "^2.
|
295
|
+
lit-html "^2.4.0"
|
270
296
|
|
271
297
|
minimatch@^3.1.1:
|
272
298
|
version "3.1.2"
|
@@ -275,17 +301,24 @@ minimatch@^3.1.1:
|
|
275
301
|
dependencies:
|
276
302
|
brace-expansion "^1.1.7"
|
277
303
|
|
278
|
-
node-
|
279
|
-
version "
|
280
|
-
resolved "https://registry.yarnpkg.com/node-
|
281
|
-
integrity sha512
|
304
|
+
node-domexception@^1.0.0:
|
305
|
+
version "1.0.0"
|
306
|
+
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
|
307
|
+
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
|
308
|
+
|
309
|
+
node-fetch@^3.2.8:
|
310
|
+
version "3.2.10"
|
311
|
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"
|
312
|
+
integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==
|
282
313
|
dependencies:
|
283
|
-
|
314
|
+
data-uri-to-buffer "^4.0.0"
|
315
|
+
fetch-blob "^3.1.4"
|
316
|
+
formdata-polyfill "^4.0.10"
|
284
317
|
|
285
318
|
once@^1.3.0:
|
286
319
|
version "1.4.0"
|
287
320
|
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
288
|
-
integrity
|
321
|
+
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
|
289
322
|
dependencies:
|
290
323
|
wrappy "1"
|
291
324
|
|
@@ -297,7 +330,7 @@ parse5@^6.0.1:
|
|
297
330
|
path-is-absolute@^1.0.0:
|
298
331
|
version "1.0.1"
|
299
332
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
300
|
-
integrity
|
333
|
+
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
|
301
334
|
|
302
335
|
path-parse@^1.0.7:
|
303
336
|
version "1.0.7"
|
@@ -305,11 +338,11 @@ path-parse@^1.0.7:
|
|
305
338
|
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
306
339
|
|
307
340
|
resolve@^1.10.1:
|
308
|
-
version "1.22.
|
309
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.
|
310
|
-
integrity sha512-
|
341
|
+
version "1.22.1"
|
342
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
|
343
|
+
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
|
311
344
|
dependencies:
|
312
|
-
is-core-module "^2.
|
345
|
+
is-core-module "^2.9.0"
|
313
346
|
path-parse "^1.0.7"
|
314
347
|
supports-preserve-symlinks-flag "^1.0.0"
|
315
348
|
|
@@ -318,25 +351,12 @@ supports-preserve-symlinks-flag@^1.0.0:
|
|
318
351
|
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
|
319
352
|
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
320
353
|
|
321
|
-
|
322
|
-
version "
|
323
|
-
resolved "https://registry.yarnpkg.com/
|
324
|
-
integrity
|
325
|
-
|
326
|
-
webidl-conversions@^3.0.0:
|
327
|
-
version "3.0.1"
|
328
|
-
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
329
|
-
integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=
|
330
|
-
|
331
|
-
whatwg-url@^5.0.0:
|
332
|
-
version "5.0.0"
|
333
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
|
334
|
-
integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0=
|
335
|
-
dependencies:
|
336
|
-
tr46 "~0.0.3"
|
337
|
-
webidl-conversions "^3.0.0"
|
354
|
+
web-streams-polyfill@^3.0.3:
|
355
|
+
version "3.2.1"
|
356
|
+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
|
357
|
+
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
|
338
358
|
|
339
359
|
wrappy@1:
|
340
360
|
version "1.0.2"
|
341
361
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
342
|
-
integrity
|
362
|
+
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bridgetown-lit-renderer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bridgetown Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bridgetown
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.2.0.beta2
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '2.0'
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 1.2.0.beta2
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '2.0'
|
@@ -115,7 +115,7 @@ homepage: https://github.com/bridgetownrb/bridgetown-lit-renderer
|
|
115
115
|
licenses:
|
116
116
|
- MIT
|
117
117
|
metadata:
|
118
|
-
yarn-add: bridgetown-lit-renderer@2.0.0
|
118
|
+
yarn-add: bridgetown-lit-renderer@2.0.0
|
119
119
|
rubygems_mfa_required: 'true'
|
120
120
|
post_install_message:
|
121
121
|
rdoc_options: []
|
@@ -128,9 +128,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
128
128
|
version: 2.7.0
|
129
129
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
130
|
requirements:
|
131
|
-
- - "
|
131
|
+
- - ">="
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version:
|
133
|
+
version: '0'
|
134
134
|
requirements: []
|
135
135
|
rubygems_version: 3.2.22
|
136
136
|
signing_key:
|