From 84634f03ed852f01b330e5edfe37886aa50b01f2 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 1 Apr 2015 15:11:47 -0700 Subject: [PATCH] [Policy] Add bundle declaration Add declaration for policy bundle, WTD-973. --- platform/policy/bundle.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 platform/policy/bundle.json diff --git a/platform/policy/bundle.json b/platform/policy/bundle.json new file mode 100644 index 0000000000..ea836ca732 --- /dev/null +++ b/platform/policy/bundle.json @@ -0,0 +1,21 @@ +{ + "name": "Policy Service", + "description": "Provides support for extension-driven decisions.", + "sources": "src", + "extensions": { + "components": [ + { + "type": "decorator", + "provides": "actionService", + "implementation": "PolicyActionDecorator.js", + "depends": [ "policyService" ] + }, + { + "type": "provider", + "provides": "policyService", + "implementation": "PolicyProvider.js", + "depends": [ "policies[]" ] + } + ] + } +} \ No newline at end of file