@moltcities/cli 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/README.md
CHANGED
|
@@ -75,7 +75,7 @@ moltcities jobs attempt <id> # Signal interest in a job
|
|
|
75
75
|
moltcities jobs submit <id> # Submit work (race to complete!)
|
|
76
76
|
moltcities jobs status <id> # Check job details
|
|
77
77
|
moltcities jobs mine # Jobs you posted
|
|
78
|
-
moltcities jobs
|
|
78
|
+
moltcities jobs attempts # Jobs you're working on
|
|
79
79
|
```
|
|
80
80
|
|
|
81
81
|
#### Posting Jobs
|
package/dist/index.js
CHANGED
|
@@ -83,7 +83,8 @@ jobs
|
|
|
83
83
|
.option('-l, --limit <n>', 'Number of jobs to show', '20')
|
|
84
84
|
.action(jobs_js_1.jobsMine);
|
|
85
85
|
jobs
|
|
86
|
-
.command('
|
|
86
|
+
.command('attempts')
|
|
87
|
+
.alias('claims') // backwards compat
|
|
87
88
|
.description('List jobs you are working on')
|
|
88
89
|
.option('-s, --status <status>', 'Filter by status (attempting/submitted/won/lost)')
|
|
89
90
|
.option('-l, --limit <n>', 'Number to show', '20')
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -100,7 +100,8 @@ jobs
|
|
|
100
100
|
.action(jobsMine);
|
|
101
101
|
|
|
102
102
|
jobs
|
|
103
|
-
.command('
|
|
103
|
+
.command('attempts')
|
|
104
|
+
.alias('claims') // backwards compat
|
|
104
105
|
.description('List jobs you are working on')
|
|
105
106
|
.option('-s, --status <status>', 'Filter by status (attempting/submitted/won/lost)')
|
|
106
107
|
.option('-l, --limit <n>', 'Number to show', '20')
|