Skip to content

Commit d191a23

Browse files
committed
Added eliza to jobs
1 parent 89c54ef commit d191a23

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

jobs.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,23 @@ module.exports = {
66
description: '',
77
basePath: fs.realpathSync(__dirname),
88
variants: {
9+
eliza: {
10+
name: 'Eliza',
11+
description: 'Eliza chat bot. Isn\'t she awesome?',
12+
basePath: '~/Desktop/Dev/eliza-cli',
13+
command: 'node',
14+
args: ['eliza']
15+
},
916
ls: {
1017
name: 'ls',
1118
description: 'Calls ls in app folder',
12-
script: 'ls',
19+
command: 'ls',
1320
args: []
1421
},
1522
lsla: {
1623
name: 'ls -la',
1724
description: 'Calls ls -la in app folder',
18-
script: 'ls',
25+
command: 'ls',
1926
args: ['-la']
2027
},
2128
}

0 commit comments

Comments
 (0)