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

@ -1,6 +1,6 @@
# static-web-templates
# Project Mackenzii
This repo holds the various projects associated with `@goldenwere/static-web-templates`, a template-based solution for inflating different types of content without the need for a server or database.
This repo holds the various projects associated with `@goldenwere/mackenzii`, a template-based solution for inflating different types of content without the need for a server or database.
## Local Development
@ -44,7 +44,7 @@ TBA
## Architecture
This repo is set up to be a monorepo to help manage different projects under the `static-web-templates` umbrella. The repo is divided into the following:
This repo is set up to be a monorepo to help manage different projects under the `mackenzii` umbrella. The repo is divided into the following:
- libs: libraries which are package-like and meant to be consumed in a project
- types: shared types between the remaining libs/projects
- projects: end-products which are app-like meant to be built and deployed
@ -57,7 +57,7 @@ TBA
### /projects/sites
This package helps manage multiple websites in one place. The `./sites` folder is hidden by default for the sake of the main `static-web-templates` repo and is meant for maintaining dynamic content outside of source control. It is recommended to sync these sites directly with `/content` on whatever webhost is being used to host the site, such that:
This package helps manage multiple websites in one place. The `./sites` folder is hidden by default for the sake of the main `mackenzii` repo and is meant for maintaining dynamic content outside of source control. It is recommended to sync these sites directly with `/content` on whatever webhost is being used to host the site, such that:
1. deployment of the `/projects/frontend` project should ignore these sites' `/content` by excluding `/content` from the final build and ensuring the deployment API can leave `/content` unmodified remotely
2. syncing of the sites should ignore all other files besides `/content` by syncing directly with the `/content` folder

View file

@ -1,5 +1,5 @@
{
"name": "@goldenwere/static-web-templates-embeds",
"name": "@goldenwere/mackenzii-embeds",
"private": true,
"version": "0.0.0",
"type": "module",

View file

@ -1,4 +1,4 @@
import type { RoutedWindow } from '@goldenwere/static-web-templates-types'
import type { RoutedWindow } from '@goldenwere/mackenzii-types'
import type { AttributeObserver } from './observer'

View file

@ -1,5 +1,5 @@
{
"name": "@goldenwere/static-web-templates-types",
"name": "@goldenwere/mackenzii-types",
"private": true,
"version": "0.0.0",
"type": "module",

16
package-lock.json generated
View file

@ -1,11 +1,11 @@
{
"name": "@goldenwere/static-web-templates",
"name": "@goldenwere/mackenzii",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@goldenwere/static-web-templates",
"name": "@goldenwere/mackenzii",
"version": "0.0.0",
"workspaces": [
"projects/*",
@ -13,14 +13,14 @@
]
},
"libs/embeds": {
"name": "@goldenwere/static-web-templates-embeds",
"name": "@goldenwere/mackenzii-embeds",
"version": "0.0.0",
"peerDependencies": {
"typescript": "^5"
}
},
"libs/types": {
"name": "@goldenwere/static-web-templates-types",
"name": "@goldenwere/mackenzii-types",
"version": "0.0.0"
},
"node_modules/@babel/helper-string-parser": {
@ -435,11 +435,11 @@
"node": ">=12"
}
},
"node_modules/@goldenwere/static-web-templates-embeds": {
"node_modules/@goldenwere/mackenzii-embeds": {
"resolved": "libs/embeds",
"link": true
},
"node_modules/@goldenwere/static-web-templates-types": {
"node_modules/@goldenwere/mackenzii-types": {
"resolved": "libs/types",
"link": true
},
@ -3321,8 +3321,8 @@
"projects/frontend": {
"version": "0.0.0",
"devDependencies": {
"@goldenwere/static-web-templates-embeds": "*",
"@goldenwere/static-web-templates-types": "*",
"@goldenwere/mackenzii-embeds": "*",
"@goldenwere/mackenzii-types": "*",
"@types/dompurify": "3.0.5",
"@types/js-yaml": "4.0.9",
"@types/node": "18.16.x",

View file

@ -1,5 +1,5 @@
{
"name": "@goldenwere/static-web-templates",
"name": "@goldenwere/mackenzii",
"private": true,
"version": "0.0.0",
"type": "module",

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'