@serverless-devs/s 2.1.2-beta.2 → 2.1.3-beta.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.
- package/_config.yml +1 -1
- package/lib/clean/index.js +1 -1
- package/lib/cli/index.js +2 -2
- package/lib/component/index.js +1 -1
- package/lib/config/add/index.js +1 -1
- package/lib/config/delete/index.js +1 -1
- package/lib/config/get/index.js +1 -1
- package/lib/config/index.js +1 -1
- package/lib/edit/index.js +27 -27
- package/lib/index.js +83 -83
- package/lib/init/index.js +60 -60
- package/lib/init/init-config.js +112 -4
- package/lib/set/analysis/index.js +1 -1
- package/lib/set/index.js +1 -1
- package/lib/set/locale/index.js +1 -1
- package/lib/set/registry/index.js +1 -1
- package/lib/set/workspace/index.js +1 -1
- package/lib/update-notifier/index.js +19 -19
- package/lib/verify/index.js +32 -32
- package/package.json +1 -1
- package/readme.md +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serverless-devs/s",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3-beta.2",
|
|
4
4
|
"description": "Serverless devs tool, serverless developer tool, supports Alibaba cloud, AWS, azure, baidu cloud, Huawei cloud, Google cloud and Tencent cloud.",
|
|
5
5
|
"homepage": "https://www.serverless-devs.com",
|
|
6
6
|
"keywords": [
|
package/readme.md
CHANGED
|
@@ -63,12 +63,16 @@ $ npm install @serverless-devs/s -g
|
|
|
63
63
|
|
|
64
64
|
目前 Serverless Devs 项目已经支持的 FaaS 平台/产品:
|
|
65
65
|
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
|
|
66
|
+
- Hosted
|
|
67
|
+
- 阿里云函数计算(FC): [项目仓库](https://github.com/devsapp/fc)
|
|
68
|
+
- AWS Lambda: [项目仓库](https://github.com/devscomp/lambda)
|
|
69
|
+
- 百度智能云函数计算(CFC): [项目仓库](https://github.com/xinwuyun/cfc)
|
|
70
|
+
- 华为云函数工作流(FG): [项目仓库](https://github.com/xinwuyun/fg)
|
|
71
|
+
- 腾讯云云函数(SCF): [项目仓库](https://github.com/devscomp/scf)
|
|
72
|
+
- Installable
|
|
73
|
+
- OpenFunction(of): 开发中...
|
|
74
|
+
- Laf: 开发中...
|
|
75
|
+
|
|
72
76
|
> 尽管以上 FaaS 平台/产品已经有人贡献或在持续维护中,但是我们仍然非常欢迎大家可以参与贡献/维护,除此之外,其他的 FaaS 平台/产品(例如 Google Cloud Platform Functions、Azure Functions等),我们也非常期望社区的小伙伴们可以参与开发和贡献。
|
|
73
77
|
|
|
74
78
|
> 🚀 除此之外 Serverless Devs 项目还拥有很多优秀的组件和应用,可以参考[Awesome](./docs/zh/awesome.md)
|