tailwindcss 0.0.0-insiders.d3e754a → 0.0.0-insiders.d3f2221

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