@serverless-devs/s 2.0.100-beta.2 → 2.0.100-beta.6
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/{s.yaml → a.yaml} +0 -0
- package/bin/s-verify +2 -0
- package/lib/clean/index.js +12 -12
- package/lib/cli/index.js +28 -28
- package/lib/component/index.js +38 -38
- package/lib/config/add/index.js +22 -22
- package/lib/config/delete/index.js +22 -22
- package/lib/config/get/index.js +26 -26
- package/lib/config/index.js +15 -15
- package/lib/constant.js +2 -2
- package/lib/error/index.js +4 -3
- package/lib/help/index.js +33 -24
- package/lib/index.js +79 -79
- package/lib/init/index.js +70 -70
- package/lib/init/init-config.js +4 -4
- package/lib/set/analysis/index.js +23 -23
- package/lib/set/index.js +12 -12
- package/lib/set/locale/index.js +24 -24
- package/lib/set/registry/index.js +24 -24
- package/lib/set/workspace/index.js +24 -24
- package/lib/special-commad/index.js +3 -3
- package/lib/update-notifier/index.js +17 -17
- package/lib/utils/common.js +29 -19
- package/lib/verify/index.js +58 -0
- package/package.json +3 -2
- package/shell/postbuild.sh +17 -15
package/lib/init/init-config.js
CHANGED
|
@@ -99,8 +99,8 @@ var ali_template = [
|
|
|
99
99
|
];
|
|
100
100
|
var quick_start_template = [
|
|
101
101
|
{
|
|
102
|
-
name: '[HTTP] Node.js
|
|
103
|
-
value: 'devsapp/start-fc-http-
|
|
102
|
+
name: '[HTTP] Node.js 14',
|
|
103
|
+
value: 'devsapp/start-fc-http-nodejs14',
|
|
104
104
|
isDeploy: true,
|
|
105
105
|
},
|
|
106
106
|
{
|
|
@@ -123,8 +123,8 @@ var quick_start_template = [
|
|
|
123
123
|
isDeploy: true,
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
|
-
name: '[Event] Node.js
|
|
127
|
-
value: 'devsapp/start-fc-event-
|
|
126
|
+
name: '[Event] Node.js 14',
|
|
127
|
+
value: 'devsapp/start-fc-event-nodejs14',
|
|
128
128
|
isDeploy: true,
|
|
129
129
|
},
|
|
130
130
|
{
|