Skip to content

Commit

Permalink
update folder directories
Browse files Browse the repository at this point in the history
  • Loading branch information
johnchourajr committed Sep 24, 2024
1 parent a30ee4e commit c8cc593
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DEFAULT_HEADLINE, DEFAULT_TEXT } from "../defaults.ts";
import { CustomTypeDefinitions, TypeDefinition } from "../types.ts";
import { createRemClamp } from "../utils/createRemClamp.ts";
import { typedKeys } from "../utils/typedKeys.ts";
import { DEFAULT_HEADLINE, DEFAULT_TEXT } from "./defaults.ts";
import { CustomTypeDefinitions, TypeDefinition } from "./types.ts";
import { createRemClamp } from "./utils/createRemClamp.ts";
import { typedKeys } from "./utils/typedKeys.ts";

type AddUtilities = {
(utilities: Record<string, any>, options?: any): void;
Expand All @@ -16,7 +16,7 @@ type AddUtilities = {
*/
export function buenTypeTailwind(
{ addUtilities }: { addUtilities: AddUtilities },
options?: CustomTypeDefinitions,
options?: CustomTypeDefinitions
): void {
const generateStyles = (definition: TypeDefinition) => {
let styles: TypeDefinition = {
Expand Down Expand Up @@ -47,7 +47,7 @@ export function buenTypeTailwind(
definition.clamp[0],
definition.clamp[1],
customMinScreenSize,
customMaxScreenSize,
customMaxScreenSize
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*
* @module
*/
export { buenTypeTailwind } from "./tailwind-plugin/buenTypeTailwind.ts";
export { buenTypeTailwind } from "./buenTypeTailwind.ts";

/**
* A module that provides a function to create a `rem`-based `clamp` function.
Expand Down

0 comments on commit c8cc593

Please sign in to comment.