Workflow Metadata 🥷
fast-alfred
configuration allows you ot modify & sync the info.plist
file automatically
In order to change the values, change the configuration file .fast-alfred.config.cjs
at the root of your project:
Example
javascript
const { author, description, homepage } = require('./package.json')
const README = `
PUT YOUR README IN HERE...
LINK TO REPO: ${homepage}
`.trim()
/**
* @type {import('fast-alfred').FastAlfredConfig}
*/
module.exports = {
workflowMetadata: {
name: 'WORKFLOW NAME',
category: '<category>',
createdby: author.name,
webaddress: homepage,
description,
readme: README,
},
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21