create-faas-app 0.0.4-beta.15 → 0.0.4-beta.16
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -164,7 +164,7 @@ describe('hello', function () {
|
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
166
|
function action_default(program) {
|
|
167
|
-
program.description("\u521B\u5EFA\u65B0\u9879\u76EE").on("--help",
|
|
167
|
+
program.description("\u521B\u5EFA\u65B0\u9879\u76EE").on("--help", () => {
|
|
168
168
|
console.log(`
|
|
169
169
|
Examples:
|
|
170
170
|
npx create-faas-app`);
|
package/dist/index.mjs
CHANGED
|
@@ -162,7 +162,7 @@ describe('hello', function () {
|
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
function action_default(program) {
|
|
165
|
-
program.description("\u521B\u5EFA\u65B0\u9879\u76EE").on("--help",
|
|
165
|
+
program.description("\u521B\u5EFA\u65B0\u9879\u76EE").on("--help", () => {
|
|
166
166
|
console.log(`
|
|
167
167
|
Examples:
|
|
168
168
|
npx create-faas-app`);
|