Skip to content

Commit

Permalink
remove signal*.ts submodules and port it over to a separate project…
Browse files Browse the repository at this point in the history
… repository in order to make it much more featureful and modular

the new signal repository (currently private) is at: `https://github.com/omar-azmi/tsignal_ts`
add `StaticImplements` in `typedefs.ts`, which allows one to `implement` static class methods (and also static properties)
bump minor version to 0.7.0
  • Loading branch information
omar-azmi committed Oct 4, 2023
1 parent 78c9d0d commit 98dab56
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 1,428 deletions.
4 changes: 1 addition & 3 deletions build_npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const sub_entrypoints: string[] = [
"./src/mapper.ts",
"./src/numericarray.ts",
"./src/numericmethods.ts",
"./src/signal.ts",
"./src/stringman.ts",
"./src/struct.ts",
"./src/typedbuffer.ts",
Expand Down Expand Up @@ -70,7 +69,6 @@ const typedoc = {
"mapper": site_root + "modules/mapper.html",
"numericarray": site_root + "modules/numericarray.html",
"numericmethods": site_root + "modules/numericmethods.html",
"signal": site_root + "modules/signal.html",
"stringman": site_root + "modules/stringman.html",
"struct": site_root + "modules/struct.html",
"typedbuffer": site_root + "modules/typedbuffer.html",
Expand Down Expand Up @@ -113,7 +111,7 @@ await build({
},
compilerOptions: deno_package.compilerOptions,
typeCheck: false,
declaration: true,
declaration: "inline",
esModule: true,
scriptModule: false,
test: false,
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kitchensink_ts",
"version": "0.6.5a",
"version": "0.7.0",
"description": "a collection of personal utility functions",
"author": "Omar Azmi",
"license": "Lulz plz don't steal yet",
Expand Down
4 changes: 2 additions & 2 deletions src/builtin_aliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ export const {
isExtensible: object_isExtensible,
isFrozen: object_isFrozen,
isSealed: object_isSealed,
keys: object_keys,
//keys: object_keys,
preventExtensions: object_preventExtensions,
seal: object_seal,
setPrototypeOf: object_setPrototypeOf,
values: object_values,
//values: object_values,
} = Object

export const {
Expand Down
6 changes: 4 additions & 2 deletions src/builtin_aliases_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ export const {

export const {
assign: object_assign,
getPrototypeOf: object_getPrototypeOf
keys: object_keys,
getPrototypeOf: object_getPrototypeOf,
values: object_values,
} = Object

export const date_now = Date.now
Expand All @@ -39,4 +41,4 @@ export const dom_setTimeout = setTimeout
export const dom_clearTimeout = clearTimeout
export const dom_setInterval = setInterval
export const dom_clearInterval = clearInterval
export const noop: () => void = () => {}
export const noop: () => void = () => { }
1 change: 0 additions & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export * from "./lambdacalc.ts"
export * from "./mapper.ts"
export * from "./numericarray.ts"
export * from "./numericmethods.ts"
export * from "./signal.ts"
export * from "./stringman.ts"
export * from "./struct.ts"
export * from "./typedbuffer.ts"
Expand Down
260 changes: 0 additions & 260 deletions src/signal.ts

This file was deleted.

Loading

0 comments on commit 98dab56

Please sign in to comment.