@symbo.ls/cli 2.28.31 → 2.28.36

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/bin/fetch.js CHANGED
@@ -17,7 +17,7 @@ const LOCAL_CONFIG_PATH =
17
17
  const DEFAULT_REMOTE_REPOSITORY = 'https://github.com/symbo-ls/default-config/'
18
18
  const DEFAULT_REMOTE_CONFIG_PATH = 'https://api.symbols.app/' // eslint-disable-line
19
19
 
20
- const API_URL_LOCAL = 'http://localhost:13335/get'
20
+ const API_URL_LOCAL = 'http://localhost:8080/get'
21
21
  const API_URL = 'https://api.symbols.app/get'
22
22
 
23
23
  const rcFile = loadModule(RC_PATH) // eslint-disable-line
package/bin/sync.js CHANGED
@@ -12,7 +12,7 @@ import { convertFromCli } from './convert.js'
12
12
 
13
13
  const { debounce } = utils.default || utils
14
14
 
15
- const SOCKET_API_URL_LOCAL = 'http://localhost:13335/'
15
+ const SOCKET_API_URL_LOCAL = 'http://localhost:8080/'
16
16
  const SOCKET_API_URL = 'https://api.symbols.app/'
17
17
 
18
18
  const debugMsg = chalk.dim(
package/helpers/config.js CHANGED
@@ -22,6 +22,6 @@ export const getApiUrl = () => {
22
22
  case 'staging':
23
23
  return 'https://api-staging.symbols.app'
24
24
  default:
25
- return 'http://localhost:13335'
25
+ return 'http://localhost:8080'
26
26
  }
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/cli",
3
- "version": "2.28.31",
3
+ "version": "2.28.36",
4
4
  "description": "Fetch your Symbols configuration",
5
5
  "main": "bin/fetch.js",
6
6
  "author": "Symbols",
@@ -15,9 +15,9 @@
15
15
  "vpatch": "npm version patch && npm publish"
16
16
  },
17
17
  "dependencies": {
18
- "@symbo.ls/fetch": "^2.28.31",
19
- "@symbo.ls/init": "^2.28.31",
20
- "@symbo.ls/socket": "^2.28.31",
18
+ "@symbo.ls/fetch": "^2.28.36",
19
+ "@symbo.ls/init": "^2.28.36",
20
+ "@symbo.ls/socket": "^2.28.36",
21
21
  "chalk": "^5.4.1",
22
22
  "commander": "^13.1.0",
23
23
  "diff": "^5.2.0",
@@ -26,5 +26,5 @@
26
26
  "node-fetch": "^3.3.2",
27
27
  "v8-compile-cache": "^2.4.0"
28
28
  },
29
- "gitHead": "f46ba86d1bb82bb89b5f2816d098da5726a77282"
29
+ "gitHead": "8a98e91990385e522a6287faf922237dcbff0500"
30
30
  }