Compare commits

...

4 commits

Author SHA1 Message Date
Val 1ac834dd94
Merge pull request #5 from jschauma/master
tyop: colections -> collections
2023-05-16 15:51:43 -04:00
Jan Schaumann a10a698861 tyop: colections -> collections 2023-05-16 14:25:25 -04:00
Val 6526cd51a7 1.0.2 2022-01-23 09:56:25 -05:00
Val 76e81eb562 CLI error handling 2022-01-23 09:56:19 -05:00
3 changed files with 6 additions and 2 deletions

View file

@ -59,7 +59,7 @@ A typical flow will look like this:
```sh
ffs -c ~/.ffs-creds.json oauth
ffs -c ~/.ffs-creds.json colections
ffs -c ~/.ffs-creds.json collections
ffs -c ~/.ffs-creds.json get bookmarks --full
```

4
ffs
View file

@ -3,3 +3,7 @@
const cli = require('./cli')
cli(process.argv)
.catch(err => {
console.error(err.stack || err)
process.exit(1)
})

View file

@ -1,6 +1,6 @@
{
"name": "firefox-sync-cli",
"version": "1.0.1",
"version": "1.0.2",
"description": "Manage Firefox Sync from the CLI! ✨",
"license": "Unlicense",
"author": "Val (https://val.codejam.info)",