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
@@ -22,14 +22,19 @@
22
22
  2. Prevent adjustments of font size after orientation changes in iOS.
23
23
  3. Use a more readable tab size.
24
24
  4. Use the user's configured `sans` font-family by default.
25
+ 5. Use the user's configured `sans` font-feature-settings by default.
26
+ 6. Use the user's configured `sans` font-variation-settings by default.
25
27
  */
26
28
 
27
- html {
29
+ html,
30
+ :host {
28
31
  line-height: 1.5; /* 1 */
29
32
  -webkit-text-size-adjust: 100%; /* 2 */
30
33
  -moz-tab-size: 4; /* 3 */
31
34
  tab-size: 4; /* 3 */
32
- font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 4 */
35
+ font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 4 */
36
+ font-feature-settings: theme('fontFamily.sans[1].fontFeatureSettings', normal); /* 5 */
37
+ font-variation-settings: theme('fontFamily.sans[1].fontVariationSettings', normal); /* 6 */
33
38
  }
34
39
 
35
40
  /*
@@ -159,7 +164,10 @@ optgroup,
159
164
  select,
160
165
  textarea {
161
166
  font-family: inherit; /* 1 */
167
+ font-feature-settings: inherit; /* 1 */
168
+ font-variation-settings: inherit; /* 1 */
162
169
  font-size: 100%; /* 1 */
170
+ font-weight: inherit; /* 1 */
163
171
  line-height: inherit; /* 1 */
164
172
  color: inherit; /* 1 */
165
173
  margin: 0; /* 2 */
@@ -259,7 +267,7 @@ summary {
259
267
  }
260
268
 
261
269
  /*
262
- Removes the default spacing and border for appropriate elements.
270
+ Removes the default spacing for appropriate elements.
263
271
  */
264
272
 
265
273
  blockquote,
@@ -295,6 +303,10 @@ menu {
295
303
  padding: 0;
296
304
  }
297
305
 
306
+ dialog {
307
+ padding: 0;
308
+ }
309
+
298
310
  /*
299
311
  Prevent resizing textareas horizontally by default.
300
312
  */
@@ -326,6 +338,7 @@ button,
326
338
  /*
327
339
  Make sure disabled buttons don't get the pointer cursor.
328
340
  */
341
+
329
342
  :disabled {
330
343
  cursor: default;
331
344
  }
@@ -359,7 +372,7 @@ video {
359
372
  }
360
373
 
361
374
  /*
362
- Ensure the default browser behavior of the `hidden` attribute.
375
+ Make elements with the HTML hidden attribute stay hidden by default.
363
376
  */
364
377
 
365
378
  [hidden] {
@@ -2,58 +2,84 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.flagEnabled = flagEnabled;
6
- exports.issueFlagNotices = issueFlagNotices;
7
- exports.default = void 0;
8
- var _picocolors = _interopRequireDefault(require("picocolors"));
9
- var _log = _interopRequireDefault(require("./util/log"));
10
- function _interopRequireDefault(obj) {
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ featureFlags: function() {
13
+ return featureFlags;
14
+ },
15
+ flagEnabled: function() {
16
+ return flagEnabled;
17
+ },
18
+ issueFlagNotices: function() {
19
+ return issueFlagNotices;
20
+ },
21
+ default: function() {
22
+ return _default;
23
+ }
24
+ });
25
+ const _picocolors = /*#__PURE__*/ _interop_require_default(require("picocolors"));
26
+ const _log = /*#__PURE__*/ _interop_require_default(require("./util/log"));
27
+ function _interop_require_default(obj) {
11
28
  return obj && obj.__esModule ? obj : {
12
29
  default: obj
13
30
  };
14
31
  }
15
32
  let defaults = {
16
- optimizeUniversalDefaults: false
33
+ optimizeUniversalDefaults: false,
34
+ disableColorOpacityUtilitiesByDefault: false,
35
+ relativeContentPathsByDefault: false,
36
+ oxideParser: true,
37
+ logicalSiblingUtilities: false
17
38
  };
18
39
  let featureFlags = {
19
- future: [],
40
+ future: [
41
+ 'hoverOnlyWhenSupported',
42
+ 'respectDefaultRingColorOpacity',
43
+ 'disableColorOpacityUtilitiesByDefault',
44
+ 'relativeContentPathsByDefault',
45
+ 'logicalSiblingUtilities'
46
+ ],
20
47
  experimental: [
21
- 'optimizeUniversalDefaults'
48
+ 'optimizeUniversalDefaults',
49
+ 'oxideParser'
22
50
  ]
23
51
  };
24
52
  function flagEnabled(config, flag) {
25
53
  if (featureFlags.future.includes(flag)) {
26
- var ref;
27
- var ref1, ref2;
28
- return config.future === 'all' || ((ref2 = (ref1 = config === null || config === void 0 ? void 0 : (ref = config.future) === null || ref === void 0 ? void 0 : ref[flag]) !== null && ref1 !== void 0 ? ref1 : defaults[flag]) !== null && ref2 !== void 0 ? ref2 : false);
54
+ var _config_future, _config;
55
+ var _config_future_flag, _ref;
56
+ return config.future === 'all' || ((_ref = (_config_future_flag = (_config = config) === null || _config === void 0 ? void 0 : (_config_future = _config.future) === null || _config_future === void 0 ? void 0 : _config_future[flag]) !== null && _config_future_flag !== void 0 ? _config_future_flag : defaults[flag]) !== null && _ref !== void 0 ? _ref : false);
29
57
  }
30
58
  if (featureFlags.experimental.includes(flag)) {
31
- var ref3;
32
- var ref4, ref5;
33
- return config.experimental === 'all' || ((ref5 = (ref4 = config === null || config === void 0 ? void 0 : (ref3 = config.experimental) === null || ref3 === void 0 ? void 0 : ref3[flag]) !== null && ref4 !== void 0 ? ref4 : defaults[flag]) !== null && ref5 !== void 0 ? ref5 : false);
59
+ var _config_experimental, _config1;
60
+ var _config_experimental_flag, _ref1;
61
+ return config.experimental === 'all' || ((_ref1 = (_config_experimental_flag = (_config1 = config) === null || _config1 === void 0 ? void 0 : (_config_experimental = _config1.experimental) === null || _config_experimental === void 0 ? void 0 : _config_experimental[flag]) !== null && _config_experimental_flag !== void 0 ? _config_experimental_flag : defaults[flag]) !== null && _ref1 !== void 0 ? _ref1 : false);
34
62
  }
35
63
  return false;
36
64
  }
37
65
  function experimentalFlagsEnabled(config) {
66
+ var _config;
38
67
  if (config.experimental === 'all') {
39
68
  return featureFlags.experimental;
40
69
  }
41
- var ref;
42
- return Object.keys((ref = config === null || config === void 0 ? void 0 : config.experimental) !== null && ref !== void 0 ? ref : {}).filter((flag)=>featureFlags.experimental.includes(flag) && config.experimental[flag]
43
- );
70
+ var _config_experimental;
71
+ return Object.keys((_config_experimental = (_config = config) === null || _config === void 0 ? void 0 : _config.experimental) !== null && _config_experimental !== void 0 ? _config_experimental : {}).filter((flag)=>featureFlags.experimental.includes(flag) && config.experimental[flag]);
44
72
  }
45
73
  function issueFlagNotices(config) {
46
74
  if (process.env.JEST_WORKER_ID !== undefined) {
47
75
  return;
48
76
  }
49
77
  if (experimentalFlagsEnabled(config).length > 0) {
50
- let changes = experimentalFlagsEnabled(config).map((s)=>_picocolors.default.yellow(s)
51
- ).join(', ');
78
+ let changes = experimentalFlagsEnabled(config).map((s)=>_picocolors.default.yellow(s)).join(', ');
52
79
  _log.default.warn('experimental-flags-enabled', [
53
80
  `You have enabled experimental features: ${changes}`,
54
- 'Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time.',
81
+ 'Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time.'
55
82
  ]);
56
83
  }
57
84
  }
58
- var _default = featureFlags;
59
- exports.default = _default;
85
+ const _default = featureFlags;
package/lib/index.js CHANGED
@@ -1,30 +1,2 @@
1
1
  "use strict";
2
- var _setupTrackingContext = _interopRequireDefault(require("./lib/setupTrackingContext"));
3
- var _processTailwindFeatures = _interopRequireDefault(require("./processTailwindFeatures"));
4
- var _sharedState = require("./lib/sharedState");
5
- function _interopRequireDefault(obj) {
6
- return obj && obj.__esModule ? obj : {
7
- default: obj
8
- };
9
- }
10
- module.exports = function tailwindcss(configOrPath) {
11
- return {
12
- postcssPlugin: 'tailwindcss',
13
- plugins: [
14
- _sharedState.env.DEBUG && function(root) {
15
- console.log('\n');
16
- console.time('JIT TOTAL');
17
- return root;
18
- },
19
- function(root, result) {
20
- (0, _processTailwindFeatures).default((0, _setupTrackingContext).default(configOrPath))(root, result);
21
- },
22
- _sharedState.env.DEBUG && function(root) {
23
- console.timeEnd('JIT TOTAL');
24
- console.log('\n');
25
- return root;
26
- },
27
- ].filter(Boolean)
28
- };
29
- };
30
- module.exports.postcss = true;
2
+ module.exports = require('./plugin');
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "hasContentChanged", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return hasContentChanged;
9
+ }
10
+ });
11
+ const _crypto = /*#__PURE__*/ _interop_require_default(require("crypto"));
12
+ const _sharedState = /*#__PURE__*/ _interop_require_wildcard(require("./sharedState"));
13
+ function _interop_require_default(obj) {
14
+ return obj && obj.__esModule ? obj : {
15
+ default: obj
16
+ };
17
+ }
18
+ function _getRequireWildcardCache(nodeInterop) {
19
+ if (typeof WeakMap !== "function") return null;
20
+ var cacheBabelInterop = new WeakMap();
21
+ var cacheNodeInterop = new WeakMap();
22
+ return (_getRequireWildcardCache = function(nodeInterop) {
23
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
24
+ })(nodeInterop);
25
+ }
26
+ function _interop_require_wildcard(obj, nodeInterop) {
27
+ if (!nodeInterop && obj && obj.__esModule) {
28
+ return obj;
29
+ }
30
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
31
+ return {
32
+ default: obj
33
+ };
34
+ }
35
+ var cache = _getRequireWildcardCache(nodeInterop);
36
+ if (cache && cache.has(obj)) {
37
+ return cache.get(obj);
38
+ }
39
+ var newObj = {};
40
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
41
+ for(var key in obj){
42
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
43
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
44
+ if (desc && (desc.get || desc.set)) {
45
+ Object.defineProperty(newObj, key, desc);
46
+ } else {
47
+ newObj[key] = obj[key];
48
+ }
49
+ }
50
+ }
51
+ newObj.default = obj;
52
+ if (cache) {
53
+ cache.set(obj, newObj);
54
+ }
55
+ return newObj;
56
+ }
57
+ /**
58
+ * Calculate the hash of a string.
59
+ *
60
+ * This doesn't need to be cryptographically secure or
61
+ * anything like that since it's used only to detect
62
+ * when the CSS changes to invalidate the context.
63
+ *
64
+ * This is wrapped in a try/catch because it's really dependent
65
+ * on how Node itself is build and the environment and OpenSSL
66
+ * version / build that is installed on the user's machine.
67
+ *
68
+ * Based on the environment this can just outright fail.
69
+ *
70
+ * See https://github.com/nodejs/node/issues/40455
71
+ *
72
+ * @param {string} str
73
+ */ function getHash(str) {
74
+ try {
75
+ return _crypto.default.createHash('md5').update(str, 'utf-8').digest('binary');
76
+ } catch (err) {
77
+ return '';
78
+ }
79
+ }
80
+ function hasContentChanged(sourcePath, root) {
81
+ let css = root.toString();
82
+ // We only care about files with @tailwind directives
83
+ // Other files use an existing context
84
+ if (!css.includes('@tailwind')) {
85
+ return false;
86
+ }
87
+ let existingHash = _sharedState.sourceHashMap.get(sourcePath);
88
+ let rootHash = getHash(css);
89
+ let didChange = existingHash !== rootHash;
90
+ _sharedState.sourceHashMap.set(sourcePath, rootHash);
91
+ return didChange;
92
+ }
@@ -2,7 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.default = collapseAdjacentRules;
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return collapseAdjacentRules;
9
+ }
10
+ });
6
11
  let comparisonMap = {
7
12
  atrule: [
8
13
  'name',
@@ -26,12 +31,14 @@ function collapseAdjacentRules() {
26
31
  return;
27
32
  }
28
33
  let properties = comparisonMap[node.type];
29
- var _property, _property1;
34
+ var _node_property, _currentRule_property;
30
35
  if (node.type === 'atrule' && node.name === 'font-face') {
31
36
  currentRule = node;
32
- } else if (properties.every((property)=>((_property = node[property]) !== null && _property !== void 0 ? _property : '').replace(/\s+/g, ' ') === ((_property1 = currentRule[property]) !== null && _property1 !== void 0 ? _property1 : '').replace(/\s+/g, ' ')
33
- )) {
34
- currentRule.append(node.nodes);
37
+ } else if (properties.every((property)=>((_node_property = node[property]) !== null && _node_property !== void 0 ? _node_property : '').replace(/\s+/g, ' ') === ((_currentRule_property = currentRule[property]) !== null && _currentRule_property !== void 0 ? _currentRule_property : '').replace(/\s+/g, ' '))) {
38
+ // An AtRule may not have children (for example if we encounter duplicate @import url(…) rules)
39
+ if (node.nodes) {
40
+ currentRule.append(node.nodes);
41
+ }
35
42
  node.remove();
36
43
  } else {
37
44
  currentRule = node;
@@ -2,7 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.default = collapseDuplicateDeclarations;
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return collapseDuplicateDeclarations;
9
+ }
10
+ });
6
11
  function collapseDuplicateDeclarations() {
7
12
  return (root)=>{
8
13
  root.walkRules((node)=>{
@@ -41,8 +46,8 @@ function collapseDuplicateDeclarations() {
41
46
  });
42
47
  // Drop all the duplicate declarations with the exact same value we've
43
48
  // already seen so far.
44
- for (let decl1 of droppable){
45
- decl1.remove();
49
+ for (let decl of droppable){
50
+ decl.remove();
46
51
  }
47
52
  // Analyze the declarations based on its unit, drop all the declarations
48
53
  // with the same unit but the last one in the list.
@@ -58,9 +63,9 @@ function collapseDuplicateDeclarations() {
58
63
  }
59
64
  byUnit.get(unit).add(decl);
60
65
  }
61
- for (let declarations1 of byUnit.values()){
66
+ for (let declarations of byUnit.values()){
62
67
  // Get all but the last one
63
- let removableDeclarations = Array.from(declarations1).slice(0, -1);
68
+ let removableDeclarations = Array.from(declarations).slice(0, -1);
64
69
  for (let decl of removableDeclarations){
65
70
  decl.remove();
66
71
  }
@@ -73,8 +78,8 @@ let UNITLESS_NUMBER = Symbol('unitless-number');
73
78
  function resolveUnit(input) {
74
79
  let result = /^-?\d*.?\d+([\w%]+)?$/g.exec(input);
75
80
  if (result) {
76
- var ref;
77
- return (ref = result[1]) !== null && ref !== void 0 ? ref : UNITLESS_NUMBER;
81
+ var _result_;
82
+ return (_result_ = result[1]) !== null && _result_ !== void 0 ? _result_ : UNITLESS_NUMBER;
78
83
  }
79
84
  return null;
80
85
  }
@@ -0,0 +1,207 @@
1
+ // @ts-check
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ function _export(target, all) {
7
+ for(var name in all)Object.defineProperty(target, name, {
8
+ enumerable: true,
9
+ get: all[name]
10
+ });
11
+ }
12
+ _export(exports, {
13
+ parseCandidateFiles: function() {
14
+ return parseCandidateFiles;
15
+ },
16
+ resolvedChangedContent: function() {
17
+ return resolvedChangedContent;
18
+ }
19
+ });
20
+ const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
21
+ const _path = /*#__PURE__*/ _interop_require_default(require("path"));
22
+ const _isglob = /*#__PURE__*/ _interop_require_default(require("is-glob"));
23
+ const _fastglob = /*#__PURE__*/ _interop_require_default(require("fast-glob"));
24
+ const _normalizepath = /*#__PURE__*/ _interop_require_default(require("normalize-path"));
25
+ const _parseGlob = require("../util/parseGlob");
26
+ const _sharedState = require("./sharedState");
27
+ const _oxide = require("@tailwindcss/oxide");
28
+ function _interop_require_default(obj) {
29
+ return obj && obj.__esModule ? obj : {
30
+ default: obj
31
+ };
32
+ }
33
+ /** @typedef {import('../../types/config.js').RawFile} RawFile */ /** @typedef {import('../../types/config.js').FilePath} FilePath */ /*
34
+ * @param {import('tailwindcss').Config} tailwindConfig
35
+ * @param {{skip:string[]}} options
36
+ * @returns {ContentPath[]}
37
+ */ function resolveContentFiles(tailwindConfig, { skip = [] } = {}) {
38
+ if (Array.isArray(tailwindConfig.content.files) && tailwindConfig.content.files.includes('auto')) {
39
+ let idx = tailwindConfig.content.files.indexOf('auto');
40
+ if (idx !== -1) {
41
+ _sharedState.env.DEBUG && console.time('Calculating resolve content paths');
42
+ let resolved = (0, _oxide.resolveContentPaths)({
43
+ base: process.cwd()
44
+ });
45
+ _sharedState.env.DEBUG && console.timeEnd('Calculating resolve content paths');
46
+ tailwindConfig.content.files.splice(idx, 1, ...resolved);
47
+ }
48
+ }
49
+ if (skip.length > 0) {
50
+ tailwindConfig.content.files = tailwindConfig.content.files.filter((filePath)=>!skip.includes(filePath));
51
+ }
52
+ return tailwindConfig.content.files;
53
+ }
54
+ function parseCandidateFiles(context, tailwindConfig) {
55
+ let files = resolveContentFiles(tailwindConfig, {
56
+ skip: [
57
+ context.userConfigPath
58
+ ]
59
+ });
60
+ // Normalize the file globs
61
+ files = files.filter((filePath)=>typeof filePath === 'string');
62
+ files = files.map(_normalizepath.default);
63
+ // Split into included and excluded globs
64
+ let tasks = _fastglob.default.generateTasks(files);
65
+ /** @type {ContentPath[]} */ let included = [];
66
+ /** @type {ContentPath[]} */ let excluded = [];
67
+ for (const task of tasks){
68
+ included.push(...task.positive.map((filePath)=>parseFilePath(filePath, false)));
69
+ excluded.push(...task.negative.map((filePath)=>parseFilePath(filePath, true)));
70
+ }
71
+ let paths = [
72
+ ...included,
73
+ ...excluded
74
+ ];
75
+ // Resolve paths relative to the config file or cwd
76
+ paths = resolveRelativePaths(context, paths);
77
+ // Resolve symlinks if possible
78
+ paths = paths.flatMap(resolvePathSymlinks);
79
+ // Update cached patterns
80
+ paths = paths.map(resolveGlobPattern);
81
+ return paths;
82
+ }
83
+ /**
84
+ *
85
+ * @param {string} filePath
86
+ * @param {boolean} ignore
87
+ * @returns {ContentPath}
88
+ */ function parseFilePath(filePath, ignore) {
89
+ let contentPath = {
90
+ original: filePath,
91
+ base: filePath,
92
+ ignore,
93
+ pattern: filePath,
94
+ glob: null
95
+ };
96
+ if ((0, _isglob.default)(filePath)) {
97
+ Object.assign(contentPath, (0, _parseGlob.parseGlob)(filePath));
98
+ }
99
+ return contentPath;
100
+ }
101
+ /**
102
+ *
103
+ * @param {ContentPath} contentPath
104
+ * @returns {ContentPath}
105
+ */ function resolveGlobPattern(contentPath) {
106
+ // This is required for Windows support to properly pick up Glob paths.
107
+ // Afaik, this technically shouldn't be needed but there's probably
108
+ // some internal, direct path matching with a normalized path in
109
+ // a package which can't handle mixed directory separators
110
+ let base = (0, _normalizepath.default)(contentPath.base);
111
+ // If the user's file path contains any special characters (like parens) for instance fast-glob
112
+ // is like "OOOH SHINY" and treats them as such. So we have to escape the base path to fix this
113
+ base = _fastglob.default.escapePath(base);
114
+ contentPath.pattern = contentPath.glob ? `${base}/${contentPath.glob}` : base;
115
+ contentPath.pattern = contentPath.ignore ? `!${contentPath.pattern}` : contentPath.pattern;
116
+ return contentPath;
117
+ }
118
+ /**
119
+ * Resolve each path relative to the config file (when possible) if the experimental flag is enabled
120
+ * Otherwise, resolve relative to the current working directory
121
+ *
122
+ * @param {any} context
123
+ * @param {ContentPath[]} contentPaths
124
+ * @returns {ContentPath[]}
125
+ */ function resolveRelativePaths(context, contentPaths) {
126
+ let resolveFrom = [];
127
+ // Resolve base paths relative to the config file (when possible) if the experimental flag is enabled
128
+ if (context.userConfigPath && context.tailwindConfig.content.relative) {
129
+ resolveFrom = [
130
+ _path.default.dirname(context.userConfigPath)
131
+ ];
132
+ }
133
+ return contentPaths.map((contentPath)=>{
134
+ contentPath.base = _path.default.resolve(...resolveFrom, contentPath.base);
135
+ return contentPath;
136
+ });
137
+ }
138
+ /**
139
+ * Resolve the symlink for the base directory / file in each path
140
+ * These are added as additional dependencies to watch for changes because
141
+ * some tools (like webpack) will only watch the actual file or directory
142
+ * but not the symlink itself even in projects that use monorepos.
143
+ *
144
+ * @param {ContentPath} contentPath
145
+ * @returns {ContentPath[]}
146
+ */ function resolvePathSymlinks(contentPath) {
147
+ let paths = [
148
+ contentPath
149
+ ];
150
+ try {
151
+ let resolvedPath = _fs.default.realpathSync(contentPath.base);
152
+ if (resolvedPath !== contentPath.base) {
153
+ paths.push({
154
+ ...contentPath,
155
+ base: resolvedPath
156
+ });
157
+ }
158
+ } catch (e) {
159
+ // TODO: log this?
160
+ }
161
+ return paths;
162
+ }
163
+ function resolvedChangedContent(context, candidateFiles, fileModifiedMap) {
164
+ let changedContent = context.tailwindConfig.content.files.filter((item)=>typeof item.raw === 'string').map(({ raw, extension = 'html' })=>({
165
+ content: raw,
166
+ extension
167
+ }));
168
+ let [changedFiles, mTimesToCommit] = resolveChangedFiles(candidateFiles, fileModifiedMap);
169
+ for (let changedFile of changedFiles){
170
+ let extension = _path.default.extname(changedFile).slice(1);
171
+ changedContent.push({
172
+ file: changedFile,
173
+ extension
174
+ });
175
+ }
176
+ return [
177
+ changedContent,
178
+ mTimesToCommit
179
+ ];
180
+ }
181
+ /**
182
+ *
183
+ * @param {ContentPath[]} candidateFiles
184
+ * @param {Map<string, number>} fileModifiedMap
185
+ * @returns {[Set<string>, Map<string, number>]}
186
+ */ function resolveChangedFiles(candidateFiles, fileModifiedMap) {
187
+ let paths = candidateFiles.map((contentPath)=>contentPath.pattern);
188
+ let mTimesToCommit = new Map();
189
+ let changedFiles = new Set();
190
+ _sharedState.env.DEBUG && console.time('Finding changed files');
191
+ let files = _fastglob.default.sync(paths, {
192
+ absolute: true
193
+ });
194
+ for (let file of files){
195
+ let prevModified = fileModifiedMap.get(file) || -Infinity;
196
+ let modified = _fs.default.statSync(file).mtimeMs;
197
+ if (modified > prevModified) {
198
+ changedFiles.add(file);
199
+ mTimesToCommit.set(file, modified);
200
+ }
201
+ }
202
+ _sharedState.env.DEBUG && console.timeEnd('Finding changed files');
203
+ return [
204
+ changedFiles,
205
+ mTimesToCommit
206
+ ];
207
+ }