vueless 1.1.1-beta.54 → 1.1.1-beta.55

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/package.json +1 -1
  2. package/plugin-vite.js +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.1.1-beta.54",
3
+ "version": "1.1.1-beta.55",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
package/plugin-vite.js CHANGED
@@ -116,7 +116,14 @@ export const Vueless = function (options = {}) {
116
116
  optimizeDeps: {
117
117
  include: isInternalEnv
118
118
  ? []
119
- : ["vueless", "vueless/types", "vueless/constants", "vueless/constants.js"],
119
+ : [
120
+ "vueless",
121
+ "vueless/types",
122
+ "vueless/constants",
123
+ "vueless/constants.js",
124
+ "vueless/v.tooltip/vTooltip.ts",
125
+ "vueless/v.click-outside/vClickOutside.ts",
126
+ ],
120
127
  },
121
128
  }),
122
129