Skip to content

Commit fb392ca

Browse files
committed
update
1 parent 4acad4f commit fb392ca

File tree

19 files changed

+24
-19
lines changed

19 files changed

+24
-19
lines changed

update.list

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
web-framework/nodejs/hapi
1+
web-framework/nodejs/thinkjs
2+
web-framework/nodejs/nest
3+
web-framework/nodejs/koa-app
4+
web-framework/nodejs/express-app
5+
web-framework/nodejs/egg-app
6+
web-framework/nodejs/connect

web-framework/nodejs/connect/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Application
22
Name: start-connect
3-
Version: 1.2.1
3+
Version: 1.2.2
44
Provider:
55
- 阿里云
66
Description: Connect是一个Node.js框架,它使用被称为中间件的模块化组件,以可重用的方式实现web程序的逻辑

web-framework/nodejs/connect/src/s.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # 自定义执行逻辑,关于actions 的使用,可以参考:https://www.serverless-devs.com/serverless-devs/yaml#行为描述
3737
pre-deploy: # 在deploy之前运行
3838
- run: npm install --production # 要执行的系统命令,类似于一种钩子的形式
39-
path: ./code # 执行系统命令/钩子的路径
39+
path: ./ # 执行系统命令/钩子的路径
4040
# - component: fc build --use-docker # 要运行的组件,格式为【component: 组件名 命令 参数】(可以通过s cli registry search --type Component 获取组件列表)
4141
# - plugin: myplugin # 与运行的插件 (可以通过s cli registry search --type Plugin 获取组件列表)
4242
# args: # 插件的参数信息

web-framework/nodejs/connect/src/s_en.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # Customize execution logic. For the use of actions, please refer to: https://www.serverless-devs.com/serverless-devs/yaml#Behavior description
3737
pre-deploy: # run before deploy
3838
- run: npm install --production
39-
path: ./code
39+
path: ./
4040
# - component: fc build --use-docker # The component to run, the format is [component: component name command parameter] (you can get the component list through s cli registry search --type Component)
4141
# - run: docker build xxx # System command to execute, similar to a hook
4242
# path: ./src # The path to execute system commands/hooks

web-framework/nodejs/egg-app/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Application
22
Name: egg-app
3-
Version: 1.2.1
3+
Version: 1.2.2
44
Provider:
55
- 阿里云
66
Description: 为企业级框架和应用而生(部署到Node.js运行时)

web-framework/nodejs/egg-app/src/s.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # 自定义执行逻辑,关于actions 的使用,可以参考:https://www.serverless-devs.com/serverless-devs/yaml#行为描述
3737
pre-deploy: # 在deploy之前运行
3838
- run: npm install --production # 要执行的系统命令,类似于一种钩子的形式
39-
path: ./code # 执行系统命令/钩子的路径
39+
path: ./ # 执行系统命令/钩子的路径
4040
# - component: fc build --use-docker # 要运行的组件,格式为【component: 组件名 命令 参数】(可以通过s cli registry search --type Component 获取组件列表)
4141
# - plugin: myplugin # 与运行的插件 (可以通过s cli registry search --type Plugin 获取组件列表)
4242
# args: # 插件的参数信息

web-framework/nodejs/egg-app/src/s_en.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # Customize execution logic. For the use of actions, please refer to: https://www.serverless-devs.com/serverless-devs/yaml#Behavior description
3737
pre-deploy: # run before deploy
3838
- run: npm install --production
39-
path: ./code
39+
path: ./
4040
# - component: fc build --use-docker # The component to run, the format is [component: component name command parameter] (you can get the component list through s cli registry search --type Component)
4141
# - run: docker build xxx # System command to execute, similar to a hook
4242
# path: ./src # The path to execute system commands/hooks

web-framework/nodejs/express-app/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Application
22
Name: express-app
3-
Version: 1.2.1
3+
Version: 1.2.2
44
Provider:
55
- 阿里云
66
Description: 基于 Node.js 平台,快速、开放、极简的 Web 开发框架(部署到Node.js运行时)

web-framework/nodejs/express-app/src/s.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # 自定义执行逻辑,关于actions 的使用,可以参考:https://www.serverless-devs.com/serverless-devs/yaml#行为描述
3737
pre-deploy: # 在deploy之前运行
3838
- run: npm install --production # 要执行的系统命令,类似于一种钩子的形式
39-
path: ./code # 执行系统命令/钩子的路径
39+
path: ./ # 执行系统命令/钩子的路径
4040
# - component: fc build --use-docker # 要运行的组件,格式为【component: 组件名 命令 参数】(可以通过s cli registry search --type Component 获取组件列表)
4141
# - plugin: myplugin # 与运行的插件 (可以通过s cli registry search --type Plugin 获取组件列表)
4242
# args: # 插件的参数信息

web-framework/nodejs/express-app/src/s_en.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
actions: # Customize execution logic. For the use of actions, please refer to: https://www.serverless-devs.com/serverless-devs/yaml#Behavior description
3737
pre-deploy: # run before deploy
3838
- run: npm install --production
39-
path: ./code
39+
path: ./
4040
# - component: fc build --use-docker # The component to run, the format is [component: component name command parameter] (you can get the component list through s cli registry search --type Component)
4141
# - run: docker build xxx # System command to execute, similar to a hook
4242
# path: ./src # The path to execute system commands/hooks

0 commit comments

Comments
 (0)