@weapp-tailwindcss/cli 3.0.0 → 4.0.0-alpha.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/index.cjs +353 -313
- package/dist/index.d.cts +6 -6
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.mjs +353 -313
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -127,22 +127,22 @@ type UserConfig = Partial<BuildOptions>;
|
|
|
127
127
|
|
|
128
128
|
declare function createBuilder(options?: Partial<BuildOptions>): Promise<{
|
|
129
129
|
watcher: FSWatcher | undefined;
|
|
130
|
-
build(): Promise
|
|
131
|
-
watch(): Promise
|
|
130
|
+
build(): Promise</*elided*/ any>;
|
|
131
|
+
watch(): Promise</*elided*/ any>;
|
|
132
132
|
globsSet: GlobsSet;
|
|
133
133
|
clean: () => Promise<void>;
|
|
134
134
|
}>;
|
|
135
135
|
declare function build(options?: Partial<BuildOptions>): Promise<{
|
|
136
136
|
watcher: FSWatcher | undefined;
|
|
137
|
-
build(): Promise
|
|
138
|
-
watch(): Promise
|
|
137
|
+
build(): Promise</*elided*/ any>;
|
|
138
|
+
watch(): Promise</*elided*/ any>;
|
|
139
139
|
globsSet: GlobsSet;
|
|
140
140
|
clean: () => Promise<void>;
|
|
141
141
|
}>;
|
|
142
142
|
declare function watch(options?: Partial<BuildOptions>): Promise<{
|
|
143
143
|
watcher: FSWatcher | undefined;
|
|
144
|
-
build(): Promise
|
|
145
|
-
watch(): Promise
|
|
144
|
+
build(): Promise</*elided*/ any>;
|
|
145
|
+
watch(): Promise</*elided*/ any>;
|
|
146
146
|
globsSet: GlobsSet;
|
|
147
147
|
clean: () => Promise<void>;
|
|
148
148
|
}>;
|
package/dist/index.d.mts
CHANGED
|
@@ -127,22 +127,22 @@ type UserConfig = Partial<BuildOptions>;
|
|
|
127
127
|
|
|
128
128
|
declare function createBuilder(options?: Partial<BuildOptions>): Promise<{
|
|
129
129
|
watcher: FSWatcher | undefined;
|
|
130
|
-
build(): Promise
|
|
131
|
-
watch(): Promise
|
|
130
|
+
build(): Promise</*elided*/ any>;
|
|
131
|
+
watch(): Promise</*elided*/ any>;
|
|
132
132
|
globsSet: GlobsSet;
|
|
133
133
|
clean: () => Promise<void>;
|
|
134
134
|
}>;
|
|
135
135
|
declare function build(options?: Partial<BuildOptions>): Promise<{
|
|
136
136
|
watcher: FSWatcher | undefined;
|
|
137
|
-
build(): Promise
|
|
138
|
-
watch(): Promise
|
|
137
|
+
build(): Promise</*elided*/ any>;
|
|
138
|
+
watch(): Promise</*elided*/ any>;
|
|
139
139
|
globsSet: GlobsSet;
|
|
140
140
|
clean: () => Promise<void>;
|
|
141
141
|
}>;
|
|
142
142
|
declare function watch(options?: Partial<BuildOptions>): Promise<{
|
|
143
143
|
watcher: FSWatcher | undefined;
|
|
144
|
-
build(): Promise
|
|
145
|
-
watch(): Promise
|
|
144
|
+
build(): Promise</*elided*/ any>;
|
|
145
|
+
watch(): Promise</*elided*/ any>;
|
|
146
146
|
globsSet: GlobsSet;
|
|
147
147
|
clean: () => Promise<void>;
|
|
148
148
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -127,22 +127,22 @@ type UserConfig = Partial<BuildOptions>;
|
|
|
127
127
|
|
|
128
128
|
declare function createBuilder(options?: Partial<BuildOptions>): Promise<{
|
|
129
129
|
watcher: FSWatcher | undefined;
|
|
130
|
-
build(): Promise
|
|
131
|
-
watch(): Promise
|
|
130
|
+
build(): Promise</*elided*/ any>;
|
|
131
|
+
watch(): Promise</*elided*/ any>;
|
|
132
132
|
globsSet: GlobsSet;
|
|
133
133
|
clean: () => Promise<void>;
|
|
134
134
|
}>;
|
|
135
135
|
declare function build(options?: Partial<BuildOptions>): Promise<{
|
|
136
136
|
watcher: FSWatcher | undefined;
|
|
137
|
-
build(): Promise
|
|
138
|
-
watch(): Promise
|
|
137
|
+
build(): Promise</*elided*/ any>;
|
|
138
|
+
watch(): Promise</*elided*/ any>;
|
|
139
139
|
globsSet: GlobsSet;
|
|
140
140
|
clean: () => Promise<void>;
|
|
141
141
|
}>;
|
|
142
142
|
declare function watch(options?: Partial<BuildOptions>): Promise<{
|
|
143
143
|
watcher: FSWatcher | undefined;
|
|
144
|
-
build(): Promise
|
|
145
|
-
watch(): Promise
|
|
144
|
+
build(): Promise</*elided*/ any>;
|
|
145
|
+
watch(): Promise</*elided*/ any>;
|
|
146
146
|
globsSet: GlobsSet;
|
|
147
147
|
clean: () => Promise<void>;
|
|
148
148
|
}>;
|