synap 0.8.0 → 0.8.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "synap",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "A CLI for externalizing your working memory",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -2070,7 +2070,7 @@ async function main() {
2070
2070
  message: 'Where should synap store your data?',
2071
2071
  choices: [
2072
2072
  {
2073
- name: `Default (${path.join(os.homedir(), '.config', 'synap')})`,
2073
+ name: `Default (${storage.DATA_DIR})`,
2074
2074
  value: 'default',
2075
2075
  description: 'Recommended for most users'
2076
2076
  },