Skip to content

Commit

Permalink
Merge pull request #31 from vordgi/cm-30
Browse files Browse the repository at this point in the history
cm-30 fix config validation
  • Loading branch information
vordgi authored Apr 20, 2024
2 parents eab69cd + 3b85bfd commit e3e0a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/validateConfig.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Config } from "./types/plugin";

const validKeys = ["prefix", "reservedNames", "cacheDir", "distDir"];
const validKeys = ["prefix", "reservedNames", "cacheDir", "distDir", "disableDistDeletion"];

const validateIsObject = (config: unknown): config is Config => {
if (!config) return false;
Expand Down

0 comments on commit e3e0a16

Please sign in to comment.