add 3rd party libraries to imports

This commit is contained in:
Thomas Grainger 2016-11-29 03:11:21 +00:00
parent 95daa65d7d
commit 661b420103
No known key found for this signature in database
GPG key ID: 995EA0A029283160
28 changed files with 301 additions and 220 deletions

View file

@ -11,13 +11,13 @@ import Operation from './Operation';
* @class
* @param {Object} recipe_config
*/
const Recipe = function (recipe_config) {
export default function Recipe(recipe_config) {
this.op_list = [];
if (recipe_config) {
this._parse_config(recipe_config);
}
};
}
/**