Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgrade deps #22

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x]
node: [16.x, 18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
15,191 changes: 3,089 additions & 12,102 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/micro-frame/issues",
"dependencies": {
"make-fetch-happen": "^11.1.1",
"make-fetch-happen": "^12.0.0",
"writable-dom": "^1.0.3"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
<div />
<div />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
<div />
<div />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
<div />
<div />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
<div />
<div />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div />
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
data-from="test"
data-slot="slot_1"
id="GENERATED-2"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
data-from="test"
data-slot="slot_1"
id="GENERATED-2"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
data-from="test"
data-slot="slot_1"
id="GENERATED-2"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
data-from="test"
data-slot="slot_1"
id="GENERATED-1"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<p>
test_html for slot_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</div>
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
<script>
$csr_only_index_C=(window.$csr_only_index_C||[]).concat({"l":1,"w":[["s0-8",0,{},{"f":1}]],"t":["XTAXV1jy"]})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</div>
<div
class="test"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<div>
Embedded App.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
class="test"
data-src="embed"
id="GENERATED-0"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
/>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class="test"
data-src="embed"
id="GENERATED-0"
style="display:block;margin-right:16px;"
style="display:block;margin-right:16px"
>
<div>
Embedded App.
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"declaration": true,
"incremental": true,
"module": "CommonJS",
"skipLibCheck": true,
"stripInternal": true,
"esModuleInterop": true,
"resolveJsonModule": true,
Expand Down
Loading