embark-area-51/test_apps/test_app/extensions/embark-service/index.js

23 lines
558 B
JavaScript
Raw Normal View History

const Haml = require('haml');
2018-02-28 22:45:39 +00:00
module.exports = function (embark) {
embark.registerServiceCheck('PluginService', function (cb) {
cb({name: "ServiceName", status: "on"});
});
2018-02-28 22:45:39 +00:00
embark.registerPipeline((embark.pluginConfig.files || ['**/*.haml']), function (opts) {
return Haml.render(opts.source);
2018-02-28 22:45:39 +00:00
});
embark.registerContractConfiguration({
"default": {
"contracts": {
"PluginStorage": {
"args": ["$SimpleStorage"]
}
}
}
});
embark.addContractFile("./contracts/pluginSimpleStorage.sol");
};