@vaadin/bundles 23.0.5 → 23.0.6
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/package.json +119 -116
- package/vaadin-bundle.json +1344 -812
- package/vaadin.js +10014 -5654
- package/vaadin.js.map +1 -1
- package/build.config.ts +0 -24
package/build.config.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Configuration for the bundles build
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Modules directory for the bundles build. If building in a workspace,
|
|
7
|
-
* set to workspace root.
|
|
8
|
-
*/
|
|
9
|
-
export const modulesDirectory = './node_modules';
|
|
10
|
-
|
|
11
|
-
export const exposePackages = {
|
|
12
|
-
/**
|
|
13
|
-
* The listed packages are not exposed in the bundle, although they may
|
|
14
|
-
* be bundled as dependencies.
|
|
15
|
-
*/
|
|
16
|
-
exclude: [
|
|
17
|
-
// NOTE: Lit libraries are excluded to allow installing and using different
|
|
18
|
-
// versions (possibly older versions installed by addons) simultaniously.
|
|
19
|
-
// See: https://github.com/vaadin/flow-components/issues/2950
|
|
20
|
-
'lit-html',
|
|
21
|
-
'lit-element',
|
|
22
|
-
'@lit/reactive-element'
|
|
23
|
-
]
|
|
24
|
-
};
|