mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 06:08:11 +00:00
[Creation] Move uuid
...into core, since it is used by the Creation capability.
This commit is contained in:
@ -1,9 +1,4 @@
|
|||||||
{
|
{
|
||||||
"configuration": {
|
|
||||||
"paths": {
|
|
||||||
"uuid": "uuid"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extensions": {
|
"extensions": {
|
||||||
"routes": [
|
"routes": [
|
||||||
{
|
{
|
||||||
@ -178,16 +173,6 @@
|
|||||||
"copyright": "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
"copyright": "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||||
"license": "license-mit",
|
"license": "license-mit",
|
||||||
"link": "https://github.com/sindresorhus/screenfull.js/blob/gh-pages/license"
|
"link": "https://github.com/sindresorhus/screenfull.js/blob/gh-pages/license"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Math.uuid.js",
|
|
||||||
"version": "1.4",
|
|
||||||
"description": "Unique identifer generation (code adapted.)",
|
|
||||||
"author": "Robert Kieffer",
|
|
||||||
"website": "https://github.com/broofa/node-uuid",
|
|
||||||
"copyright": "Copyright (c) 2010 Robert Kieffer",
|
|
||||||
"license": "license-mit",
|
|
||||||
"link": "http://opensource.org/licenses/MIT"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
"name": "Open MCT Web Core",
|
"name": "Open MCT Web Core",
|
||||||
"description": "Defines core concepts of Open MCT Web.",
|
"description": "Defines core concepts of Open MCT Web.",
|
||||||
"sources": "src",
|
"sources": "src",
|
||||||
|
"configuration": {
|
||||||
|
"paths": {
|
||||||
|
"uuid": "uuid"
|
||||||
|
}
|
||||||
|
},
|
||||||
"extensions": {
|
"extensions": {
|
||||||
"versions": [
|
"versions": [
|
||||||
{
|
{
|
||||||
@ -240,6 +245,18 @@
|
|||||||
"value": [],
|
"value": [],
|
||||||
"description": "An array of additional persistence spaces to load models from."
|
"description": "An array of additional persistence spaces to load models from."
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"licenses": [
|
||||||
|
{
|
||||||
|
"name": "Math.uuid.js",
|
||||||
|
"version": "1.4",
|
||||||
|
"description": "Unique identifer generation (code adapted.)",
|
||||||
|
"author": "Robert Kieffer",
|
||||||
|
"website": "https://github.com/broofa/node-uuid",
|
||||||
|
"copyright": "Copyright (c) 2010 Robert Kieffer",
|
||||||
|
"license": "license-mit",
|
||||||
|
"link": "http://opensource.org/licenses/MIT"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ require.config({
|
|||||||
'es6-promise': 'platform/framework/lib/es6-promise-2.0.0.min',
|
'es6-promise': 'platform/framework/lib/es6-promise-2.0.0.min',
|
||||||
'moment': 'platform/telemetry/lib/moment.min',
|
'moment': 'platform/telemetry/lib/moment.min',
|
||||||
'moment-duration-format': 'platform/features/clock/lib/moment-duration-format',
|
'moment-duration-format': 'platform/features/clock/lib/moment-duration-format',
|
||||||
'uuid': 'platform/commonUI/browse/lib/uuid'
|
'uuid': 'platform/core/lib/uuid'
|
||||||
},
|
},
|
||||||
|
|
||||||
shim: {
|
shim: {
|
||||||
|
Reference in New Issue
Block a user