Skip to content

Commit

Permalink
Merge pull request #41 from vordgi/cm-40
Browse files Browse the repository at this point in the history
cm-40 allow experimental hey in configuration
  • Loading branch information
vordgi authored Jun 27, 2024
2 parents 329179b + 0ace4c4 commit 0dc97ba
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.2.0",
"version": "0.2.1",
"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", "disableDistDeletion"];
const validKeys = ["prefix", "reservedNames", "cacheDir", "distDir", "disableDistDeletion", "experimental"];

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

0 comments on commit 0dc97ba

Please sign in to comment.