We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1562c13 commit 0bdb74cCopy full SHA for 0bdb74c
src/command/cli/index.ts
@@ -55,6 +55,7 @@ const isFc3 = async (componentName: string) => {
55
const instance = await loadComponent(componentName, { logger: componentLogger });
56
if (instance.__path) return true;
57
} catch (error) {
58
+ logger.warn(`error: ${error}`);
59
return false;
60
}
61
};
src/command/registry/command/publish.ts
@@ -18,6 +18,7 @@ export default (program: Command) => {
18
.summary(`Public Serverless Package to Serverless Registry`)
19
.usage('[options]')
20
.helpOption('-h, --help', 'Display help for command')
21
+ .option('-f, --force', 'Force push your template')
22
.action(async () => {
23
const registry = new Registry({ logger });
24
await registry.publish();
0 commit comments