mirror of
https://github.com/zhigang1992/examples.git
synced 2026-01-12 17:13:21 +08:00
19 lines
337 B
JavaScript
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",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|