storyblok 3.17.1 → 3.17.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.
@@ -12,7 +12,7 @@ jobs:
12
12
  - uses: actions/checkout@v3
13
13
  - uses: actions/setup-node@v3
14
14
  with:
15
- node-version: 16
15
+ node-version: 18
16
16
  cache: 'yarn'
17
17
  - name: Install dependencies
18
18
  run: yarn
@@ -20,4 +20,4 @@ jobs:
20
20
  env:
21
21
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
22
  NPM_TOKEN: ${{ secrets.NPM_PUBLISH }}
23
- run: npx semantic-release
23
+ run: npx semantic-release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storyblok",
3
- "version": "3.17.1",
3
+ "version": "3.17.2",
4
4
  "description": "A simple CLI to start Storyblok from your command line.",
5
5
  "repository": {
6
6
  "type": "git",
package/src/cli.js CHANGED
@@ -16,7 +16,7 @@ const { getQuestions, lastStep, api, creds } = require('./utils')
16
16
  const { SYNC_TYPES, COMMANDS } = require('./constants')
17
17
 
18
18
  clear()
19
- console.log(chalk.cyan(figlet.textSync('Storyblok')))
19
+ console.log(chalk.cyan(figlet.textSync('storyblok')))
20
20
  console.log()
21
21
  console.log()
22
22
  console.log('Hi, welcome to the Storyblok CLI')
package/src/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const API_URL = 'https://api.storyblok.com/v1/'
2
2
  const US_API_URL = 'https://api-us.storyblok.com/v1/'
3
- const CN_API_URL = 'https://api.storyblokchina.cn/v1/'
3
+ const CN_API_URL = 'https://app.storyblokchina.cn/v1/'
4
4
  const LOGIN_URL = `${API_URL}users/login`
5
5
  const SIGNUP_URL = `${API_URL}users/signup`
6
6