Skip to content

Commit

Permalink
Merge pull request #33 from vordgi/cm-32
Browse files Browse the repository at this point in the history
cm-32 release 0.1.5
  • Loading branch information
vordgi authored Apr 20, 2024
2 parents 203c53b + 9481b52 commit 54a580a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "classnames-minifier",
"version": "0.1.4",
"version": "0.1.5",
"description": "Library for configuring style modules to generate compressed classes",
"main": "./dist/ClassnamesMinifier.js",
"types": "./dist/ClassnamesMinifier.d.ts",
Expand Down
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 54a580a

Please sign in to comment.