@pwrdrvr/microapps-publish 0.0.29 → 0.2.1

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.
@@ -77,7 +77,7 @@ class DeleteCommand extends command_1.Command {
77
77
  exports.DeleteCommand = DeleteCommand;
78
78
  DeleteCommand.description = 'Delete app/version';
79
79
  DeleteCommand.examples = [
80
- `$ microapps-publish delete -a release -n 0.0.13
80
+ `$ microapps-publish delete -d microapps-deployer-dev -a release -n 0.0.13
81
81
  ✔ App/Version deleted: release/0.0.13 [1.2s]
82
82
  `,
83
83
  ];
@@ -419,7 +419,7 @@ class DockerAutoCommand extends command_1.Command {
419
419
  exports.DockerAutoCommand = DockerAutoCommand;
420
420
  DockerAutoCommand.description = 'Fully automatic publishing of Docker-based Lambda function using Next.js and serverless-nextjs-router';
421
421
  DockerAutoCommand.examples = [
422
- `$ microapps-publish nextjs-docker-auto -d microapps-deployer-dev -n 0.0.14 -r microapps-app-release-dev-repo
422
+ `$ microapps-publish nextjs-docker-auto -d microapps-deployer-dev -r microapps-app-release-dev-repo -n 0.0.14
423
423
  ✔ Logging into ECR [2s]
424
424
  ✔ Modifying Config Files [0.0s]
425
425
  ✔ Preflight Version Check [1s]
@@ -81,7 +81,7 @@ class PreflightCommand extends command_1.Command {
81
81
  exports.PreflightCommand = PreflightCommand;
82
82
  PreflightCommand.description = 'Check if app/version are available';
83
83
  PreflightCommand.examples = [
84
- `$ microapps-publish preflight -a release -n 0.0.13
84
+ `$ microapps-publish preflight -d microapps-deployer-dev -a release -n 0.0.13
85
85
  ✔ Preflight Version Check [0.2s]
86
86
  `,
87
87
  ];
@@ -221,7 +221,7 @@ class PublishCommand extends command_1.Command {
221
221
  exports.PublishCommand = PublishCommand;
222
222
  PublishCommand.description = 'Publish arbitrary framework static app - deploy static assets to S3 only.';
223
223
  PublishCommand.examples = [
224
- `$ microapps-publish publish-static -d microapps-deployer-dev -n 0.0.21 -l microapps-app-release-dev -a release
224
+ `$ microapps-publish publish-static -d microapps-deployer-dev -l microapps-app-release-dev -a release -n 0.0.21
225
225
  ✔ Get S3 Temp Credentials [1s]
226
226
  ✔ Confirm Static Assets Folder Exists [0.0s]
227
227
  ✔ Copy Static Files to Local Upload Dir [0.0s]
@@ -303,7 +303,7 @@ class PublishCommand extends command_1.Command {
303
303
  exports.PublishCommand = PublishCommand;
304
304
  PublishCommand.description = 'Publish arbitrary framework app - deploy static assets to S3, alias the $LATEST Lambda function, and add integration/route to API Gateway.';
305
305
  PublishCommand.examples = [
306
- `$ microapps-publish publish -d microapps-deployer-dev -n 0.0.21 -l microapps-app-release-dev -a release
306
+ `$ microapps-publish publish -d microapps-deployer-dev -l microapps-app-release-dev -a release -n 0.0.21
307
307
  ✔ Get S3 Temp Credentials [1s]
308
308
  ✔ Deploy to Lambda [0.6s]
309
309
  ✔ Confirm Static Assets Folder Exists [0.0s]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pwrdrvr/microapps-publish",
3
- "version": "0.0.29",
3
+ "version": "0.2.1",
4
4
  "description": "Publish tool for deploying apps and updates",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -9,7 +9,7 @@ export class DeleteCommand extends Command {
9
9
  static description = 'Delete app/version';
10
10
 
11
11
  static examples = [
12
- `$ microapps-publish delete -a release -n 0.0.13
12
+ `$ microapps-publish delete -d microapps-deployer-dev -a release -n 0.0.13
13
13
  ✔ App/Version deleted: release/0.0.13 [1.2s]
14
14
  `,
15
15
  ];
@@ -40,7 +40,7 @@ export class DockerAutoCommand extends Command {
40
40
  'Fully automatic publishing of Docker-based Lambda function using Next.js and serverless-nextjs-router';
41
41
 
42
42
  static examples = [
43
- `$ microapps-publish nextjs-docker-auto -d microapps-deployer-dev -n 0.0.14 -r microapps-app-release-dev-repo
43
+ `$ microapps-publish nextjs-docker-auto -d microapps-deployer-dev -r microapps-app-release-dev-repo -n 0.0.14
44
44
  ✔ Logging into ECR [2s]
45
45
  ✔ Modifying Config Files [0.0s]
46
46
  ✔ Preflight Version Check [1s]
@@ -9,7 +9,7 @@ export class PreflightCommand extends Command {
9
9
  static description = 'Check if app/version are available';
10
10
 
11
11
  static examples = [
12
- `$ microapps-publish preflight -a release -n 0.0.13
12
+ `$ microapps-publish preflight -d microapps-deployer-dev -a release -n 0.0.13
13
13
  ✔ Preflight Version Check [0.2s]
14
14
  `,
15
15
  ];
@@ -22,7 +22,7 @@ export class PublishCommand extends Command {
22
22
  static description = 'Publish arbitrary framework static app - deploy static assets to S3 only.';
23
23
 
24
24
  static examples = [
25
- `$ microapps-publish publish-static -d microapps-deployer-dev -n 0.0.21 -l microapps-app-release-dev -a release
25
+ `$ microapps-publish publish-static -d microapps-deployer-dev -l microapps-app-release-dev -a release -n 0.0.21
26
26
  ✔ Get S3 Temp Credentials [1s]
27
27
  ✔ Confirm Static Assets Folder Exists [0.0s]
28
28
  ✔ Copy Static Files to Local Upload Dir [0.0s]
@@ -32,7 +32,7 @@ export class PublishCommand extends Command {
32
32
  'Publish arbitrary framework app - deploy static assets to S3, alias the $LATEST Lambda function, and add integration/route to API Gateway.';
33
33
 
34
34
  static examples = [
35
- `$ microapps-publish publish -d microapps-deployer-dev -n 0.0.21 -l microapps-app-release-dev -a release
35
+ `$ microapps-publish publish -d microapps-deployer-dev -l microapps-app-release-dev -a release -n 0.0.21
36
36
  ✔ Get S3 Temp Credentials [1s]
37
37
  ✔ Deploy to Lambda [0.6s]
38
38
  ✔ Confirm Static Assets Folder Exists [0.0s]