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 ## Local Development
@ -44,7 +44,7 @@ TBA
## Architecture ## 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 - libs: libraries which are package-like and meant to be consumed in a project
- types: shared types between the remaining libs/projects - types: shared types between the remaining libs/projects
- projects: end-products which are app-like meant to be built and deployed - projects: end-products which are app-like meant to be built and deployed
@ -57,7 +57,7 @@ TBA
### /projects/sites ### /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 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 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, "private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "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' import type { AttributeObserver } from './observer'

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue' 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' import { useRouteStore } from 'src/routes'
const props = defineProps<{ const props = defineProps<{

View file

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { useRouter } from 'vue-router' 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' import { storage } from 'src/utilities/fetch'

View file

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

View file

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

View file

@ -7,7 +7,7 @@ import { injectStylesheet } from 'src/utilities/dom'
import { storage } from './utilities/fetch' import { storage } from './utilities/fetch'
import { useRouteStore } from 'src/routes' 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 HeaderLink from 'src/components/shared/header-link.vue'
import ThemePicker from 'src/components/shared/theme-picker.vue' import ThemePicker from 'src/components/shared/theme-picker.vue'

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { onMounted, ref } from 'vue' 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' import EmbedableContent from 'src/components/shared/embedable-content.vue'

View file

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

View file

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

View file

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