Skip to content

Commit

Permalink
🚑
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaubee committed Oct 12, 2024
1 parent 77bdca3 commit 0cbf0ee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
6 changes: 1 addition & 5 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions denokit/deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@gaubee/denokit",
"version": "0.4.0",
"exports": {
"./config_file": "./src/config_file.ts",
"./dnt_monorepo": "./src/dnt_monorepo.ts",
"./shell": "./src/shell.ts",
".": "./src/index.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/collections": "jsr:@std/collections@^1.0.8",
"@std/path": "jsr:@std/path@^1.0.6"
}
}
3 changes: 1 addition & 2 deletions denokit/src/dnt_monorepo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import fs from "node:fs";
import node_path from "node:path";
import { build, emptyDir } from "@deno/dnt";
import { iter_map_not_null } from "@gaubee/util/collections";
import { globToRegExp } from "@std/path";
import { globToRegExp, isGlob } from "@std/path";
import { $ } from "@gaubee/nodekit/shell";
import { normalizeFilePath } from "@gaubee/nodekit/path";
import { readJson, writeJson, writeYaml } from "@gaubee/nodekit/config_file";
import { isGlob } from "@std/path";
import { deepMerge } from "@std/collections";
// import type { str_replace_start } from "@gaubee/util/string";
const createResolver = (baseDir: string) => (...paths: string[]) =>
Expand Down

0 comments on commit 0cbf0ee

Please sign in to comment.