@genesislcap/foundation-layout 14.12.6 → 14.13.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/custom-elements-manifest.config.js +14 -0
- package/dist/custom-elements.json +1346 -0
- package/dist/dts/main/layout-item.d.ts +1 -0
- package/dist/dts/main/layout-item.d.ts.map +1 -1
- package/dist/dts/main/layout-main.d.ts +1 -0
- package/dist/dts/main/layout-main.d.ts.map +1 -1
- package/dist/dts/main/layout-region.d.ts +1 -0
- package/dist/dts/main/layout-region.d.ts.map +1 -1
- package/dist/esm/main/layout-item.js +1 -0
- package/dist/esm/main/layout-main.js +1 -0
- package/dist/esm/main/layout-region.js +1 -0
- package/dist/foundation-layout.api.json +10 -4
- package/dist/foundation-layout.d.ts +3 -0
- package/package.json +9 -6
- package/tsdoc.json +4 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
module.exports = {
|
2
|
+
/** Globs to analyze */
|
3
|
+
globs: ['src/**/*.ts'],
|
4
|
+
/** Directory to output CEM to */
|
5
|
+
outdir: './dist',
|
6
|
+
/** Run in dev mode, provides extra logging */
|
7
|
+
dev: false,
|
8
|
+
/** Enable special handling for FastElement */
|
9
|
+
fast: true,
|
10
|
+
/** Include third party custom elements manifests */
|
11
|
+
dependencies: true,
|
12
|
+
/** Output CEM path to `package.json`, defaults to true */
|
13
|
+
packagejson: true,
|
14
|
+
};
|