cc-core-cli 1.0.71 → 1.0.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -7,7 +7,8 @@ const app = next({ dev: process.env.NODE_ENV !== 'production' })
7
7
  const handler = app.getRequestHandler()
8
8
  const cookieParser = require('cookie-parser')
9
9
  const bodyParser = require('body-parser')
10
- const { apis, request } = require('@shopstack/cc-admin-lib/server')
10
+ const request = require('./apis/request')
11
+ const apis = require('./apis')
11
12
 
12
13
  const PORT = process.env.PORT || 3000
13
14
 
@@ -49,7 +50,10 @@ app
49
50
  API_GATEWAY_MEDIA: process.env.API_GATEWAY_MEDIA,
50
51
  API_DOCUMENT_URL: process.env.API_DOCUMENT_URL,
51
52
  GOOGLE_MAP_KEY: process.env.GOOGLE_MAP_KEY,
52
- EDITOR_LICENSE_KEY: process.env.EDITOR_LICENSE_KEY
53
+ EDITOR_LICENSE_KEY: process.env.EDITOR_LICENSE_KEY,
54
+ COOKIE_SECURE: process.env.COOKIE_SECURE,
55
+ COOKIE_HTTP_ONLY: process.env.COOKIE_HTTP_ONLY,
56
+ COOKIE_SAME_SITE: process.env.COOKIE_SAME_SITE
53
57
  }
54
58
  return handler(req, res)
55
59
  }
@@ -1886,7 +1886,7 @@ h4.ant-typography {
1886
1886
  left: 50%;
1887
1887
  height: 25px;
1888
1888
  width: 2px;
1889
- background-color: #000;
1889
+ background-color: #999;
1890
1890
  position: relative;
1891
1891
  margin-left: -1px;
1892
1892
  }