2018-04-25 17:05:58 +00:00
|
|
|
const Haml = require('haml');
|
2018-02-28 22:45:39 +00:00
|
|
|
|
2018-04-25 17:05:58 +00:00
|
|
|
module.exports = function (embark) {
|
|
|
|
embark.registerServiceCheck('PluginService', function (cb) {
|
2017-04-02 03:22:43 +00:00
|
|
|
cb({name: "ServiceName", status: "on"});
|
2017-03-16 11:31:52 +00:00
|
|
|
});
|
2018-02-28 22:45:39 +00:00
|
|
|
|
2018-04-25 17:05:58 +00:00
|
|
|
embark.registerPipeline((embark.pluginConfig.files || ['**/*.haml']), function (opts) {
|
|
|
|
return Haml.render(opts.source);
|
2018-02-28 22:45:39 +00:00
|
|
|
});
|
2018-04-25 17:05:58 +00:00
|
|
|
|
|
|
|
embark.registerContractConfiguration({
|
|
|
|
"default": {
|
|
|
|
"contracts": {
|
|
|
|
"PluginStorage": {
|
|
|
|
"args": ["$SimpleStorage"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
embark.addContractFile("./contracts/pluginSimpleStorage.sol");
|
2018-04-25 19:01:01 +00:00
|
|
|
|
|
|
|
embark.addFileToPipeline('./fileInPipeline.js');
|
|
|
|
embark.addFileToPipeline('./fileInPipeline.js', 'js/fileInPipeline.js');
|
|
|
|
|
2018-05-29 13:37:16 +00:00
|
|
|
embark.registerActionForEvent("deploy:contract:beforeDeploy", (params, cb) => {
|
|
|
|
embark.logger.info("applying beforeDeploy plugin...");
|
|
|
|
//console.dir(params);
|
|
|
|
//console.dir(cb);
|
|
|
|
//console.dir('------------------');
|
|
|
|
cb();
|
2018-04-25 19:01:01 +00:00
|
|
|
});
|
2018-04-25 20:27:47 +00:00
|
|
|
|
2018-05-10 23:57:26 +00:00
|
|
|
// NOTE: uncommenting this will make dappConnection stop working
|
|
|
|
//embark.registerClientWeb3Provider(function(options) {
|
|
|
|
// return "web3 = new Web3(new Web3.providers.HttpProvider('http://" + options.rpcHost + ":" + options.rpcPort + "'));";
|
|
|
|
//});
|
2018-04-25 20:27:47 +00:00
|
|
|
|
|
|
|
embark.registerConsoleCommand((cmd) => {
|
|
|
|
if (cmd === "hello") {
|
|
|
|
return "hello there!";
|
|
|
|
}
|
|
|
|
// continue to embark or next plugin;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2018-04-26 18:00:41 +00:00
|
|
|
embark.events.on("contractsDeployed", function() {
|
|
|
|
embark.logger.info("plugin says: your contracts have been deployed");
|
|
|
|
});
|
|
|
|
|
2017-03-16 11:31:52 +00:00
|
|
|
};
|