Skip to content

Commit

Permalink
compatibility version for https://deno.land/x/ and github release.
Browse files Browse the repository at this point in the history
the `@oazmi/kitchensink` dependency has been simply reverted back to `kitchensink_ts` from https://deno.land/x/ .
  • Loading branch information
omar-azmi committed Mar 5, 2024
1 parent 19cb66e commit f1b6246
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build_npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ await dntBuild({
// TODO: ISSUE: `dnt` won't currently work with `jsr` imports, not until the following issue is resolved: https://github.com/denoland/dnt/issues/378
["binder", "builtin_aliases_deps", "lambda", "struct", "typedefs",].map((submodule_path) => {
return [
"jsr:@oazmi/kitchensink@0.7.5/" + submodule_path,
"https://deno.land/x/kitchensink_ts@v0.7.5/" + submodule_path + ".ts",
{
name: "@oazmi/kitchensink",
version: "0.7.5-a",
Expand All @@ -54,7 +54,7 @@ await dntBuild({
]
})
)
})
}).catch(() => {})

// copy other files
await Deno.copyFile("./readme.md", pathJoin(npm_dir, "readme.md"))
Expand Down
10 changes: 5 additions & 5 deletions src/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export {
bind_set_delete,
bind_set_has,
bind_stack_seek
} from "jsr:@oazmi/kitchensink@0.7.5/binder"
export { array_isArray, noop, object_assign, object_entries, object_keys, object_values, promise_forever, promise_reject, promise_resolve, symbol_iterator } from "jsr:@oazmi/kitchensink@0.7.5/builtin_aliases_deps"
export { THROTTLE_REJECT, throttle, throttleAndTrail } from "jsr:@oazmi/kitchensink@0.7.5/lambda"
export { isFunction, isPrimitive, prototypeOfClass } from "jsr:@oazmi/kitchensink@0.7.5/struct"
export type { CallableFunctionsOf, ConstructorOf, MethodsOf, StaticImplements } from "jsr:@oazmi/kitchensink@0.7.5/typedefs"
} from "https://deno.land/x/kitchensink_ts@v0.7.5/binder.ts"
export { array_isArray, noop, object_assign, object_entries, object_keys, object_values, promise_forever, promise_reject, promise_resolve, symbol_iterator } from "https://deno.land/x/kitchensink_ts@v0.7.5/builtin_aliases_deps.ts"
export { THROTTLE_REJECT, throttle, throttleAndTrail } from "https://deno.land/x/kitchensink_ts@v0.7.5/lambda.ts"
export { isFunction, isPrimitive, prototypeOfClass } from "https://deno.land/x/kitchensink_ts@v0.7.5/struct.ts"
export type { CallableFunctionsOf, ConstructorOf, MethodsOf, StaticImplements } from "https://deno.land/x/kitchensink_ts@v0.7.5/typedefs.ts"

export const enum DEBUG {
LOG = 0,
Expand Down

0 comments on commit f1b6246

Please sign in to comment.