@serverless-devs/s 2.0.103 → 2.1.0
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/lib/clean/index.js +15 -15
- package/lib/cli/index.js +22 -22
- package/lib/component/index.js +28 -28
- package/lib/config/add/index.js +24 -24
- package/lib/config/delete/index.js +24 -24
- package/lib/config/get/index.js +26 -26
- package/lib/config/index.js +15 -15
- package/lib/index.js +72 -72
- package/lib/init/index.js +51 -51
- package/lib/init/init-config.js +5 -1
- package/lib/set/analysis/index.js +26 -26
- package/lib/set/index.js +15 -15
- package/lib/set/locale/index.js +25 -25
- package/lib/set/registry/index.js +25 -25
- package/lib/set/workspace/index.js +27 -27
- package/lib/update-notifier/index.js +18 -18
- package/lib/verify/index.js +28 -28
- package/package.json +1 -1
- package/readme.md +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serverless-devs/s",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
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
|
@@ -52,6 +52,7 @@ $ npm install @serverless-devs/s -g
|
|
|
52
52
|
- [安装文档](./docs/zh/install.md)
|
|
53
53
|
- [命令行操作](./docs/zh/command/readme.md)
|
|
54
54
|
- [Yaml规范](./docs/zh/yaml.md)
|
|
55
|
+
- [配置继承/多环境](./docs/zh/extend.md)
|
|
55
56
|
- [CI/CD平台集成](./docs/zh/cicd.md)
|
|
56
57
|
|
|
57
58
|
> 如果您想为 Serverless Devs 贡献 Package(包括组件和应用),您可以参考 [Package开发文档](./docs/zh/package_dev.md)
|
|
@@ -96,7 +97,7 @@ Serverless Devs 遵循 [MIT License](./LICENSE) 开源许可。
|
|
|
96
97
|
|
|
97
98
|
<p align="center">
|
|
98
99
|
|
|
99
|
-
| <img src="https://
|
|
100
|
+
| <img src="https://img.alicdn.com/imgextra/i2/O1CN01zifTV61Mkg9QRNBUs_!!6000000001473-2-tps-466-462.png" width="200px" > | <img src="https://serverless-article-picture.oss-cn-hangzhou.aliyuncs.com/1635407044136_20211028074404326599.png" width="200px" > | <img src="https://img.alicdn.com/imgextra/i1/O1CN01ECE9wN1RMvgS6d1JM_!!6000000002098-0-tps-881-877.jpg" width="200px" > |
|
|
100
101
|
|--- | --- | --- |
|
|
101
102
|
| <center>关注微信公众号:`serverless`</center> | <center>联系微信小助手:`xiaojiangwh`</center> | <center>加入钉钉交流群:`33947367`</center> |
|
|
102
103
|
|
|
@@ -107,3 +108,5 @@ Serverless Devs 遵循 [MIT License](./LICENSE) 开源许可。
|
|
|
107
108
|
> Serverless Devs 开发者工具遵循 [Serverless Devs Model](./spec/readme.md),更多模型/规范信息可以参考 [Serverless Registry Model](./spec/zh/0.0.2/serverless_registry_model/readme.md),[Serverless User Model](./spec/zh/0.0.2/serverless_user_model/readme.md) 以及 [Serverless Package Model](./spec/zh/0.0.2/serverless_package_model/readme.md)。
|
|
108
109
|
|
|
109
110
|
> 隐私说明:为了给开发者提供可优化的使用体验,Serverless Devs会采集部分客户端的错误信息以帮助社区优化工具,当然这些错误信息都是被脱敏后的错误信息,如果您仍然存在疑虑或者不想使用这个功能,您可以通过命令`s set analysis disable`关闭该功能。
|
|
111
|
+
|
|
112
|
+
|