create-steedos-app 2.1.109 → 2.1.112
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": "create-steedos-app",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.112",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"steedos"
|
|
6
6
|
],
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"resolutions": {
|
|
36
36
|
"**/chalk": "3.0.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "dae9297d86eaa9e2566f1e9b5f82147062c2d7a2"
|
|
39
39
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"repository": "https://github.com/steedos/steedos-project-template.git",
|
|
6
6
|
"description": "",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": "
|
|
8
|
+
"node": ">=12.22"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "yarn start:community",
|
|
@@ -24,14 +24,15 @@
|
|
|
24
24
|
"author": "",
|
|
25
25
|
"license": "ISC",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@steedos/service-community": "^2.2
|
|
28
|
-
"@steedos/service-enterprise": "^2.2
|
|
27
|
+
"@steedos/service-community": "^2.2",
|
|
28
|
+
"@steedos/service-enterprise": "^2.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"eslint": "^7.7.0",
|
|
32
32
|
"jest": "^26.4.2",
|
|
33
33
|
"jest-cli": "^26.4.2",
|
|
34
|
-
"moleculer-
|
|
34
|
+
"moleculer-cli": "^0.8.0",
|
|
35
|
+
"moleculer-repl": "^0.7.1",
|
|
35
36
|
"nodemon": "^2.0.7"
|
|
36
37
|
},
|
|
37
38
|
"homepage": "https://www.steedos.com",
|
|
@@ -50,7 +51,8 @@
|
|
|
50
51
|
"**/fibers": "^4.0.3",
|
|
51
52
|
"**/cookies": "0.6.2",
|
|
52
53
|
"**/@babel/runtime": "7.12.0",
|
|
53
|
-
"**/graphql": "^15.3.0"
|
|
54
|
+
"**/graphql": "^15.3.0",
|
|
55
|
+
"**/pass-stream": "1.0.0"
|
|
54
56
|
},
|
|
55
57
|
"publishConfig": {
|
|
56
58
|
"access": "public"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image: ecr.aws.steedos.cn/dockerhub/steedos/gitpod-workspace-base:2.
|
|
1
|
+
image: ecr.aws.steedos.cn/dockerhub/steedos/gitpod-workspace-base:2.2.2
|
|
2
2
|
|
|
3
3
|
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
|
|
4
4
|
ports:
|
|
@@ -28,6 +28,9 @@ tasks:
|
|
|
28
28
|
- name: Redis
|
|
29
29
|
command: |
|
|
30
30
|
redis-server --protected-mode no --save "" --appendonly no --client-output-buffer-limit replica 0 0 0 --client-output-buffer-limit pubsub 0 0 0 --client-output-buffer-limit slave 0 0 0
|
|
31
|
+
- name: Steedos-cli
|
|
32
|
+
command: |
|
|
33
|
+
npm i steedos-cli@2.2.37 --global
|
|
31
34
|
- name: Steedos
|
|
32
35
|
init: |
|
|
33
36
|
yarn install
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// 使用 IntelliSense 了解相关属性。
|
|
3
|
-
// 悬停以查看现有属性的描述。
|
|
4
|
-
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"type": "node",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"name": "启动程序",
|
|
11
|
-
"skipFiles": [
|
|
12
|
-
"<node_internals>/**"
|
|
13
|
-
],
|
|
14
|
-
"program": "${workspaceFolder}/server.js",
|
|
15
|
-
"runtimeArgs": ["--max-old-space-size=2048", "--stack_trace_limit=200"]
|
|
16
|
-
}
|
|
17
|
-
]
|
|
18
|
-
}
|