We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dbc299 commit d81a88dCopy full SHA for d81a88d
README.md
@@ -34,6 +34,16 @@ module.exports = {
34
},
35
requiredConfig: ['awesomeApiKey'], // throw an error if this is not configured
36
37
+ // return an object from here to add functionality to the `pluginHelper`
38
+ // that is passed in to user defined config property functions
39
+ pluginHelper: function(context) {
40
+ return {
41
+ sayHello: function() {
42
+ return 'Hello' + context.project.name();
43
+ }
44
+ };
45
+ },
46
+
47
// implement any hooks appropriate for your plugin
48
willUpload: function(context) {
49
// Use the `readConfig` method for uniform access to this plugin's config,
0 commit comments