tailwindcss 0.0.0-insiders.f4635e0 → 0.0.0-insiders.f4a2ccd

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