From 05f48326083b618023aef59ba9a4faa391a5eda1 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 20 Nov 2014 10:41:39 -0800 Subject: [PATCH] [Framework] Add bundle definition Add an (empty) bundle definition for the framework component. This has the practical effect of avoiding 404 errors in the console log, since platform/framework is included in bundles.json (the set of active bundles) in order to ensure detection by the test framework. This also provides a place for possible future extensions provided by the framework itself. WTD-572. --- platform/framework/bundle.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 platform/framework/bundle.json diff --git a/platform/framework/bundle.json b/platform/framework/bundle.json new file mode 100644 index 0000000000..570d46ccb2 --- /dev/null +++ b/platform/framework/bundle.json @@ -0,0 +1,5 @@ +{ + "name": "Open MCT Web Framework Component", + "description": "Framework layer for Open MCT Web; interprets bundle definitions and serves as an intermediary between Require and Angular.", + "extensions": {} +} \ No newline at end of file