project codename

This commit is contained in:
lightling 2024-05-17 17:21:51 -04:00
parent 71fe7f6755
commit 8733c1131f
23 changed files with 35 additions and 35 deletions

View file

@ -9,8 +9,8 @@
"preview": "vite preview"
},
"devDependencies": {
"@goldenwere/static-web-templates-types": "*",
"@goldenwere/static-web-templates-embeds": "*",
"@goldenwere/mackenzii-types": "*",
"@goldenwere/mackenzii-embeds": "*",
"@types/dompurify": "3.0.5",
"@types/js-yaml": "4.0.9",
"@types/node": "18.16.x",

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import { computed } from 'vue'
import type { EntryTagCollection } from '@goldenwere/static-web-templates-types'
import type { EntryTagCollection } from '@goldenwere/mackenzii-types'
const props = defineProps<{
tags: EntryTagCollection

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import { computed } from 'vue'
import { type HeaderEntry } from '@goldenwere/static-web-templates-types'
import { type HeaderEntry } from '@goldenwere/mackenzii-types'
import { useRouteStore } from 'src/routes'
const props = defineProps<{

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import { useRouter } from 'vue-router'
import type { WarningModal } from '@goldenwere/static-web-templates-types'
import type { WarningModal } from '@goldenwere/mackenzii-types'
import { storage } from 'src/utilities/fetch'

View file

@ -2,7 +2,7 @@ declare module 'content/routes.js' {
import type {
RouteCollection,
SiteGlobals,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
/**
* The routes the app uses

View file

@ -4,8 +4,8 @@ import hljs from 'highlight.js'
import { marked } from 'marked'
import { markedHighlight } from 'marked-highlight'
import type { RoutedWindow } from '@goldenwere/static-web-templates-types'
import { registerLinkEmbed } from '@goldenwere/static-web-templates-embeds'
import type { RoutedWindow } from '@goldenwere/mackenzii-types'
import { registerLinkEmbed } from '@goldenwere/mackenzii-embeds'
import main from './main.vue'
import './main.sass'

View file

@ -7,7 +7,7 @@ import { injectStylesheet } from 'src/utilities/dom'
import { storage } from './utilities/fetch'
import { useRouteStore } from 'src/routes'
import type { Link, RoutedWindow, WarningModal } from '@goldenwere/static-web-templates-types'
import type { Link, RoutedWindow, WarningModal } from '@goldenwere/mackenzii-types'
import HeaderLink from 'src/components/shared/header-link.vue'
import ThemePicker from 'src/components/shared/theme-picker.vue'

View file

@ -9,7 +9,7 @@ import type {
RouteDefinition,
SiteGlobals,
TemplateType,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
const markdownBody = () => import ('./views/markdown/markdown.vue')
const projectListBody = () => import ('./views/project/project-list.vue')

View file

@ -2,7 +2,7 @@ import rfdc from 'rfdc'
import type {
DateRange,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
export const deepCopy = rfdc()

View file

@ -4,7 +4,7 @@ import type {
GalleryEntry,
GalleryList,
GalleryListDefinition,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { type RouteRecordRaw, useRouter } from 'vue-router'
import { amendVariantsWithDefaults } from './gallery-utilities'

View file

@ -2,7 +2,7 @@
import { computed } from 'vue'
import type {
GalleryEntry,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { getTitleFromEntryOrId } from './gallery-utilities'

View file

@ -1,7 +1,7 @@
import type {
GalleryEntry,
GalleryEntryInheritedProperties,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { deepCopy } from 'src/utilities/dom'

View file

@ -5,7 +5,7 @@ import type {
GalleryList,
GalleryListDefinition,
RoutedWindow,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
import { fetchAndParseYaml } from 'src/utilities/fetch'

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import { type MarkdownDefinition } from '@goldenwere/static-web-templates-types'
import { type MarkdownDefinition } from '@goldenwere/mackenzii-types'
import EmbedableContent from 'src/components/shared/embedable-content.vue'

View file

@ -4,7 +4,7 @@ import type {
ProjectList,
ProjectListingInfo,
ProjectListDefinition,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { fetchAndParseYaml } from 'src/utilities/fetch'
import { getCurrentRoute } from 'src/utilities/vuetils'

View file

@ -3,7 +3,7 @@ import { computed } from 'vue'
import { marked } from 'marked'
import type {
ProjectListingInfo,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
const props = defineProps<{
id: string,

View file

@ -5,7 +5,7 @@ import type {
ProjectListingInfo,
ProjectListDefinition,
RoutedWindow,
} from '@goldenwere/static-web-templates-types'
} from '@goldenwere/mackenzii-types'
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
import { getCurrentRoute } from 'src/utilities/vuetils'