Skip to content

Commit 085eb36

Browse files
committed
feat(activate): print deployment URL after activating
fix: #37
1 parent ad2cf28 commit 085eb36

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"author": "Dominik Kundel <[email protected]>",
3939
"license": "MIT",
4040
"dependencies": {
41-
"@twilio-labs/serverless-api": "^1.0.0-alpha.15",
41+
"@twilio-labs/serverless-api": "^1.0.0-alpha.18",
4242
"@twilio-labs/serverless-runtime-types": "^1.1.7",
4343
"@types/express": "^4.17.0",
4444
"@types/is-ci": "^2.0.0",

src/commands/activate.ts

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ export async function handler(flags: ActivateCliFlags): Promise<void> {
138138
spinner.succeed(
139139
`Activated new build ${details} on ${config.targetEnvironment}`
140140
);
141+
console.log(result.domain);
141142
} catch (err) {
142143
handleError(err, spinner);
143144
}

0 commit comments

Comments
 (0)