Files
examples/with-postpublish-hooks/app.config.js
2020-05-12 14:44:00 -07:00

19 lines
337 B
JavaScript

export default {
hooks: {
postPublish: [
{
file: "./hooks/echo",
config: {
message: "hello brent",
},
},
{
file: "expo-postpublish-slack-notify",
config: {
webhookUrl: "https://hooks.slack.com/your-webhook-info-here",
},
},
],
},
};