Skip to content

Commit c8cc593

Browse files
committed
update folder directories
1 parent a30ee4e commit c8cc593

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/tailwind-plugin/buenTypeTailwind.ts renamed to src/buenTypeTailwind.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { DEFAULT_HEADLINE, DEFAULT_TEXT } from "../defaults.ts";
2-
import { CustomTypeDefinitions, TypeDefinition } from "../types.ts";
3-
import { createRemClamp } from "../utils/createRemClamp.ts";
4-
import { typedKeys } from "../utils/typedKeys.ts";
1+
import { DEFAULT_HEADLINE, DEFAULT_TEXT } from "./defaults.ts";
2+
import { CustomTypeDefinitions, TypeDefinition } from "./types.ts";
3+
import { createRemClamp } from "./utils/createRemClamp.ts";
4+
import { typedKeys } from "./utils/typedKeys.ts";
55

66
type AddUtilities = {
77
(utilities: Record<string, any>, options?: any): void;
@@ -16,7 +16,7 @@ type AddUtilities = {
1616
*/
1717
export function buenTypeTailwind(
1818
{ addUtilities }: { addUtilities: AddUtilities },
19-
options?: CustomTypeDefinitions,
19+
options?: CustomTypeDefinitions
2020
): void {
2121
const generateStyles = (definition: TypeDefinition) => {
2222
let styles: TypeDefinition = {
@@ -47,7 +47,7 @@ export function buenTypeTailwind(
4747
definition.clamp[0],
4848
definition.clamp[1],
4949
customMinScreenSize,
50-
customMaxScreenSize,
50+
customMaxScreenSize
5151
);
5252
}
5353

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
*
5858
* @module
5959
*/
60-
export { buenTypeTailwind } from "./tailwind-plugin/buenTypeTailwind.ts";
60+
export { buenTypeTailwind } from "./buenTypeTailwind.ts";
6161

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

0 commit comments

Comments
 (0)