From e3ef3a693e40fabcdd3b38cc8449d1fbffc34ca4 Mon Sep 17 00:00:00 2001 From: robonen Date: Tue, 16 Apr 2024 16:39:24 +0700 Subject: [PATCH] feat(packages/stdlib): add patterns exports --- packages/stdlib/src/index.ts | 3 ++- packages/stdlib/src/patterns/index.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 packages/stdlib/src/patterns/index.ts diff --git a/packages/stdlib/src/index.ts b/packages/stdlib/src/index.ts index cd510a8..9ba9ae6 100644 --- a/packages/stdlib/src/index.ts +++ b/packages/stdlib/src/index.ts @@ -1,2 +1,3 @@ export * from './text'; -export * from './math'; \ No newline at end of file +export * from './math'; +export * from './patterns'; \ No newline at end of file diff --git a/packages/stdlib/src/patterns/index.ts b/packages/stdlib/src/patterns/index.ts new file mode 100644 index 0000000..e509dbc --- /dev/null +++ b/packages/stdlib/src/patterns/index.ts @@ -0,0 +1 @@ +export * from './behavioral/pubsub'; \ No newline at end of file