Skip to content

Commit 859e9d7

Browse files
committed
chore: bump dependencies
1 parent 0fb8db1 commit 859e9d7

17 files changed

+39
-36
lines changed

scripts/app.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { html, useFilteredStars, useStargazeStorage } from "@/lib.js";
2-
import { useThemeColor } from "@vendor/andreasphil/design-system@v0.39.0/scripts/utils.js";
3-
import { useAsyncTask } from "@vendor/andreasphil/vue-use-async-task@v0.5.0/dist/lib.js";
2+
import { useThemeColor } from "@vendor/andreasphil/design-system@v0.40.0/scripts/utils.js";
3+
import { useAsyncTask } from "@vendor/andreasphil/vue-use-async-task@v0.7.0/dist/useAsyncTask.js";
44
import {
55
computed,
66
createApp,
@@ -123,7 +123,9 @@ export const List = defineComponent({
123123
* Website links *
124124
* -------------------------------------------------- */
125125

126-
const preferWebsite = ref(localStorage.getItem("prefer-website") === "true");
126+
const preferWebsite = ref(
127+
localStorage.getItem("prefer-website") === "true"
128+
);
127129

128130
watch(preferWebsite, (is) => {
129131
localStorage.setItem("prefer-website", is.toString());

scripts/lib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import createSearch, {
22
startsWith,
3-
} from "@vendor/andreasphil/js-inverted-index@v1.7.0/dist/lib.js";
3+
} from "@vendor/andreasphil/js-inverted-index@v1.8.0/dist/invertedIndex.js";
44
import { computed, ref, watch } from "vue";
55

66
/* -------------------------------------------------- *

style/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url("../vendor/andreasphil/design-system@v0.39.0/dist/index.min.css")
1+
@import url("../vendor/andreasphil/design-system@v0.40.0/dist/design-system.min.css")
22
layer(theme);
33

44
:root {

vendor/andreasphil/[email protected]/VENDOR_LICENSES.md

-21
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,25 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22+
23+
# Vendored Dependencies
24+
25+
## [Lucide](https://lucide.dev)
26+
27+
ISC License
28+
29+
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022
30+
as part of Feather (MIT). All other copyright (c) for Lucide are held
31+
by Lucide Contributors 2022.
32+
33+
Permission to use, copy, modify, and/or distribute this software for any
34+
purpose with or without fee is hereby granted, provided that the above
35+
copyright notice and this permission notice appear in all copies.
36+
37+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
38+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
39+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
40+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
41+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
42+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
43+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

vendor/andreasphil/[email protected]/dist/lib.js.map

-7
This file was deleted.
+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)