@timus-networks/theme 2.4.97 → 2.4.100
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.d.mts +2 -1
- package/dist/module.d.ts +2 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/development/example.checkbox.vue.d.ts +18 -212
- package/dist/runtime/pages/colors.vue +0 -2
- package/dist/runtime/pages/theme.vue +0 -2
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
package/dist/module.d.mts
CHANGED
|
@@ -8,4 +8,5 @@ interface MyModuleOptions extends ModuleOptions {
|
|
|
8
8
|
}
|
|
9
9
|
declare const _default: _nuxt_schema.NuxtModule<MyModuleOptions, MyModuleOptions, false>;
|
|
10
10
|
|
|
11
|
-
export {
|
|
11
|
+
export { _default as default };
|
|
12
|
+
export type { MyModuleOptions };
|
package/dist/module.d.ts
CHANGED
|
@@ -8,4 +8,5 @@ interface MyModuleOptions extends ModuleOptions {
|
|
|
8
8
|
}
|
|
9
9
|
declare const _default: _nuxt_schema.NuxtModule<MyModuleOptions, MyModuleOptions, false>;
|
|
10
10
|
|
|
11
|
-
export {
|
|
11
|
+
export { _default as default };
|
|
12
|
+
export type { MyModuleOptions };
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.99";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -40,7 +40,7 @@ const scripts = {
|
|
|
40
40
|
build: "nuxt-module-build build && npm run clean-composables",
|
|
41
41
|
"release-old": "npm run build && changelogen --release && npm run pub && git push --follow-tags",
|
|
42
42
|
version: "standard-version --release-as ${npm_config_type:-patch}",
|
|
43
|
-
release: "npm run
|
|
43
|
+
release: "npm run build && npm run version && npm run pub && git push --follow-tags origin main"
|
|
44
44
|
};
|
|
45
45
|
const repository = {
|
|
46
46
|
type: "git",
|
|
@@ -23,12 +23,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
23
23
|
handleCheckAllChange(val: CheckboxValueType): void;
|
|
24
24
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
25
|
export default _default;
|
|
26
|
-
declare module 'vue' {
|
|
27
|
-
interface GlobalComponents {
|
|
28
|
-
}
|
|
29
|
-
interface GlobalDirectives {
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
26
|
declare global {
|
|
33
27
|
const __VLS_intrinsicElements: __VLS_IntrinsicElements;
|
|
34
28
|
const __VLS_directiveBindingRestFields: {
|
|
@@ -38,192 +32,23 @@ declare global {
|
|
|
38
32
|
dir: any;
|
|
39
33
|
};
|
|
40
34
|
const __VLS_unref: typeof import('vue').unref;
|
|
41
|
-
const
|
|
42
|
-
|
|
43
|
-
abbr: HTMLElement;
|
|
44
|
-
address: HTMLElement;
|
|
45
|
-
area: HTMLAreaElement;
|
|
46
|
-
article: HTMLElement;
|
|
47
|
-
aside: HTMLElement;
|
|
48
|
-
audio: HTMLAudioElement;
|
|
49
|
-
b: HTMLElement;
|
|
50
|
-
base: HTMLBaseElement;
|
|
51
|
-
bdi: HTMLElement;
|
|
52
|
-
bdo: HTMLElement;
|
|
53
|
-
blockquote: HTMLQuoteElement;
|
|
54
|
-
body: HTMLBodyElement;
|
|
55
|
-
br: HTMLBRElement;
|
|
56
|
-
button: HTMLButtonElement;
|
|
57
|
-
canvas: HTMLCanvasElement;
|
|
58
|
-
caption: HTMLTableCaptionElement;
|
|
59
|
-
cite: HTMLElement;
|
|
60
|
-
code: HTMLElement;
|
|
61
|
-
col: HTMLTableColElement;
|
|
62
|
-
colgroup: HTMLTableColElement;
|
|
63
|
-
data: HTMLDataElement;
|
|
64
|
-
datalist: HTMLDataListElement;
|
|
65
|
-
dd: HTMLElement;
|
|
66
|
-
del: HTMLModElement;
|
|
67
|
-
details: HTMLDetailsElement;
|
|
68
|
-
dfn: HTMLElement;
|
|
69
|
-
dialog: HTMLDialogElement;
|
|
70
|
-
div: HTMLDivElement;
|
|
71
|
-
dl: HTMLDListElement;
|
|
72
|
-
dt: HTMLElement;
|
|
73
|
-
em: HTMLElement;
|
|
74
|
-
embed: HTMLEmbedElement;
|
|
75
|
-
fieldset: HTMLFieldSetElement;
|
|
76
|
-
figcaption: HTMLElement;
|
|
77
|
-
figure: HTMLElement;
|
|
78
|
-
footer: HTMLElement;
|
|
79
|
-
form: HTMLFormElement;
|
|
80
|
-
h1: HTMLHeadingElement;
|
|
81
|
-
h2: HTMLHeadingElement;
|
|
82
|
-
h3: HTMLHeadingElement;
|
|
83
|
-
h4: HTMLHeadingElement;
|
|
84
|
-
h5: HTMLHeadingElement;
|
|
85
|
-
h6: HTMLHeadingElement;
|
|
86
|
-
head: HTMLHeadElement;
|
|
87
|
-
header: HTMLElement;
|
|
88
|
-
hgroup: HTMLElement;
|
|
89
|
-
hr: HTMLHRElement;
|
|
90
|
-
html: HTMLHtmlElement;
|
|
91
|
-
i: HTMLElement;
|
|
92
|
-
iframe: HTMLIFrameElement;
|
|
93
|
-
img: HTMLImageElement;
|
|
94
|
-
input: HTMLInputElement;
|
|
95
|
-
ins: HTMLModElement;
|
|
96
|
-
kbd: HTMLElement;
|
|
97
|
-
label: HTMLLabelElement;
|
|
98
|
-
legend: HTMLLegendElement;
|
|
99
|
-
li: HTMLLIElement;
|
|
100
|
-
link: HTMLLinkElement;
|
|
101
|
-
main: HTMLElement;
|
|
102
|
-
map: HTMLMapElement;
|
|
103
|
-
mark: HTMLElement;
|
|
104
|
-
menu: HTMLMenuElement;
|
|
105
|
-
meta: HTMLMetaElement;
|
|
106
|
-
meter: HTMLMeterElement;
|
|
107
|
-
nav: HTMLElement;
|
|
108
|
-
noscript: HTMLElement;
|
|
109
|
-
object: HTMLObjectElement;
|
|
110
|
-
ol: HTMLOListElement;
|
|
111
|
-
optgroup: HTMLOptGroupElement;
|
|
112
|
-
option: HTMLOptionElement;
|
|
113
|
-
output: HTMLOutputElement;
|
|
114
|
-
p: HTMLParagraphElement;
|
|
115
|
-
picture: HTMLPictureElement;
|
|
116
|
-
pre: HTMLPreElement;
|
|
117
|
-
progress: HTMLProgressElement;
|
|
118
|
-
q: HTMLQuoteElement;
|
|
119
|
-
rp: HTMLElement;
|
|
120
|
-
rt: HTMLElement;
|
|
121
|
-
ruby: HTMLElement;
|
|
122
|
-
s: HTMLElement;
|
|
123
|
-
samp: HTMLElement;
|
|
124
|
-
script: HTMLScriptElement;
|
|
125
|
-
search: HTMLElement;
|
|
126
|
-
section: HTMLElement;
|
|
127
|
-
select: HTMLSelectElement;
|
|
128
|
-
slot: HTMLSlotElement;
|
|
129
|
-
small: HTMLElement;
|
|
130
|
-
source: HTMLSourceElement;
|
|
131
|
-
span: HTMLSpanElement;
|
|
132
|
-
strong: HTMLElement;
|
|
133
|
-
style: HTMLStyleElement;
|
|
134
|
-
sub: HTMLElement;
|
|
135
|
-
summary: HTMLElement;
|
|
136
|
-
sup: HTMLElement;
|
|
137
|
-
table: HTMLTableElement;
|
|
138
|
-
tbody: HTMLTableSectionElement;
|
|
139
|
-
td: HTMLTableCellElement;
|
|
140
|
-
template: HTMLTemplateElement;
|
|
141
|
-
textarea: HTMLTextAreaElement;
|
|
142
|
-
tfoot: HTMLTableSectionElement;
|
|
143
|
-
th: HTMLTableCellElement;
|
|
144
|
-
thead: HTMLTableSectionElement;
|
|
145
|
-
time: HTMLTimeElement;
|
|
146
|
-
title: HTMLTitleElement;
|
|
147
|
-
tr: HTMLTableRowElement;
|
|
148
|
-
track: HTMLTrackElement;
|
|
149
|
-
u: HTMLElement;
|
|
150
|
-
ul: HTMLUListElement;
|
|
151
|
-
var: HTMLElement;
|
|
152
|
-
video: HTMLVideoElement;
|
|
153
|
-
wbr: HTMLElement;
|
|
154
|
-
animate: SVGAnimateElement;
|
|
155
|
-
animateMotion: SVGAnimateMotionElement;
|
|
156
|
-
animateTransform: SVGAnimateTransformElement;
|
|
157
|
-
circle: SVGCircleElement;
|
|
158
|
-
clipPath: SVGClipPathElement;
|
|
159
|
-
defs: SVGDefsElement;
|
|
160
|
-
desc: SVGDescElement;
|
|
161
|
-
ellipse: SVGEllipseElement;
|
|
162
|
-
feBlend: SVGFEBlendElement;
|
|
163
|
-
feColorMatrix: SVGFEColorMatrixElement;
|
|
164
|
-
feComponentTransfer: SVGFEComponentTransferElement;
|
|
165
|
-
feComposite: SVGFECompositeElement;
|
|
166
|
-
feConvolveMatrix: SVGFEConvolveMatrixElement;
|
|
167
|
-
feDiffuseLighting: SVGFEDiffuseLightingElement;
|
|
168
|
-
feDisplacementMap: SVGFEDisplacementMapElement;
|
|
169
|
-
feDistantLight: SVGFEDistantLightElement;
|
|
170
|
-
feDropShadow: SVGFEDropShadowElement;
|
|
171
|
-
feFlood: SVGFEFloodElement;
|
|
172
|
-
feFuncA: SVGFEFuncAElement;
|
|
173
|
-
feFuncB: SVGFEFuncBElement;
|
|
174
|
-
feFuncG: SVGFEFuncGElement;
|
|
175
|
-
feFuncR: SVGFEFuncRElement;
|
|
176
|
-
feGaussianBlur: SVGFEGaussianBlurElement;
|
|
177
|
-
feImage: SVGFEImageElement;
|
|
178
|
-
feMerge: SVGFEMergeElement;
|
|
179
|
-
feMergeNode: SVGFEMergeNodeElement;
|
|
180
|
-
feMorphology: SVGFEMorphologyElement;
|
|
181
|
-
feOffset: SVGFEOffsetElement;
|
|
182
|
-
fePointLight: SVGFEPointLightElement;
|
|
183
|
-
feSpecularLighting: SVGFESpecularLightingElement;
|
|
184
|
-
feSpotLight: SVGFESpotLightElement;
|
|
185
|
-
feTile: SVGFETileElement;
|
|
186
|
-
feTurbulence: SVGFETurbulenceElement;
|
|
187
|
-
filter: SVGFilterElement;
|
|
188
|
-
foreignObject: SVGForeignObjectElement;
|
|
189
|
-
g: SVGGElement;
|
|
190
|
-
image: SVGImageElement;
|
|
191
|
-
line: SVGLineElement;
|
|
192
|
-
linearGradient: SVGLinearGradientElement;
|
|
193
|
-
marker: SVGMarkerElement;
|
|
194
|
-
mask: SVGMaskElement;
|
|
195
|
-
metadata: SVGMetadataElement;
|
|
196
|
-
mpath: SVGMPathElement;
|
|
197
|
-
path: SVGPathElement;
|
|
198
|
-
pattern: SVGPatternElement;
|
|
199
|
-
polygon: SVGPolygonElement;
|
|
200
|
-
polyline: SVGPolylineElement;
|
|
201
|
-
radialGradient: SVGRadialGradientElement;
|
|
202
|
-
rect: SVGRectElement;
|
|
203
|
-
set: SVGSetElement;
|
|
204
|
-
stop: SVGStopElement;
|
|
205
|
-
svg: SVGSVGElement;
|
|
206
|
-
switch: SVGSwitchElement;
|
|
207
|
-
symbol: SVGSymbolElement;
|
|
208
|
-
text: SVGTextElement;
|
|
209
|
-
textPath: SVGTextPathElement;
|
|
210
|
-
tspan: SVGTSpanElement;
|
|
211
|
-
use: SVGUseElement;
|
|
212
|
-
view: SVGViewElement;
|
|
213
|
-
};
|
|
35
|
+
const __VLS_placeholder: any;
|
|
36
|
+
type __VLS_NativeElements = __VLS_SpreadMerge<SVGElementTagNameMap, HTMLElementTagNameMap>;
|
|
214
37
|
type __VLS_IntrinsicElements = import('vue/jsx-runtime').JSX.IntrinsicElements;
|
|
215
38
|
type __VLS_Element = import('vue/jsx-runtime').JSX.Element;
|
|
216
|
-
type __VLS_GlobalComponents = import('vue').GlobalComponents
|
|
39
|
+
type __VLS_GlobalComponents = import('vue').GlobalComponents;
|
|
217
40
|
type __VLS_GlobalDirectives = import('vue').GlobalDirectives;
|
|
218
41
|
type __VLS_IsAny<T> = 0 extends 1 & T ? true : false;
|
|
219
42
|
type __VLS_PickNotAny<A, B> = __VLS_IsAny<A> extends true ? B : A;
|
|
220
|
-
type
|
|
221
|
-
type __VLS_WithComponent<N0 extends string, LocalComponents, N1 extends string, N2 extends string, N3 extends string> = N1 extends keyof LocalComponents ? N1 extends N0 ? Pick<LocalComponents, N0 extends keyof LocalComponents ? N0 : never> : {
|
|
43
|
+
type __VLS_SpreadMerge<A, B> = Omit<A, keyof B> & B;
|
|
44
|
+
type __VLS_WithComponent<N0 extends string, LocalComponents, Self, N1 extends string, N2 extends string, N3 extends string> = N1 extends keyof LocalComponents ? N1 extends N0 ? Pick<LocalComponents, N0 extends keyof LocalComponents ? N0 : never> : {
|
|
222
45
|
[K in N0]: LocalComponents[N1];
|
|
223
46
|
} : N2 extends keyof LocalComponents ? N2 extends N0 ? Pick<LocalComponents, N0 extends keyof LocalComponents ? N0 : never> : {
|
|
224
47
|
[K in N0]: LocalComponents[N2];
|
|
225
48
|
} : N3 extends keyof LocalComponents ? N3 extends N0 ? Pick<LocalComponents, N0 extends keyof LocalComponents ? N0 : never> : {
|
|
226
49
|
[K in N0]: LocalComponents[N3];
|
|
50
|
+
} : Self extends object ? {
|
|
51
|
+
[K in N0]: Self;
|
|
227
52
|
} : N1 extends keyof __VLS_GlobalComponents ? N1 extends N0 ? Pick<__VLS_GlobalComponents, N0 extends keyof __VLS_GlobalComponents ? N0 : never> : {
|
|
228
53
|
[K in N0]: __VLS_GlobalComponents[N1];
|
|
229
54
|
} : N2 extends keyof __VLS_GlobalComponents ? N2 extends N0 ? Pick<__VLS_GlobalComponents, N0 extends keyof __VLS_GlobalComponents ? N0 : never> : {
|
|
@@ -239,6 +64,11 @@ declare global {
|
|
|
239
64
|
};
|
|
240
65
|
} ? NonNullable<P> : never : T extends (props: infer P, ...args: any) => any ? P : {};
|
|
241
66
|
type __VLS_IsFunction<T, K> = K extends keyof T ? __VLS_IsAny<T[K]> extends false ? unknown extends T[K] ? false : true : false : false;
|
|
67
|
+
type __VLS_NormalizeComponentEvent<Props, Events, onEvent extends keyof Props, Event extends keyof Events, CamelizedEvent extends keyof Events> = (__VLS_IsFunction<Props, onEvent> extends true ? Props : __VLS_IsFunction<Events, Event> extends true ? {
|
|
68
|
+
[K in onEvent]?: Events[Event];
|
|
69
|
+
} : __VLS_IsFunction<Events, CamelizedEvent> extends true ? {
|
|
70
|
+
[K in onEvent]?: Events[CamelizedEvent];
|
|
71
|
+
} : Props) & Record<string, unknown>;
|
|
242
72
|
type __VLS_UnionToIntersection<U> = (U extends unknown ? (arg: U) => unknown : never) extends ((arg: infer P) => unknown) ? P : never;
|
|
243
73
|
type __VLS_OverloadUnionInner<T, U = unknown> = U & T extends (...args: infer A) => infer R ? U extends T ? never : __VLS_OverloadUnionInner<T, Pick<T, keyof T> & U & ((...args: A) => R)> | ((...args: A) => R) : never;
|
|
244
74
|
type __VLS_OverloadUnion<T> = Exclude<__VLS_OverloadUnionInner<(() => never) & T>, T extends () => never ? never : () => never>;
|
|
@@ -257,31 +87,10 @@ declare global {
|
|
|
257
87
|
__ctx?: infer Ctx;
|
|
258
88
|
} ? Ctx : never : any, T extends (props: any, ctx: infer Ctx) => any ? Ctx : any>>;
|
|
259
89
|
type __VLS_UseTemplateRef<T> = Readonly<import('vue').ShallowRef<T | null>>;
|
|
260
|
-
function __VLS_getVForSourceType(source:
|
|
261
|
-
|
|
262
|
-
function __VLS_getVForSourceType<T extends any[]>(source: T): [
|
|
263
|
-
item: T[number],
|
|
264
|
-
key: number,
|
|
90
|
+
function __VLS_getVForSourceType<T extends number | string | any[] | Iterable<any>>(source: T): [
|
|
91
|
+
item: T extends number ? number : T extends string ? string : T extends any[] ? T[number] : T extends Iterable<infer T1> ? T1 : any,
|
|
265
92
|
index: number
|
|
266
93
|
][];
|
|
267
|
-
function __VLS_getVForSourceType<T extends {
|
|
268
|
-
[Symbol.iterator](): Iterator<any>;
|
|
269
|
-
}>(source: T): [
|
|
270
|
-
item: T extends {
|
|
271
|
-
[Symbol.iterator](): Iterator<infer T1>;
|
|
272
|
-
} ? T1 : never,
|
|
273
|
-
key: number,
|
|
274
|
-
index: undefined
|
|
275
|
-
][];
|
|
276
|
-
function __VLS_getVForSourceType<T extends number | {
|
|
277
|
-
[Symbol.iterator](): Iterator<any>;
|
|
278
|
-
}>(source: T): [
|
|
279
|
-
item: number | (Exclude<T, number> extends {
|
|
280
|
-
[Symbol.iterator](): Iterator<infer T1>;
|
|
281
|
-
} ? T1 : never),
|
|
282
|
-
key: number,
|
|
283
|
-
index: undefined
|
|
284
|
-
][];
|
|
285
94
|
function __VLS_getVForSourceType<T>(source: T): [
|
|
286
95
|
item: T[keyof T],
|
|
287
96
|
key: keyof T,
|
|
@@ -289,12 +98,10 @@ declare global {
|
|
|
289
98
|
][];
|
|
290
99
|
function __VLS_getSlotParams<T>(slot: T): Parameters<__VLS_PickNotAny<NonNullable<T>, (...args: any[]) => any>>;
|
|
291
100
|
function __VLS_getSlotParam<T>(slot: T): Parameters<__VLS_PickNotAny<NonNullable<T>, (...args: any[]) => any>>[0];
|
|
292
|
-
function __VLS_asFunctionalDirective<T>(dir: T): T extends import('vue').ObjectDirective ? NonNullable<T['created' | 'beforeMount' | 'mounted' | 'beforeUpdate' | 'updated' | 'beforeUnmount' | 'unmounted']> : T extends (...args: any) => any ? T :
|
|
293
|
-
function __VLS_withScope<T, K>(ctx: T, scope: K): ctx is T & K;
|
|
101
|
+
function __VLS_asFunctionalDirective<T>(dir: T): T extends import('vue').ObjectDirective ? NonNullable<T['created' | 'beforeMount' | 'mounted' | 'beforeUpdate' | 'updated' | 'beforeUnmount' | 'unmounted']> : T extends (...args: any) => any ? T : (arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown) => void;
|
|
294
102
|
function __VLS_makeOptional<T>(t: T): {
|
|
295
103
|
[K in keyof T]?: T[K];
|
|
296
104
|
};
|
|
297
|
-
function __VLS_nonNullable<T>(t: T): T extends null | undefined ? never : T;
|
|
298
105
|
function __VLS_asFunctionalComponent<T, K = T extends new (...args: any) => any ? InstanceType<T> : unknown>(t: T, instance?: K): T extends new (...args: any) => any ? (props: (K extends {
|
|
299
106
|
$props: infer Props;
|
|
300
107
|
} ? Props : any) & Record<string, unknown>, ctx?: any) => __VLS_Element & {
|
|
@@ -306,11 +113,10 @@ declare global {
|
|
|
306
113
|
emit?: K extends {
|
|
307
114
|
$emit: infer Emit;
|
|
308
115
|
} ? Emit : any;
|
|
309
|
-
|
|
116
|
+
expose?(exposed: K): void;
|
|
310
117
|
props?: (K extends {
|
|
311
118
|
$props: infer Props;
|
|
312
119
|
} ? Props : any) & Record<string, unknown>;
|
|
313
|
-
expose?(exposed: K): void;
|
|
314
120
|
};
|
|
315
121
|
} : T extends () => any ? (props: {}, ctx?: any) => ReturnType<T> : T extends (...args: any) => any ? T : (_: {} & Record<string, unknown>, ctx?: any) => {
|
|
316
122
|
__ctx?: {
|
|
@@ -321,8 +127,8 @@ declare global {
|
|
|
321
127
|
props?: {} & Record<string, unknown>;
|
|
322
128
|
};
|
|
323
129
|
};
|
|
324
|
-
function __VLS_elementAsFunction<T>(tag: T, endTag?: T): (_: T & Record<string, unknown>) => void;
|
|
325
130
|
function __VLS_functionalComponentArgsRest<T extends (...args: any) => any>(t: T): 2 extends Parameters<T>['length'] ? [any] : [];
|
|
326
|
-
function
|
|
131
|
+
function __VLS_asFunctionalElement<T>(tag: T, endTag?: T): (attrs: T & Record<string, unknown>) => void;
|
|
132
|
+
function __VLS_asFunctionalSlot<S>(slot: S): S extends () => infer R ? (props: {}) => R : NonNullable<S>;
|
|
327
133
|
function __VLS_tryAsConstant<const T>(t: T): T;
|
|
328
134
|
}
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timus-networks/theme",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.100",
|
|
4
4
|
"description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"build": "nuxt-module-build build && npm run clean-composables",
|
|
30
30
|
"release-old": "npm run build && changelogen --release && npm run pub && git push --follow-tags",
|
|
31
31
|
"version": "standard-version --release-as ${npm_config_type:-patch}",
|
|
32
|
-
"release": "npm run
|
|
32
|
+
"release": "npm run build && npm run version && npm run pub && git push --follow-tags origin main"
|
|
33
33
|
},
|
|
34
34
|
"standard-version": {
|
|
35
35
|
"tagPrefix": "theme-v",
|