@bikdotai/bik-widgets 1.1.1 → 1.1.3-beta.0
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 +6 -6
- package/dist-package/index.cjs +1 -1
- package/dist-package/index.mjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -52,11 +52,11 @@ Add the label **`test:stage`** to a PR to run Cypress end-to-end tests against s
|
|
|
52
52
|
|
|
53
53
|
#### Label Summary
|
|
54
54
|
|
|
55
|
-
| Label
|
|
56
|
-
|
|
57
|
-
| `build:stage` | Build + deploy widgets & MFE to **staging** GCS bucket
|
|
58
|
-
| `build:prod`
|
|
59
|
-
| `test:stage`
|
|
55
|
+
| Label | What it does |
|
|
56
|
+
| ------------- | --------------------------------------------------------- |
|
|
57
|
+
| `build:stage` | Build + deploy widgets & MFE to **staging** GCS bucket |
|
|
58
|
+
| `build:prod` | Build + deploy widgets & MFE to **production** GCS bucket |
|
|
59
|
+
| `test:stage` | Run Cypress E2E tests against staging |
|
|
60
60
|
|
|
61
61
|
> **Note:** The `GCP_SERVICE_ACCOUNT_JSON` secret must be configured in GitHub Actions for bucket uploads to succeed.
|
|
62
62
|
|
|
@@ -156,7 +156,7 @@ logger.debug('Debug information', { userId: 123 });
|
|
|
156
156
|
- `log(message: string, data?: unknown)`: Log info level message
|
|
157
157
|
- `warn(message: string, data?: unknown)`: Log warning level message
|
|
158
158
|
- `error(message: string, data?: unknown)`: Log error level message
|
|
159
|
-
- `debug(message: string, data?: unknown)`: Log debug level
|
|
159
|
+
- `debug(message: string, data?: unknown)`: Log debug level messages
|
|
160
160
|
|
|
161
161
|
#### Example
|
|
162
162
|
|