UNPKG
awm
Version:
latest (0.1.0)
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Alfred Workflow Manager, using packal.org
github.com/jonathanwiesel/awm
jonathanwiesel/awm
awm
/
cmds
/
reset.js
15 lines
(11 loc)
•
304 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
awm =
require
(
'../lib/awm'
);
module
.
exports
=
function
(
program
) { program .
command
(
'reset'
) .
description
(
'Reset the manifest file from packal.org.'
) .
action
(
function
(
){ awm.
fetchAndParseManifest
(
function
(
jsManifest
){ awm.
writeManifest
(jsManifest); }); }); };