Skip to content

Commit

Permalink
chore: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww committed Nov 25, 2024
1 parent fb0fc91 commit 0a19af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface ObsidianPluginManifest {
}

export async function generateObsidianPluginManifest() {
const unocssManifest = {
const vueManifest = {
id: 'obsidian-plugin-vue',
name: 'Vue',
version: packageJSON.version,
Expand All @@ -27,5 +27,5 @@ export async function generateObsidianPluginManifest() {
isDesktopOnly: false,
} satisfies ObsidianPluginManifest

await writeFile(join(cwd(), 'dist', 'manifest.json'), JSON.stringify(unocssManifest, null, 2))
await writeFile(join(cwd(), 'dist', 'manifest.json'), JSON.stringify(vueManifest, null, 2))
}

0 comments on commit 0a19af7

Please sign in to comment.