project codename
This commit is contained in:
parent
71fe7f6755
commit
8733c1131f
23 changed files with 35 additions and 35 deletions
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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<{
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
2
projects/frontend/src/content-env.d.ts
vendored
2
projects/frontend/src/content-env.d.ts
vendored
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import type {
|
||||
GalleryEntry,
|
||||
GalleryEntryInheritedProperties,
|
||||
} from '@goldenwere/static-web-templates-types'
|
||||
} from '@goldenwere/mackenzii-types'
|
||||
|
||||
import { deepCopy } from 'src/utilities/dom'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue