@antify/ui-module 1.2.0 → 1.2.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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +5 -1
- package/dist/runtime/tailwind.config.mjs +5 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -169,12 +169,16 @@ const tailwindcss = {
|
|
|
169
169
|
// For module dev
|
|
170
170
|
"./src/runtime/**/*.{vue,js,ts,jsx,tsx}",
|
|
171
171
|
"./src/runtime/**/*.stories.ts",
|
|
172
|
-
"./playground
|
|
172
|
+
"./playground/app.vue",
|
|
173
|
+
"./playground/components/**/*.{vue,js,ts,jsx,tsx}",
|
|
174
|
+
"./playground/pages/**/*.{vue,js,ts,jsx,tsx}",
|
|
175
|
+
"./playground/layouts/**/*.{vue,js,ts,jsx,tsx}",
|
|
173
176
|
"../ui-module/src/**/*.{vue,js,ts,jsx,tsx}",
|
|
174
177
|
// For project dev
|
|
175
178
|
"./app.vue",
|
|
176
179
|
"./components/**/*.{vue,js,ts,jsx,tsx}",
|
|
177
180
|
"./pages/**/*.{vue,js,ts,jsx,tsx}",
|
|
181
|
+
"./layouts/**/*.{vue,js,ts,jsx,tsx}",
|
|
178
182
|
// If this config is used in a project
|
|
179
183
|
"./node_modules/@antify/*/dist/**/*.{js,vue,ts}",
|
|
180
184
|
"./node_modules/@antify/*/src/**/*.{js,vue,ts}"
|
|
@@ -167,12 +167,16 @@ export default {
|
|
|
167
167
|
// For module dev
|
|
168
168
|
"./src/runtime/**/*.{vue,js,ts,jsx,tsx}",
|
|
169
169
|
"./src/runtime/**/*.stories.ts",
|
|
170
|
-
"./playground
|
|
170
|
+
"./playground/app.vue",
|
|
171
|
+
"./playground/components/**/*.{vue,js,ts,jsx,tsx}",
|
|
172
|
+
"./playground/pages/**/*.{vue,js,ts,jsx,tsx}",
|
|
173
|
+
"./playground/layouts/**/*.{vue,js,ts,jsx,tsx}",
|
|
171
174
|
"../ui-module/src/**/*.{vue,js,ts,jsx,tsx}",
|
|
172
175
|
// For project dev
|
|
173
176
|
"./app.vue",
|
|
174
177
|
"./components/**/*.{vue,js,ts,jsx,tsx}",
|
|
175
178
|
"./pages/**/*.{vue,js,ts,jsx,tsx}",
|
|
179
|
+
"./layouts/**/*.{vue,js,ts,jsx,tsx}",
|
|
176
180
|
// If this config is used in a project
|
|
177
181
|
"./node_modules/@antify/*/dist/**/*.{js,vue,ts}",
|
|
178
182
|
"./node_modules/@antify/*/src/**/*.{js,vue,ts}"
|