@servicetitan/docs-uikit 28.1.0 → 28.1.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.
Files changed (2) hide show
  1. package/docs/startup.mdx +9 -0
  2. package/package.json +2 -2
package/docs/startup.mdx CHANGED
@@ -357,6 +357,15 @@ Or you can set an object with detailed configs:
357
357
  }
358
358
  }
359
359
  ```
360
+
361
+ Or you can use relative path to a file that exports an object with detailed configs (useful to share configs between multiple MFEs in repo):
362
+ ```json title="package.json"
363
+ {
364
+ "cli": {
365
+ "web-component": "../../config/web-component.js"
366
+ }
367
+ }
368
+ ```
360
369
  ###### Web component config options
361
370
 
362
371
  - `branches` - Set git branch specific configs, used for publishing. See [Branch configs](#branch-configs).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servicetitan/docs-uikit",
3
- "version": "28.1.0",
3
+ "version": "28.1.1",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,5 +16,5 @@
16
16
  "cli": {
17
17
  "webpack": false
18
18
  },
19
- "gitHead": "27d173aad0e016014bed59385886d0fd7ca3fb17"
19
+ "gitHead": "35c714f4eaf0ba60dd6fa3fc583f0283edfb4a44"
20
20
  }