-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue/788 #801
Issue/788 #801
Conversation
This is enabled via a CKEditor config on initialisation.
This features the addition of the lib/bowermanager.js helper, and moving the bower management to core. Further re-work is required to remove old, redundant code.
The 'build' folder was automatically added in v1.x of the Adapt framework but is not in v2.x. This change should allow backwards compatibility.
@@ -362,7 +362,7 @@ Origin.prototype.createServer = function (options, cb) { | |||
}, configuration.getConfig('dbName')); | |||
}; | |||
|
|||
Origin.prototype.startServer = function () { | |||
Origin.prototype.startServer = function (options) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
options should be checked, and defaulted if not passed:
options = 'undefined' === typeof options ? { skipVersionCheck: false } : options;
or similar
- Swapped console.log() calls for logger.log() - Moved defaulting the 'options' object to startServer()
+1 - all tested and worked with my courses. Although I reckon running npm install for the user would be a nice addition |
There's a separate issue for that here #804. ;) |
+1 works for me |
In course.json: - customStyle - tags - heroImage In components.json: - _componentType While looking into this it was noticed that the editorOnly property did not work with arrays/array items -- that is now fixed.
+1 tested and working. nice one. |
Adds support for refreshing core plugins as part of the upgrade.