@leeguoo/wrangler-accounts 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -61,6 +61,7 @@ wrangler-accounts remove old
61
61
  If you do not specify a config path, the CLI checks for these and uses the first existing path:
62
62
 
63
63
  - ~/.wrangler/config/default.toml
64
+ - ~/Library/Preferences/.wrangler/config/default.toml
64
65
  - ~/.config/.wrangler/config/default.toml
65
66
  - ~/.config/wrangler/config/default.toml
66
67
 
@@ -101,6 +101,7 @@ function detectConfigPath(cliPath) {
101
101
  const home = os.homedir();
102
102
  const candidates = [
103
103
  path.join(home, ".wrangler", "config", "default.toml"),
104
+ path.join(home, "Library", "Preferences", ".wrangler", "config", "default.toml"),
104
105
  path.join(home, ".config", ".wrangler", "config", "default.toml"),
105
106
  path.join(home, ".config", "wrangler", "config", "default.toml"),
106
107
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeguoo/wrangler-accounts",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local CLI to manage multiple Cloudflare Wrangler login profiles.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/leeguooooo/wrangler-accounts.git"
20
+ "url": "git+https://github.com/leeguooooo/wrangler-accounts.git"
21
21
  },
22
22
  "bugs": {
23
23
  "url": "https://github.com/leeguooooo/wrangler-accounts/issues"