From fc2772509da4a413ad48ddca2ad06eb4cf06d6e6 Mon Sep 17 00:00:00 2001 From: Avraham Essoudry Date: Mon, 20 Nov 2023 12:15:11 +0200 Subject: [PATCH] feat(compose): export ComposeActivationStrategy (#429) closes #427 --- package-lock.json | 1 + src/aurelia-templating-resources.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 1494d06..433e68e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,6 +5,7 @@ "requires": true, "packages": { "": { + "name": "aurelia-templating-resources", "version": "1.14.3", "license": "MIT", "dependencies": { diff --git a/src/aurelia-templating-resources.ts b/src/aurelia-templating-resources.ts index 4527d19..9577bc3 100644 --- a/src/aurelia-templating-resources.ts +++ b/src/aurelia-templating-resources.ts @@ -1,4 +1,4 @@ -import {Compose} from './compose'; +import {ActivationStrategy as ComposeActivationStrategy, Compose} from './compose'; import {If} from './if'; import {Else} from './else'; import {With} from './with'; @@ -79,6 +79,7 @@ function configure(config: any) { export { Compose, + ComposeActivationStrategy, If, Else, With,