Skip to content

Commit

Permalink
Merge pull request #43 from NekitCorp/issues-35
Browse files Browse the repository at this point in the history
chore: 📝 Update manifest configuration to use static name and de…
  • Loading branch information
NekitCorp authored Jan 6, 2025
2 parents f7a4843 + b6d07f8 commit 817fe23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/manifest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineManifest } from "@crxjs/vite-plugin";
import packageJson from "../package.json";

const { version, name, description } = packageJson;
const { version } = packageJson;

// Convert from Semver (example: 0.1.0-beta6)
const [major, minor, patch] = version
Expand All @@ -12,8 +12,8 @@ const [major, minor, patch] = version

export default defineManifest(async () => ({
manifest_version: 3,
name: name,
description: description,
name: "Chrome Extension Svelte Typescript Boilerplate",
description: "Boilerplate for Chrome Extension Svelte Typescript project",
version: `${major}.${minor}.${patch}`,
version_name: version,
icons: {
Expand Down

0 comments on commit 817fe23

Please sign in to comment.