@linktr.ee/create-link-app 1.7.9 → 1.7.11
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/commands/deploy.js +4 -2
- package/oclif.manifest.json +2 -2
- package/package.json +1 -1
package/dist/commands/deploy.js
CHANGED
|
@@ -80,8 +80,10 @@ class Deploy extends base_1.default {
|
|
|
80
80
|
? `https://qa.linktr.ee/admin?action=create-link&linkType=${linkTypeId}`
|
|
81
81
|
: `https://linktr.ee/admin?action=create-link&linkType=${linkTypeId}`;
|
|
82
82
|
this.log(`\n--------------------------------`);
|
|
83
|
-
this.log(`✅
|
|
83
|
+
this.log(`✅ Link App successfully ${flags.update ? 'updated' : 'uploaded'}`);
|
|
84
84
|
this.log(` - Link App ID: ${linkTypeId}`);
|
|
85
|
+
this.log(` - Status: ${result.linkType.status}`);
|
|
86
|
+
this.log(` - Updated: ${new Date(result.linkType.updated_timestamp * 1000).toLocaleString()}`);
|
|
85
87
|
if (buildId) {
|
|
86
88
|
this.log(` - Check Link App build: ${linkAppBuildUrl}`);
|
|
87
89
|
}
|
|
@@ -117,7 +119,7 @@ Deploy.flags = {
|
|
|
117
119
|
hidden: true,
|
|
118
120
|
}),
|
|
119
121
|
'skip-confirm': core_1.Flags.boolean({
|
|
120
|
-
description: 'Skip confirmation prompt',
|
|
122
|
+
description: 'Skip confirmation prompt. Admin use only.',
|
|
121
123
|
hidden: true,
|
|
122
124
|
}),
|
|
123
125
|
};
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.7.
|
|
2
|
+
"version": "1.7.11",
|
|
3
3
|
"commands": {
|
|
4
4
|
"build": {
|
|
5
5
|
"id": "build",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"skip-confirm": {
|
|
124
124
|
"name": "skip-confirm",
|
|
125
125
|
"type": "boolean",
|
|
126
|
-
"description": "Skip confirmation prompt",
|
|
126
|
+
"description": "Skip confirmation prompt. Admin use only.",
|
|
127
127
|
"hidden": true,
|
|
128
128
|
"allowNo": false
|
|
129
129
|
}
|