Skip to content

Commit

Permalink
fix: base.ts export, expose utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Beast committed Jun 27, 2024
1 parent b71a18d commit b686497
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"name": "@crayon/crayon",
"version": "4.0.0-alpha.1",
"version": "4.0.0-alpha.2",

"imports": {
"@std/assert": "jsr:@std/[email protected]"
},

"exports": {
".": "./main.ts",
"./base": "./src/crayon.ts",
"./raw": "./src/crayon.ts",
"./base": "./src/base.ts",
"./styles": "./src/styles/styles.ts",
"./extend": "./src/extend.ts"
"./extend": "./src/extend.ts",
"./utils": "./src/utils/mod.ts"
},

"fmt": {
Expand Down
2 changes: 2 additions & 0 deletions src/utils/mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./capitalize.ts";
export * from "./strings.ts";

0 comments on commit b686497

Please sign in to comment.