@continuous-excellence/ze-great-dashboard-aws 0.1.25 → 0.1.26
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/README.md +4 -3
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -115,9 +115,10 @@ Server environment variables are documented in `.env.example`. The one that matt
|
|
|
115
115
|
|
|
116
116
|
## Deploying
|
|
117
117
|
|
|
118
|
-
Push to `main`. CI checks, versions with
|
|
119
|
-
|
|
120
|
-
reference
|
|
118
|
+
Push to `main`. CI builds and checks a release candidate, versions it with
|
|
119
|
+
[Tagger](https://github.com/robertfmurdock/tagger), publishes its versioned client assets, and deploys
|
|
120
|
+
the exact npm tarball to the repository-owned consumer reference. Only then does it publish that
|
|
121
|
+
same tarball and tag the release.
|
|
121
122
|
|
|
122
123
|
Infrastructure is a CloudFormation stack under `infra/`. On `main`, CI deploys the stack before it
|
|
123
124
|
publishes assets and updates the Lambda. The public client origin is
|
package/dist/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export type PublishClientAssetsOptions = {
|
|
|
33
33
|
assetsBaseUrl: string;
|
|
34
34
|
version: string;
|
|
35
35
|
};
|
|
36
|
-
/** Publishes the
|
|
36
|
+
/** Publishes the versioned client half of a provider-managed release. */
|
|
37
37
|
export declare function publishClientAssets(options: PublishClientAssetsOptions): Promise<string>;
|
|
38
38
|
/** Performs the AWS-specific half of a release using explicit deployment outputs. */
|
|
39
39
|
export declare function deployLambda(options: DeployLambdaOptions): Promise<void>;
|