tailwindcss 0.0.0-insiders.ea80db2 → 0.0.0-insiders.eae2b7a

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 (213) hide show
  1. package/README.md +13 -9
  2. package/defaultTheme.d.ts +2 -1
  3. package/index.css +5 -0
  4. package/lib/cli/build/index.js +57 -0
  5. package/lib/cli/build/plugin.js +427 -0
  6. package/lib/cli/build/utils.js +88 -0
  7. package/lib/cli/build/watching.js +182 -0
  8. package/lib/cli/help/index.js +73 -0
  9. package/lib/cli/index.js +231 -0
  10. package/lib/cli/init/index.js +63 -0
  11. package/lib/cli.js +1 -759
  12. package/lib/corePluginList.js +12 -3
  13. package/lib/corePlugins.js +2308 -1739
  14. package/lib/css/preflight.css +13 -5
  15. package/lib/featureFlags.js +50 -25
  16. package/lib/index.js +1 -40
  17. package/lib/lib/cacheInvalidation.js +48 -25
  18. package/lib/lib/collapseAdjacentRules.js +17 -10
  19. package/lib/lib/collapseDuplicateDeclarations.js +13 -8
  20. package/lib/lib/content.js +207 -0
  21. package/lib/lib/defaultExtractor.js +232 -33
  22. package/lib/lib/detectNesting.js +21 -10
  23. package/lib/lib/evaluateTailwindFunctions.js +117 -50
  24. package/lib/lib/expandApplyAtRules.js +316 -215
  25. package/lib/lib/expandTailwindAtRules.js +167 -115
  26. package/lib/lib/findAtConfigPath.js +46 -0
  27. package/lib/lib/generateRules.js +444 -211
  28. package/lib/lib/getModuleDependencies.js +88 -37
  29. package/lib/lib/handleImportAtRules.js +50 -0
  30. package/lib/lib/load-config.js +42 -0
  31. package/lib/lib/normalizeTailwindDirectives.js +29 -39
  32. package/lib/lib/offsets.js +306 -0
  33. package/lib/lib/partitionApplyAtRules.js +13 -8
  34. package/lib/lib/regex.js +74 -0
  35. package/lib/lib/remap-bitfield.js +89 -0
  36. package/lib/lib/resolveDefaultsAtRules.js +96 -74
  37. package/lib/lib/setupContextUtils.js +672 -300
  38. package/lib/lib/setupTrackingContext.js +63 -68
  39. package/lib/lib/sharedState.js +44 -17
  40. package/lib/lib/substituteScreenAtRules.js +14 -10
  41. package/lib/plugin.js +160 -0
  42. package/lib/postcss-plugins/nesting/README.md +2 -2
  43. package/lib/postcss-plugins/nesting/index.js +10 -6
  44. package/lib/postcss-plugins/nesting/plugin.js +24 -20
  45. package/lib/processTailwindFeatures.js +34 -29
  46. package/lib/public/colors.js +272 -246
  47. package/lib/public/create-plugin.js +9 -5
  48. package/lib/public/default-config.js +10 -6
  49. package/lib/public/default-theme.js +10 -6
  50. package/lib/public/load-config.js +12 -0
  51. package/lib/public/resolve-config.js +11 -6
  52. package/lib/util/applyImportantSelector.js +36 -0
  53. package/lib/util/bigSign.js +6 -1
  54. package/lib/util/buildMediaQuery.js +13 -6
  55. package/lib/util/cloneDeep.js +9 -6
  56. package/lib/util/cloneNodes.js +12 -3
  57. package/lib/util/color.js +66 -50
  58. package/lib/util/colorNames.js +752 -0
  59. package/lib/util/configurePlugins.js +7 -2
  60. package/lib/util/createPlugin.js +8 -5
  61. package/lib/util/createUtilityPlugin.js +13 -9
  62. package/lib/util/dataTypes.js +182 -111
  63. package/lib/util/defaults.js +12 -7
  64. package/lib/util/escapeClassName.js +13 -8
  65. package/lib/util/escapeCommas.js +7 -2
  66. package/lib/util/flattenColorPalette.js +11 -10
  67. package/lib/util/formatVariantSelector.js +228 -151
  68. package/lib/util/getAllConfigs.js +33 -12
  69. package/lib/util/hashConfig.js +9 -4
  70. package/lib/util/isKeyframeRule.js +7 -2
  71. package/lib/util/isPlainObject.js +7 -2
  72. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +25 -15
  73. package/lib/util/log.js +40 -13
  74. package/lib/util/nameClass.js +27 -10
  75. package/lib/util/negateValue.js +25 -8
  76. package/lib/util/normalizeConfig.js +155 -87
  77. package/lib/util/normalizeScreens.js +127 -8
  78. package/lib/util/parseAnimationValue.js +44 -40
  79. package/lib/util/parseBoxShadowValue.js +33 -62
  80. package/lib/util/parseDependency.js +39 -55
  81. package/lib/util/parseGlob.js +36 -0
  82. package/lib/util/parseObjectStyles.js +15 -10
  83. package/lib/util/pluginUtils.js +154 -59
  84. package/lib/util/prefixSelector.js +29 -10
  85. package/lib/util/pseudoElements.js +209 -0
  86. package/lib/util/removeAlphaVariables.js +31 -0
  87. package/lib/util/resolveConfig.js +96 -95
  88. package/lib/util/resolveConfigPath.js +29 -10
  89. package/lib/util/responsive.js +11 -6
  90. package/lib/util/splitAtTopLevelOnly.js +51 -0
  91. package/lib/util/tap.js +6 -1
  92. package/lib/util/toColorValue.js +7 -2
  93. package/lib/util/toPath.js +22 -4
  94. package/lib/util/transformThemeValue.js +40 -26
  95. package/lib/util/validateConfig.js +48 -0
  96. package/lib/util/validateFormalSyntax.js +26 -0
  97. package/lib/util/withAlphaVariable.js +27 -15
  98. package/lib/value-parser/LICENSE +22 -0
  99. package/lib/value-parser/README.md +3 -0
  100. package/lib/value-parser/index.d.js +2 -0
  101. package/lib/value-parser/index.js +22 -0
  102. package/lib/value-parser/parse.js +259 -0
  103. package/lib/value-parser/stringify.js +38 -0
  104. package/lib/value-parser/unit.js +86 -0
  105. package/lib/value-parser/walk.js +16 -0
  106. package/loadConfig.d.ts +4 -0
  107. package/loadConfig.js +2 -0
  108. package/package.json +54 -52
  109. package/plugin.d.ts +10 -5
  110. package/resolveConfig.d.ts +12 -0
  111. package/scripts/generate-types.js +53 -0
  112. package/scripts/release-channel.js +18 -0
  113. package/scripts/release-notes.js +21 -0
  114. package/scripts/type-utils.js +27 -0
  115. package/src/cli/build/index.js +53 -0
  116. package/src/cli/build/plugin.js +465 -0
  117. package/src/cli/build/utils.js +76 -0
  118. package/src/cli/build/watching.js +229 -0
  119. package/src/cli/help/index.js +70 -0
  120. package/src/cli/index.js +217 -0
  121. package/src/cli/init/index.js +79 -0
  122. package/src/cli.js +1 -836
  123. package/src/corePluginList.js +1 -1
  124. package/src/corePlugins.js +576 -106
  125. package/src/css/preflight.css +13 -5
  126. package/src/featureFlags.js +17 -3
  127. package/src/index.js +1 -42
  128. package/src/lib/collapseAdjacentRules.js +5 -1
  129. package/src/lib/content.js +240 -0
  130. package/src/lib/defaultExtractor.js +202 -35
  131. package/src/lib/detectNesting.js +9 -1
  132. package/src/lib/evaluateTailwindFunctions.js +82 -8
  133. package/src/lib/expandApplyAtRules.js +322 -189
  134. package/src/lib/expandTailwindAtRules.js +82 -59
  135. package/src/lib/findAtConfigPath.js +48 -0
  136. package/src/lib/generateRules.js +413 -132
  137. package/src/lib/getModuleDependencies.js +70 -30
  138. package/src/lib/handleImportAtRules.js +34 -0
  139. package/src/lib/load-config.ts +31 -0
  140. package/src/lib/normalizeTailwindDirectives.js +0 -27
  141. package/src/lib/offsets.js +373 -0
  142. package/src/lib/regex.js +74 -0
  143. package/src/lib/remap-bitfield.js +82 -0
  144. package/src/lib/resolveDefaultsAtRules.js +53 -36
  145. package/src/lib/setupContextUtils.js +570 -151
  146. package/src/lib/setupTrackingContext.js +44 -58
  147. package/src/lib/sharedState.js +13 -4
  148. package/src/plugin.js +128 -0
  149. package/src/postcss-plugins/nesting/README.md +2 -2
  150. package/src/public/colors.js +22 -0
  151. package/src/public/default-config.js +1 -1
  152. package/src/public/default-theme.js +2 -2
  153. package/src/public/load-config.js +2 -0
  154. package/src/util/applyImportantSelector.js +27 -0
  155. package/src/util/buildMediaQuery.js +5 -3
  156. package/src/util/cloneNodes.js +5 -1
  157. package/src/util/color.js +34 -17
  158. package/src/util/colorNames.js +150 -0
  159. package/src/util/dataTypes.js +67 -23
  160. package/src/util/formatVariantSelector.js +264 -144
  161. package/src/util/getAllConfigs.js +21 -2
  162. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  163. package/src/util/log.js +25 -1
  164. package/src/util/nameClass.js +4 -0
  165. package/src/util/negateValue.js +11 -3
  166. package/src/util/normalizeConfig.js +78 -20
  167. package/src/util/normalizeScreens.js +99 -4
  168. package/src/util/parseBoxShadowValue.js +3 -50
  169. package/src/util/parseDependency.js +37 -42
  170. package/src/util/parseGlob.js +24 -0
  171. package/src/util/pluginUtils.js +118 -23
  172. package/src/util/prefixSelector.js +28 -10
  173. package/src/util/pseudoElements.js +167 -0
  174. package/src/util/removeAlphaVariables.js +24 -0
  175. package/src/util/resolveConfig.js +70 -62
  176. package/src/util/resolveConfigPath.js +12 -1
  177. package/src/util/splitAtTopLevelOnly.js +52 -0
  178. package/src/util/toPath.js +1 -1
  179. package/src/util/transformThemeValue.js +13 -3
  180. package/src/util/validateConfig.js +36 -0
  181. package/src/util/validateFormalSyntax.js +34 -0
  182. package/src/util/withAlphaVariable.js +1 -1
  183. package/src/value-parser/LICENSE +22 -0
  184. package/src/value-parser/README.md +3 -0
  185. package/src/value-parser/index.d.ts +177 -0
  186. package/src/value-parser/index.js +28 -0
  187. package/src/value-parser/parse.js +303 -0
  188. package/src/value-parser/stringify.js +41 -0
  189. package/src/value-parser/unit.js +118 -0
  190. package/src/value-parser/walk.js +18 -0
  191. package/stubs/.gitignore +1 -0
  192. package/stubs/.prettierrc.json +6 -0
  193. package/stubs/{defaultConfig.stub.js → config.full.js} +215 -165
  194. package/stubs/{simpleConfig.stub.js → config.simple.js} +1 -1
  195. package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -1
  196. package/stubs/postcss.config.js +5 -0
  197. package/stubs/tailwind.config.cjs +2 -0
  198. package/stubs/tailwind.config.js +2 -0
  199. package/stubs/tailwind.config.ts +3 -0
  200. package/types/config.d.ts +102 -56
  201. package/types/generated/colors.d.ts +22 -0
  202. package/types/generated/corePluginList.d.ts +1 -1
  203. package/types/generated/default-theme.d.ts +372 -0
  204. package/types/index.d.ts +7 -1
  205. package/CHANGELOG.md +0 -2099
  206. package/lib/cli-peer-dependencies.js +0 -15
  207. package/lib/constants.js +0 -37
  208. package/peers/index.js +0 -75156
  209. package/scripts/install-integrations.js +0 -27
  210. package/scripts/rebuildFixtures.js +0 -68
  211. package/src/cli-peer-dependencies.js +0 -9
  212. package/src/constants.js +0 -17
  213. package/types.d.ts +0 -1
package/lib/cli.js CHANGED
@@ -1,761 +1,3 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
- var _indexJs = require("../peers/index.js");
4
- var _chokidar = _interopRequireDefault(require("chokidar"));
5
- var _path = _interopRequireDefault(require("path"));
6
- var _arg = _interopRequireDefault(require("arg"));
7
- var _fs = _interopRequireDefault(require("fs"));
8
- var _postcssLoadConfig = _interopRequireDefault(require("postcss-load-config"));
9
- var _lilconfig = require("lilconfig");
10
- var _plugins // Little bit scary, looking at private/internal API
11
- = _interopRequireDefault(require("postcss-load-config/src/plugins"));
12
- var _processTailwindFeatures = _interopRequireDefault(require("./processTailwindFeatures"));
13
- var _resolveConfig = _interopRequireDefault(require("../resolveConfig"));
14
- var _fastGlob = _interopRequireDefault(require("fast-glob"));
15
- var _getModuleDependencies = _interopRequireDefault(require("./lib/getModuleDependencies"));
16
- var _log = _interopRequireDefault(require("./util/log"));
17
- var _packageJson = _interopRequireDefault(require("../package.json"));
18
- var _normalizePath = _interopRequireDefault(require("normalize-path"));
19
- function _interopRequireDefault(obj) {
20
- return obj && obj.__esModule ? obj : {
21
- default: obj
22
- };
23
- }
24
- let env = {
25
- DEBUG: process.env.DEBUG !== undefined && process.env.DEBUG !== '0'
26
- };
27
- // ---
28
- function indentRecursive(node, indent = 0) {
29
- node.each && node.each((child, i)=>{
30
- if (!child.raws.before || !child.raws.before.trim() || child.raws.before.includes('\n')) {
31
- child.raws.before = `\n${node.type !== 'rule' && i > 0 ? '\n' : ''}${' '.repeat(indent)}`;
32
- }
33
- child.raws.after = `\n${' '.repeat(indent)}`;
34
- indentRecursive(child, indent + 1);
35
- });
36
- }
37
- function formatNodes(root) {
38
- indentRecursive(root);
39
- if (root.first) {
40
- root.first.raws.before = '';
41
- }
42
- }
43
- async function outputFile(file, contents) {
44
- if (_fs.default.existsSync(file) && await _fs.default.promises.readFile(file, 'utf8') === contents) {
45
- return; // Skip writing the file
46
- }
47
- // Write the file
48
- await _fs.default.promises.writeFile(file, contents, 'utf8');
49
- }
50
- function drainStdin() {
51
- return new Promise((resolve, reject)=>{
52
- let result = '';
53
- process.stdin.on('data', (chunk)=>{
54
- result += chunk;
55
- });
56
- process.stdin.on('end', ()=>resolve(result)
57
- );
58
- process.stdin.on('error', (err)=>reject(err)
59
- );
60
- });
61
- }
62
- function help({ message , usage , commands: commands1 , options }) {
63
- let indent = 2;
64
- // Render header
65
- console.log();
66
- console.log(`${_packageJson.default.name} v${_packageJson.default.version}`);
67
- // Render message
68
- if (message) {
69
- console.log();
70
- for (let msg of message.split('\n')){
71
- console.log(msg);
72
- }
73
- }
74
- // Render usage
75
- if (usage && usage.length > 0) {
76
- console.log();
77
- console.log('Usage:');
78
- for (let example of usage){
79
- console.log(' '.repeat(indent), example);
80
- }
81
- }
82
- // Render commands
83
- if (commands1 && commands1.length > 0) {
84
- console.log();
85
- console.log('Commands:');
86
- for (let command1 of commands1){
87
- console.log(' '.repeat(indent), command1);
88
- }
89
- }
90
- // Render options
91
- if (options) {
92
- let groupedOptions = {};
93
- for (let [key, value] of Object.entries(options)){
94
- if (typeof value === 'object') {
95
- groupedOptions[key] = {
96
- ...value,
97
- flags: [
98
- key
99
- ]
100
- };
101
- } else {
102
- groupedOptions[value].flags.push(key);
103
- }
104
- }
105
- console.log();
106
- console.log('Options:');
107
- for (let { flags: flags1 , description , deprecated } of Object.values(groupedOptions)){
108
- if (deprecated) continue;
109
- if (flags1.length === 1) {
110
- console.log(' '.repeat(indent + 4 /* 4 = "-i, ".length */ ), flags1.slice().reverse().join(', ').padEnd(20, ' '), description);
111
- } else {
112
- console.log(' '.repeat(indent), flags1.slice().reverse().join(', ').padEnd(24, ' '), description);
113
- }
114
- }
115
- }
116
- console.log();
117
- }
118
- function oneOf(...options) {
119
- return Object.assign((value = true)=>{
120
- for (let option of options){
121
- let parsed = option(value);
122
- if (parsed === value) {
123
- return parsed;
124
- }
125
- }
126
- throw new Error('...');
127
- }, {
128
- manualParsing: true
129
- });
130
- }
131
- let commands = {
132
- init: {
133
- run: init,
134
- args: {
135
- '--full': {
136
- type: Boolean,
137
- description: 'Initialize a full `tailwind.config.js` file'
138
- },
139
- '--postcss': {
140
- type: Boolean,
141
- description: 'Initialize a `postcss.config.js` file'
142
- },
143
- '--types': {
144
- type: Boolean,
145
- description: 'Add TypeScript types for the `tailwind.config.js` file'
146
- },
147
- '-f': '--full',
148
- '-p': '--postcss'
149
- }
150
- },
151
- build: {
152
- run: build,
153
- args: {
154
- '--input': {
155
- type: String,
156
- description: 'Input file'
157
- },
158
- '--output': {
159
- type: String,
160
- description: 'Output file'
161
- },
162
- '--watch': {
163
- type: Boolean,
164
- description: 'Watch for changes and rebuild as needed'
165
- },
166
- '--poll': {
167
- type: Boolean,
168
- description: 'Use polling instead of filesystem events when watching'
169
- },
170
- '--content': {
171
- type: String,
172
- description: 'Content paths to use for removing unused classes'
173
- },
174
- '--purge': {
175
- type: String,
176
- deprecated: true
177
- },
178
- '--postcss': {
179
- type: oneOf(String, Boolean),
180
- description: 'Load custom PostCSS configuration'
181
- },
182
- '--minify': {
183
- type: Boolean,
184
- description: 'Minify the output'
185
- },
186
- '--config': {
187
- type: String,
188
- description: 'Path to a custom config file'
189
- },
190
- '--no-autoprefixer': {
191
- type: Boolean,
192
- description: 'Disable autoprefixer'
193
- },
194
- '-c': '--config',
195
- '-i': '--input',
196
- '-o': '--output',
197
- '-m': '--minify',
198
- '-w': '--watch',
199
- '-p': '--poll'
200
- }
201
- }
202
- };
203
- let sharedFlags = {
204
- '--help': {
205
- type: Boolean,
206
- description: 'Display usage information'
207
- },
208
- '-h': '--help'
209
- };
210
- if (process.stdout.isTTY /* Detect redirecting output to a file */ && (process.argv[2] === undefined || process.argv.slice(2).every((flag)=>sharedFlags[flag] !== undefined
211
- ))) {
212
- help({
213
- usage: [
214
- 'tailwindcss [--input input.css] [--output output.css] [--watch] [options...]',
215
- 'tailwindcss init [--full] [--postcss] [--types] [options...]',
216
- ],
217
- commands: Object.keys(commands).filter((command2)=>command2 !== 'build'
218
- ).map((command3)=>`${command3} [options]`
219
- ),
220
- options: {
221
- ...commands.build.args,
222
- ...sharedFlags
223
- }
224
- });
225
- process.exit(0);
226
- }
227
- let command = ((arg = '')=>arg.startsWith('-') ? undefined : arg
228
- )(process.argv[2]) || 'build';
229
- if (commands[command] === undefined) {
230
- if (_fs.default.existsSync(_path.default.resolve(command))) {
231
- // TODO: Deprecate this in future versions
232
- // Check if non-existing command, might be a file.
233
- command = 'build';
234
- } else {
235
- help({
236
- message: `Invalid command: ${command}`,
237
- usage: [
238
- 'tailwindcss <command> [options]'
239
- ],
240
- commands: Object.keys(commands).filter((command4)=>command4 !== 'build'
241
- ).map((command5)=>`${command5} [options]`
242
- ),
243
- options: sharedFlags
244
- });
245
- process.exit(1);
246
- }
247
- }
248
- // Execute command
249
- let { args: flags , run } = commands[command];
250
- let args = (()=>{
251
- try {
252
- let result = (0, _arg).default(Object.fromEntries(Object.entries({
253
- ...flags,
254
- ...sharedFlags
255
- }).filter(([_key, value])=>{
256
- var ref;
257
- return !(value === null || value === void 0 ? void 0 : (ref = value.type) === null || ref === void 0 ? void 0 : ref.manualParsing);
258
- }).map(([key, value])=>[
259
- key,
260
- typeof value === 'object' ? value.type : value
261
- ]
262
- )), {
263
- permissive: true
264
- });
265
- // Manual parsing of flags to allow for special flags like oneOf(Boolean, String)
266
- for(let i = result['_'].length - 1; i >= 0; --i){
267
- let flag = result['_'][i];
268
- if (!flag.startsWith('-')) continue;
269
- let flagName = flag;
270
- let handler = flags[flag];
271
- // Resolve flagName & handler
272
- while(typeof handler === 'string'){
273
- flagName = handler;
274
- handler = flags[handler];
275
- }
276
- if (!handler) continue;
277
- let args1 = [];
278
- let offset = i + 1;
279
- // Parse args for current flag
280
- while(result['_'][offset] && !result['_'][offset].startsWith('-')){
281
- args1.push(result['_'][offset++]);
282
- }
283
- // Cleanup manually parsed flags + args
284
- result['_'].splice(i, 1 + args1.length);
285
- // Set the resolved value in the `result` object
286
- result[flagName] = handler.type(args1.length === 0 ? undefined : args1.length === 1 ? args1[0] : args1, flagName);
287
- }
288
- // Ensure that the `command` is always the first argument in the `args`.
289
- // This is important so that we don't have to check if a default command
290
- // (build) was used or not from within each plugin.
291
- //
292
- // E.g.: tailwindcss input.css -> _: ['build', 'input.css']
293
- // E.g.: tailwindcss build input.css -> _: ['build', 'input.css']
294
- if (result['_'][0] !== command) {
295
- result['_'].unshift(command);
296
- }
297
- return result;
298
- } catch (err) {
299
- if (err.code === 'ARG_UNKNOWN_OPTION') {
300
- help({
301
- message: err.message,
302
- usage: [
303
- 'tailwindcss <command> [options]'
304
- ],
305
- options: sharedFlags
306
- });
307
- process.exit(1);
308
- }
309
- throw err;
310
- }
311
- })();
312
- if (args['--help']) {
313
- help({
314
- options: {
315
- ...flags,
316
- ...sharedFlags
317
- },
318
- usage: [
319
- `tailwindcss ${command} [options]`
320
- ]
321
- });
322
- process.exit(0);
323
- }
324
- run();
325
- // ---
326
- function init() {
327
- let messages = [];
328
- var ref;
329
- let tailwindConfigLocation = _path.default.resolve((ref = args['_'][1]) !== null && ref !== void 0 ? ref : './tailwind.config.js');
330
- if (_fs.default.existsSync(tailwindConfigLocation)) {
331
- messages.push(`${_path.default.basename(tailwindConfigLocation)} already exists.`);
332
- } else {
333
- let stubFile = _fs.default.readFileSync(args['--full'] ? _path.default.resolve(__dirname, '../stubs/defaultConfig.stub.js') : _path.default.resolve(__dirname, '../stubs/simpleConfig.stub.js'), 'utf8');
334
- if (args['--types']) {
335
- let typesHeading = "/** @type {import('tailwindcss/types').Config} */";
336
- stubFile = stubFile.replace(`module.exports = `, `${typesHeading}\nconst config = `) + '\nmodule.exports = config';
337
- }
338
- // Change colors import
339
- stubFile = stubFile.replace('../colors', 'tailwindcss/colors');
340
- _fs.default.writeFileSync(tailwindConfigLocation, stubFile, 'utf8');
341
- messages.push(`Created Tailwind CSS config file: ${_path.default.basename(tailwindConfigLocation)}`);
342
- }
343
- if (args['--postcss']) {
344
- let postcssConfigLocation = _path.default.resolve('./postcss.config.js');
345
- if (_fs.default.existsSync(postcssConfigLocation)) {
346
- messages.push(`${_path.default.basename(postcssConfigLocation)} already exists.`);
347
- } else {
348
- let stubFile = _fs.default.readFileSync(_path.default.resolve(__dirname, '../stubs/defaultPostCssConfig.stub.js'), 'utf8');
349
- _fs.default.writeFileSync(postcssConfigLocation, stubFile, 'utf8');
350
- messages.push(`Created PostCSS config file: ${_path.default.basename(postcssConfigLocation)}`);
351
- }
352
- }
353
- if (messages.length > 0) {
354
- console.log();
355
- for (let message of messages){
356
- console.log(message);
357
- }
358
- }
359
- }
360
- async function build() {
361
- let input = args['--input'];
362
- let output = args['--output'];
363
- let shouldWatch = args['--watch'];
364
- let shouldPoll = args['--poll'];
365
- let shouldCoalesceWriteEvents = shouldPoll || process.platform === 'win32';
366
- let includePostCss = args['--postcss'];
367
- // Polling interval in milliseconds
368
- // Used only when polling or coalescing add/change events on Windows
369
- let pollInterval = 10;
370
- // TODO: Deprecate this in future versions
371
- if (!input && args['_'][1]) {
372
- console.error('[deprecation] Running tailwindcss without -i, please provide an input file.');
373
- input = args['--input'] = args['_'][1];
374
- }
375
- if (input && input !== '-' && !_fs.default.existsSync(input = _path.default.resolve(input))) {
376
- console.error(`Specified input file ${args['--input']} does not exist.`);
377
- process.exit(9);
378
- }
379
- if (args['--config'] && !_fs.default.existsSync(args['--config'] = _path.default.resolve(args['--config']))) {
380
- console.error(`Specified config file ${args['--config']} does not exist.`);
381
- process.exit(9);
382
- }
383
- let configPath = args['--config'] ? args['--config'] : ((defaultPath)=>_fs.default.existsSync(defaultPath) ? defaultPath : null
384
- )(_path.default.resolve('./tailwind.config.js'));
385
- async function loadPostCssPlugins() {
386
- let customPostCssPath = typeof args['--postcss'] === 'string' ? args['--postcss'] : undefined;
387
- let { plugins: configPlugins } = customPostCssPath ? await (async ()=>{
388
- let file = _path.default.resolve(customPostCssPath);
389
- // Implementation, see: https://unpkg.com/browse/postcss-load-config@3.1.0/src/index.js
390
- let { config ={} } = await (0, _lilconfig).lilconfig('postcss').load(file);
391
- if (typeof config === 'function') {
392
- config = config();
393
- } else {
394
- config = Object.assign({}, config);
395
- }
396
- if (!config.plugins) {
397
- config.plugins = [];
398
- }
399
- return {
400
- plugins: (0, _plugins).default(config, file)
401
- };
402
- })() : await (0, _postcssLoadConfig).default();
403
- let configPluginTailwindIdx = configPlugins.findIndex((plugin)=>{
404
- if (typeof plugin === 'function' && plugin.name === 'tailwindcss') {
405
- return true;
406
- }
407
- if (typeof plugin === 'object' && plugin !== null && plugin.postcssPlugin === 'tailwindcss') {
408
- return true;
409
- }
410
- return false;
411
- });
412
- let beforePlugins = configPluginTailwindIdx === -1 ? [] : configPlugins.slice(0, configPluginTailwindIdx);
413
- let afterPlugins = configPluginTailwindIdx === -1 ? configPlugins : configPlugins.slice(configPluginTailwindIdx + 1);
414
- return [
415
- beforePlugins,
416
- afterPlugins
417
- ];
418
- }
419
- function resolveConfig() {
420
- let config = configPath ? require(configPath) : {};
421
- if (args['--purge']) {
422
- _log.default.warn('purge-flag-deprecated', [
423
- 'The `--purge` flag has been deprecated.',
424
- 'Please use `--content` instead.',
425
- ]);
426
- if (!args['--content']) {
427
- args['--content'] = args['--purge'];
428
- }
429
- }
430
- if (args['--content']) {
431
- let files = args['--content'].split(/(?<!{[^}]+),/);
432
- let resolvedConfig = (0, _resolveConfig).default(config, {
433
- content: {
434
- files
435
- }
436
- });
437
- resolvedConfig.content.files = files;
438
- return resolvedConfig;
439
- }
440
- return (0, _resolveConfig).default(config);
441
- }
442
- function extractFileGlobs(config) {
443
- return config.content.files.filter((file)=>{
444
- // Strings in this case are files / globs. If it is something else,
445
- // like an object it's probably a raw content object. But this object
446
- // is not watchable, so let's remove it.
447
- return typeof file === 'string';
448
- }).map((glob)=>(0, _normalizePath).default(glob)
449
- );
450
- }
451
- function extractRawContent(config) {
452
- return config.content.files.filter((file)=>{
453
- return typeof file === 'object' && file !== null;
454
- });
455
- }
456
- function getChangedContent(config) {
457
- let changedContent = [];
458
- // Resolve globs from the content config
459
- let globs = extractFileGlobs(config);
460
- let files = _fastGlob.default.sync(globs);
461
- for (let file of files){
462
- changedContent.push({
463
- content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
464
- extension: _path.default.extname(file).slice(1)
465
- });
466
- }
467
- // Resolve raw content in the tailwind config
468
- for (let { raw: content , extension ='html' } of extractRawContent(config)){
469
- changedContent.push({
470
- content,
471
- extension
472
- });
473
- }
474
- return changedContent;
475
- }
476
- async function buildOnce() {
477
- let config = resolveConfig();
478
- let changedContent = getChangedContent(config);
479
- let tailwindPlugin = ()=>{
480
- return {
481
- postcssPlugin: 'tailwindcss',
482
- Once (root, { result }) {
483
- (0, _processTailwindFeatures).default(({ createContext })=>{
484
- return ()=>{
485
- return createContext(config, changedContent);
486
- };
487
- })(root, result);
488
- }
489
- };
490
- };
491
- tailwindPlugin.postcss = true;
492
- let [beforePlugins, afterPlugins] = includePostCss ? await loadPostCssPlugins() : [
493
- [],
494
- []
495
- ];
496
- let plugins = [
497
- ...beforePlugins,
498
- tailwindPlugin,
499
- !args['--minify'] && formatNodes,
500
- ...afterPlugins,
501
- !args['--no-autoprefixer'] && (()=>{
502
- // Try to load a local `autoprefixer` version first
503
- try {
504
- return require('autoprefixer');
505
- } catch {}
506
- return (0, _indexJs).lazyAutoprefixer();
507
- })(),
508
- args['--minify'] && (()=>{
509
- let options = {
510
- preset: [
511
- 'default',
512
- {
513
- cssDeclarationSorter: false
514
- }
515
- ]
516
- };
517
- // Try to load a local `cssnano` version first
518
- try {
519
- return require('cssnano');
520
- } catch {}
521
- return (0, _indexJs).lazyCssnano()(options);
522
- })(),
523
- ].filter(Boolean);
524
- let processor = (0, _indexJs).postcss(plugins);
525
- function processCSS(css) {
526
- let start = process.hrtime.bigint();
527
- return Promise.resolve().then(()=>output ? _fs.default.promises.mkdir(_path.default.dirname(output), {
528
- recursive: true
529
- }) : null
530
- ).then(()=>processor.process(css, {
531
- from: input,
532
- to: output
533
- })
534
- ).then((result)=>{
535
- if (!output) {
536
- return process.stdout.write(result.css);
537
- }
538
- return Promise.all([
539
- outputFile(output, result.css),
540
- result.map && outputFile(output + '.map', result.map.toString()),
541
- ].filter(Boolean));
542
- }).then(()=>{
543
- let end = process.hrtime.bigint();
544
- console.error();
545
- console.error('Done in', (end - start) / BigInt(1000000) + 'ms.');
546
- });
547
- }
548
- let css1 = await (()=>{
549
- // Piping in data, let's drain the stdin
550
- if (input === '-') {
551
- return drainStdin();
552
- }
553
- // Input file has been provided
554
- if (input) {
555
- return _fs.default.readFileSync(_path.default.resolve(input), 'utf8');
556
- }
557
- // No input file provided, fallback to default atrules
558
- return '@tailwind base; @tailwind components; @tailwind utilities';
559
- })();
560
- return processCSS(css1);
561
- }
562
- let context = null;
563
- async function startWatcher() {
564
- let changedContent = [];
565
- let configDependencies = [];
566
- let contextDependencies = new Set();
567
- let watcher = null;
568
- function refreshConfig() {
569
- env.DEBUG && console.time('Module dependencies');
570
- for (let file1 of configDependencies){
571
- delete require.cache[require.resolve(file1)];
572
- }
573
- if (configPath) {
574
- configDependencies = (0, _getModuleDependencies).default(configPath).map(({ file })=>file
575
- );
576
- for (let dependency of configDependencies){
577
- contextDependencies.add(dependency);
578
- }
579
- }
580
- env.DEBUG && console.timeEnd('Module dependencies');
581
- return resolveConfig();
582
- }
583
- let [beforePlugins, afterPlugins] = includePostCss ? await loadPostCssPlugins() : [
584
- [],
585
- []
586
- ];
587
- let plugins = [
588
- ...beforePlugins,
589
- '__TAILWIND_PLUGIN_POSITION__',
590
- !args['--minify'] && formatNodes,
591
- ...afterPlugins,
592
- !args['--no-autoprefixer'] && (()=>{
593
- // Try to load a local `autoprefixer` version first
594
- try {
595
- return require('autoprefixer');
596
- } catch {}
597
- return (0, _indexJs).lazyAutoprefixer();
598
- })(),
599
- args['--minify'] && (()=>{
600
- let options = {
601
- preset: [
602
- 'default',
603
- {
604
- cssDeclarationSorter: false
605
- }
606
- ]
607
- };
608
- // Try to load a local `cssnano` version first
609
- try {
610
- return require('cssnano');
611
- } catch {}
612
- return (0, _indexJs).lazyCssnano()(options);
613
- })(),
614
- ].filter(Boolean);
615
- async function rebuild(config) {
616
- env.DEBUG && console.time('Finished in');
617
- let tailwindPlugin = ()=>{
618
- return {
619
- postcssPlugin: 'tailwindcss',
620
- Once (root, { result }) {
621
- env.DEBUG && console.time('Compiling CSS');
622
- (0, _processTailwindFeatures).default(({ createContext })=>{
623
- console.error();
624
- console.error('Rebuilding...');
625
- return ()=>{
626
- if (context !== null) {
627
- context.changedContent = changedContent.splice(0);
628
- return context;
629
- }
630
- env.DEBUG && console.time('Creating context');
631
- context = createContext(config, changedContent.splice(0));
632
- env.DEBUG && console.timeEnd('Creating context');
633
- return context;
634
- };
635
- })(root, result);
636
- env.DEBUG && console.timeEnd('Compiling CSS');
637
- }
638
- };
639
- };
640
- tailwindPlugin.postcss = true;
641
- let tailwindPluginIdx = plugins.indexOf('__TAILWIND_PLUGIN_POSITION__');
642
- let copy = plugins.slice();
643
- copy.splice(tailwindPluginIdx, 1, tailwindPlugin);
644
- let processor = (0, _indexJs).postcss(copy);
645
- function processCSS(css) {
646
- let start = process.hrtime.bigint();
647
- return Promise.resolve().then(()=>output ? _fs.default.promises.mkdir(_path.default.dirname(output), {
648
- recursive: true
649
- }) : null
650
- ).then(()=>processor.process(css, {
651
- from: input,
652
- to: output
653
- })
654
- ).then(async (result)=>{
655
- for (let message of result.messages){
656
- if (message.type === 'dependency') {
657
- contextDependencies.add(message.file);
658
- }
659
- }
660
- watcher.add([
661
- ...contextDependencies
662
- ]);
663
- if (!output) {
664
- return process.stdout.write(result.css);
665
- }
666
- return Promise.all([
667
- outputFile(output, result.css),
668
- result.map && outputFile(output + '.map', result.map.toString()),
669
- ].filter(Boolean));
670
- }).then(()=>{
671
- let end = process.hrtime.bigint();
672
- console.error('Done in', (end - start) / BigInt(1000000) + 'ms.');
673
- }).catch((err)=>{
674
- if (err.name === 'CssSyntaxError') {
675
- console.error(err.toString());
676
- } else {
677
- console.error(err);
678
- }
679
- });
680
- }
681
- let css2 = await (()=>{
682
- // Piping in data, let's drain the stdin
683
- if (input === '-') {
684
- return drainStdin();
685
- }
686
- // Input file has been provided
687
- if (input) {
688
- return _fs.default.readFileSync(_path.default.resolve(input), 'utf8');
689
- }
690
- // No input file provided, fallback to default atrules
691
- return '@tailwind base; @tailwind components; @tailwind utilities';
692
- })();
693
- let result1 = await processCSS(css2);
694
- env.DEBUG && console.timeEnd('Finished in');
695
- return result1;
696
- }
697
- let config1 = refreshConfig(configPath);
698
- if (input) {
699
- contextDependencies.add(_path.default.resolve(input));
700
- }
701
- watcher = _chokidar.default.watch([
702
- ...contextDependencies,
703
- ...extractFileGlobs(config1)
704
- ], {
705
- usePolling: shouldPoll,
706
- interval: shouldPoll ? pollInterval : undefined,
707
- ignoreInitial: true,
708
- awaitWriteFinish: shouldCoalesceWriteEvents ? {
709
- stabilityThreshold: 50,
710
- pollInterval: pollInterval
711
- } : false
712
- });
713
- let chain = Promise.resolve();
714
- watcher.on('change', async (file)=>{
715
- if (contextDependencies.has(file)) {
716
- env.DEBUG && console.time('Resolve config');
717
- context = null;
718
- config1 = refreshConfig(configPath);
719
- env.DEBUG && console.timeEnd('Resolve config');
720
- env.DEBUG && console.time('Watch new files');
721
- let globs = extractFileGlobs(config1);
722
- watcher.add(configDependencies);
723
- watcher.add(globs);
724
- env.DEBUG && console.timeEnd('Watch new files');
725
- chain = chain.then(async ()=>{
726
- changedContent.push(...getChangedContent(config1));
727
- await rebuild(config1);
728
- });
729
- } else {
730
- chain = chain.then(async ()=>{
731
- changedContent.push({
732
- content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
733
- extension: _path.default.extname(file).slice(1)
734
- });
735
- await rebuild(config1);
736
- });
737
- }
738
- });
739
- watcher.on('add', async (file)=>{
740
- chain = chain.then(async ()=>{
741
- changedContent.push({
742
- content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
743
- extension: _path.default.extname(file).slice(1)
744
- });
745
- await rebuild(config1);
746
- });
747
- });
748
- chain = chain.then(()=>{
749
- changedContent.push(...getChangedContent(config1));
750
- return rebuild(config1);
751
- });
752
- }
753
- if (shouldWatch) {
754
- /* Abort the watcher if stdin is closed to avoid zombie processes */ process.stdin.on('end', ()=>process.exit(0)
755
- );
756
- process.stdin.resume();
757
- startWatcher();
758
- } else {
759
- buildOnce();
760
- }
761
- }
3
+ module.exports = require("./cli/index");