tailwindcss 0.0.0-insiders.fda68f7 → 0.0.0-oxide.6bf5e56

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 (195) hide show
  1. package/CHANGELOG.md +603 -2
  2. package/LICENSE +1 -2
  3. package/README.md +14 -6
  4. package/colors.d.ts +3 -0
  5. package/colors.js +2 -304
  6. package/defaultConfig.d.ts +3 -0
  7. package/defaultConfig.js +2 -4
  8. package/defaultTheme.d.ts +4 -0
  9. package/defaultTheme.js +2 -4
  10. package/lib/cli/build/deps.js +54 -0
  11. package/lib/cli/build/index.js +48 -0
  12. package/lib/cli/build/plugin.js +367 -0
  13. package/lib/cli/build/utils.js +78 -0
  14. package/lib/cli/build/watching.js +178 -0
  15. package/lib/cli/help/index.js +71 -0
  16. package/lib/cli/index.js +18 -0
  17. package/lib/cli/init/index.js +46 -0
  18. package/lib/cli/shared.js +13 -0
  19. package/lib/cli-peer-dependencies.js +22 -14
  20. package/lib/cli.js +217 -743
  21. package/lib/constants.js +41 -34
  22. package/lib/corePluginList.js +178 -5
  23. package/lib/corePlugins.js +3879 -2941
  24. package/lib/css/preflight.css +22 -9
  25. package/lib/featureFlags.js +61 -50
  26. package/lib/index.js +45 -28
  27. package/lib/lib/cacheInvalidation.js +90 -0
  28. package/lib/lib/collapseAdjacentRules.js +52 -36
  29. package/lib/lib/collapseDuplicateDeclarations.js +83 -0
  30. package/lib/lib/content.js +176 -0
  31. package/lib/lib/defaultExtractor.js +236 -0
  32. package/lib/lib/detectNesting.js +37 -0
  33. package/lib/lib/evaluateTailwindFunctions.js +203 -161
  34. package/lib/lib/expandApplyAtRules.js +502 -221
  35. package/lib/lib/expandTailwindAtRules.js +258 -243
  36. package/lib/lib/findAtConfigPath.js +44 -0
  37. package/lib/lib/generateRules.js +775 -320
  38. package/lib/lib/getModuleDependencies.js +44 -46
  39. package/lib/lib/normalizeTailwindDirectives.js +79 -60
  40. package/lib/lib/offsets.js +217 -0
  41. package/lib/lib/partitionApplyAtRules.js +56 -0
  42. package/lib/lib/regex.js +60 -0
  43. package/lib/lib/resolveDefaultsAtRules.js +150 -94
  44. package/lib/lib/setupContextUtils.js +1146 -599
  45. package/lib/lib/setupTrackingContext.js +129 -177
  46. package/lib/lib/sharedState.js +53 -21
  47. package/lib/lib/substituteScreenAtRules.js +26 -28
  48. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  49. package/lib/postcss-plugins/nesting/index.js +19 -0
  50. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  51. package/lib/processTailwindFeatures.js +58 -53
  52. package/lib/public/colors.js +331 -0
  53. package/lib/public/create-plugin.js +15 -0
  54. package/lib/public/default-config.js +16 -0
  55. package/lib/public/default-theme.js +16 -0
  56. package/lib/public/resolve-config.js +22 -0
  57. package/lib/util/bigSign.js +7 -6
  58. package/lib/util/buildMediaQuery.js +21 -32
  59. package/lib/util/cloneDeep.js +16 -14
  60. package/lib/util/cloneNodes.js +29 -15
  61. package/lib/util/color.js +90 -66
  62. package/lib/util/configurePlugins.js +17 -15
  63. package/lib/util/createPlugin.js +23 -26
  64. package/lib/util/createUtilityPlugin.js +46 -46
  65. package/lib/util/dataTypes.js +242 -0
  66. package/lib/util/defaults.js +20 -15
  67. package/lib/util/escapeClassName.js +18 -17
  68. package/lib/util/escapeCommas.js +7 -6
  69. package/lib/util/flattenColorPalette.js +13 -12
  70. package/lib/util/formatVariantSelector.js +285 -0
  71. package/lib/util/getAllConfigs.js +44 -18
  72. package/lib/util/hashConfig.js +15 -12
  73. package/lib/util/isKeyframeRule.js +7 -6
  74. package/lib/util/isPlainObject.js +11 -11
  75. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  76. package/lib/util/log.js +52 -33
  77. package/lib/util/nameClass.js +37 -26
  78. package/lib/util/negateValue.js +31 -17
  79. package/lib/util/normalizeConfig.js +281 -0
  80. package/lib/util/normalizeScreens.js +170 -0
  81. package/lib/util/parseAnimationValue.js +85 -54
  82. package/lib/util/parseBoxShadowValue.js +84 -0
  83. package/lib/util/parseDependency.js +41 -70
  84. package/lib/util/parseGlob.js +34 -0
  85. package/lib/util/parseObjectStyles.js +30 -24
  86. package/lib/util/pluginUtils.js +252 -287
  87. package/lib/util/prefixSelector.js +20 -20
  88. package/lib/util/removeAlphaVariables.js +29 -0
  89. package/lib/util/resolveConfig.js +221 -256
  90. package/lib/util/resolveConfigPath.js +43 -48
  91. package/lib/util/responsive.js +18 -14
  92. package/lib/util/splitAtTopLevelOnly.js +43 -0
  93. package/lib/util/tap.js +8 -7
  94. package/lib/util/toColorValue.js +7 -6
  95. package/lib/util/toPath.js +27 -8
  96. package/lib/util/transformThemeValue.js +67 -28
  97. package/lib/util/validateConfig.js +24 -0
  98. package/lib/util/validateFormalSyntax.js +24 -0
  99. package/lib/util/withAlphaVariable.js +67 -57
  100. package/nesting/index.js +2 -12
  101. package/package.json +60 -65
  102. package/peers/index.js +76445 -84221
  103. package/plugin.d.ts +11 -0
  104. package/plugin.js +1 -2
  105. package/resolveConfig.d.ts +12 -0
  106. package/resolveConfig.js +2 -7
  107. package/scripts/create-plugin-list.js +2 -2
  108. package/scripts/generate-types.js +105 -0
  109. package/scripts/release-channel.js +18 -0
  110. package/scripts/release-notes.js +21 -0
  111. package/scripts/type-utils.js +27 -0
  112. package/src/cli/build/deps.js +56 -0
  113. package/src/cli/build/index.js +49 -0
  114. package/src/cli/build/plugin.js +439 -0
  115. package/src/cli/build/utils.js +76 -0
  116. package/src/cli/build/watching.js +227 -0
  117. package/src/cli/help/index.js +70 -0
  118. package/src/cli/index.js +3 -0
  119. package/src/cli/init/index.js +50 -0
  120. package/src/cli/shared.js +6 -0
  121. package/src/cli-peer-dependencies.js +7 -1
  122. package/src/cli.js +50 -575
  123. package/src/corePluginList.js +1 -1
  124. package/src/corePlugins.js +2405 -1948
  125. package/src/css/preflight.css +22 -9
  126. package/src/featureFlags.js +26 -10
  127. package/src/index.js +19 -6
  128. package/src/lib/cacheInvalidation.js +52 -0
  129. package/src/lib/collapseAdjacentRules.js +21 -2
  130. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  131. package/src/lib/content.js +212 -0
  132. package/src/lib/defaultExtractor.js +211 -0
  133. package/src/lib/detectNesting.js +39 -0
  134. package/src/lib/evaluateTailwindFunctions.js +84 -10
  135. package/src/lib/expandApplyAtRules.js +508 -153
  136. package/src/lib/expandTailwindAtRules.js +130 -104
  137. package/src/lib/findAtConfigPath.js +48 -0
  138. package/src/lib/generateRules.js +596 -70
  139. package/src/lib/normalizeTailwindDirectives.js +10 -3
  140. package/src/lib/offsets.js +270 -0
  141. package/src/lib/partitionApplyAtRules.js +52 -0
  142. package/src/lib/regex.js +74 -0
  143. package/src/lib/resolveDefaultsAtRules.js +105 -47
  144. package/src/lib/setupContextUtils.js +828 -196
  145. package/src/lib/setupTrackingContext.js +19 -54
  146. package/src/lib/sharedState.js +45 -7
  147. package/src/lib/substituteScreenAtRules.js +6 -3
  148. package/src/postcss-plugins/nesting/README.md +42 -0
  149. package/src/postcss-plugins/nesting/index.js +13 -0
  150. package/src/postcss-plugins/nesting/plugin.js +80 -0
  151. package/src/processTailwindFeatures.js +19 -2
  152. package/src/public/colors.js +300 -0
  153. package/src/public/create-plugin.js +2 -0
  154. package/src/public/default-config.js +4 -0
  155. package/src/public/default-theme.js +4 -0
  156. package/src/public/resolve-config.js +7 -0
  157. package/src/util/buildMediaQuery.js +14 -16
  158. package/src/util/cloneNodes.js +19 -2
  159. package/src/util/color.js +31 -14
  160. package/src/util/createUtilityPlugin.js +2 -11
  161. package/src/util/dataTypes.js +256 -0
  162. package/src/util/defaults.js +6 -0
  163. package/src/util/formatVariantSelector.js +319 -0
  164. package/src/util/getAllConfigs.js +19 -0
  165. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  166. package/src/util/log.js +23 -22
  167. package/src/util/nameClass.js +14 -6
  168. package/src/util/negateValue.js +15 -5
  169. package/src/util/normalizeConfig.js +300 -0
  170. package/src/util/normalizeScreens.js +140 -0
  171. package/src/util/parseAnimationValue.js +7 -1
  172. package/src/util/parseBoxShadowValue.js +72 -0
  173. package/src/util/parseDependency.js +37 -38
  174. package/src/util/parseGlob.js +24 -0
  175. package/src/util/pluginUtils.js +216 -197
  176. package/src/util/prefixSelector.js +7 -8
  177. package/src/util/removeAlphaVariables.js +24 -0
  178. package/src/util/resolveConfig.js +86 -91
  179. package/src/util/splitAtTopLevelOnly.js +45 -0
  180. package/src/util/toPath.js +23 -1
  181. package/src/util/transformThemeValue.js +33 -8
  182. package/src/util/validateConfig.js +13 -0
  183. package/src/util/validateFormalSyntax.js +34 -0
  184. package/src/util/withAlphaVariable.js +14 -9
  185. package/stubs/defaultConfig.stub.js +186 -117
  186. package/stubs/simpleConfig.stub.js +1 -1
  187. package/types/config.d.ts +362 -0
  188. package/types/generated/.gitkeep +0 -0
  189. package/types/generated/colors.d.ts +276 -0
  190. package/types/generated/corePluginList.d.ts +1 -0
  191. package/types/generated/default-theme.d.ts +342 -0
  192. package/types/index.d.ts +7 -0
  193. package/lib/lib/setupWatchingContext.js +0 -331
  194. package/nesting/plugin.js +0 -41
  195. package/src/lib/setupWatchingContext.js +0 -306
@@ -9,7 +9,12 @@
9
9
  box-sizing: border-box; /* 1 */
10
10
  border-width: 0; /* 2 */
11
11
  border-style: solid; /* 2 */
12
- border-color: currentColor; /* 2 */
12
+ border-color: theme('borderColor.DEFAULT', currentColor); /* 2 */
13
+ }
14
+
15
+ ::before,
16
+ ::after {
17
+ --tw-content: '';
13
18
  }
14
19
 
15
20
  /*
@@ -17,6 +22,7 @@
17
22
  2. Prevent adjustments of font size after orientation changes in iOS.
18
23
  3. Use a more readable tab size.
19
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.
20
26
  */
21
27
 
22
28
  html {
@@ -25,6 +31,7 @@ html {
25
31
  -moz-tab-size: 4; /* 3 */
26
32
  tab-size: 4; /* 3 */
27
33
  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 */
34
+ font-feature-settings: theme('fontFamily.sans[1].fontFeatureSettings', normal); /* 5 */
28
35
  }
29
36
 
30
37
  /*
@@ -53,7 +60,7 @@ hr {
53
60
  Add the correct text decoration in Chrome, Edge, and Safari.
54
61
  */
55
62
 
56
- abbr[title] {
63
+ abbr:where([title]) {
57
64
  text-decoration: underline dotted;
58
65
  }
59
66
 
@@ -139,7 +146,7 @@ sup {
139
146
  table {
140
147
  text-indent: 0; /* 1 */
141
148
  border-color: inherit; /* 2 */
142
- border-collapse: collapse; /* 3 */
149
+ border-collapse: collapse; /* 3 */
143
150
  }
144
151
 
145
152
  /*
@@ -155,6 +162,7 @@ select,
155
162
  textarea {
156
163
  font-family: inherit; /* 1 */
157
164
  font-size: 100%; /* 1 */
165
+ font-weight: inherit; /* 1 */
158
166
  line-height: inherit; /* 1 */
159
167
  color: inherit; /* 1 */
160
168
  margin: 0; /* 2 */
@@ -283,7 +291,8 @@ legend {
283
291
  }
284
292
 
285
293
  ol,
286
- ul {
294
+ ul,
295
+ menu {
287
296
  list-style: none;
288
297
  margin: 0;
289
298
  padding: 0;
@@ -304,7 +313,7 @@ textarea {
304
313
 
305
314
  input::placeholder,
306
315
  textarea::placeholder {
307
- opacity: 1; /* 1 */
316
+ opacity: 1; /* 1 */
308
317
  color: theme('colors.gray.400', #9ca3af); /* 2 */
309
318
  }
310
319
 
@@ -317,6 +326,13 @@ button,
317
326
  cursor: pointer;
318
327
  }
319
328
 
329
+ /*
330
+ Make sure disabled buttons don't get the pointer cursor.
331
+ */
332
+ :disabled {
333
+ cursor: default;
334
+ }
335
+
320
336
  /*
321
337
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
322
338
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
@@ -345,10 +361,7 @@ video {
345
361
  height: auto;
346
362
  }
347
363
 
348
- /*
349
- Ensure the default browser behavior of the `hidden` attribute.
350
- */
351
-
364
+ /* Make elements with the HTML hidden attribute stay hidden by default */
352
365
  [hidden] {
353
366
  display: none;
354
367
  }
@@ -1,60 +1,71 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
5
4
  });
6
- exports.flagEnabled = flagEnabled;
7
- exports.issueFlagNotices = issueFlagNotices;
8
- exports.default = void 0;
9
-
10
- var _chalk = _interopRequireDefault(require("chalk"));
11
-
12
- var _log = _interopRequireDefault(require("./util/log"));
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
16
- const featureFlags = {
17
- future: [],
18
- experimental: ['optimizeUniversalDefaults']
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
+ flagEnabled: ()=>flagEnabled,
13
+ issueFlagNotices: ()=>issueFlagNotices,
14
+ default: ()=>_default
15
+ });
16
+ const _picocolors = /*#__PURE__*/ _interopRequireDefault(require("picocolors"));
17
+ const _log = /*#__PURE__*/ _interopRequireDefault(require("./util/log"));
18
+ function _interopRequireDefault(obj) {
19
+ return obj && obj.__esModule ? obj : {
20
+ default: obj
21
+ };
22
+ }
23
+ let defaults = {
24
+ optimizeUniversalDefaults: false,
25
+ generalizedModifiers: true
26
+ };
27
+ let featureFlags = {
28
+ future: [
29
+ "hoverOnlyWhenSupported",
30
+ "respectDefaultRingColorOpacity",
31
+ "disableColorOpacityUtilitiesByDefault",
32
+ "relativeContentPathsByDefault"
33
+ ],
34
+ experimental: [
35
+ "optimizeUniversalDefaults",
36
+ "generalizedModifiers"
37
+ ]
19
38
  };
20
-
21
39
  function flagEnabled(config, flag) {
22
- if (featureFlags.future.includes(flag)) {
23
- var _config$future$flag, _config$future;
24
-
25
- return config.future === 'all' || ((_config$future$flag = 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 : false);
26
- }
27
-
28
- if (featureFlags.experimental.includes(flag)) {
29
- var _config$experimental$, _config$experimental;
30
-
31
- return config.experimental === 'all' || ((_config$experimental$ = config === null || config === void 0 ? void 0 : (_config$experimental = config.experimental) === null || _config$experimental === void 0 ? void 0 : _config$experimental[flag]) !== null && _config$experimental$ !== void 0 ? _config$experimental$ : false);
32
- }
33
-
34
- return false;
40
+ if (featureFlags.future.includes(flag)) {
41
+ var ref;
42
+ var ref1, ref2;
43
+ 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);
44
+ }
45
+ if (featureFlags.experimental.includes(flag)) {
46
+ var ref3;
47
+ var ref4, ref5;
48
+ 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);
49
+ }
50
+ return false;
35
51
  }
36
-
37
52
  function experimentalFlagsEnabled(config) {
38
- var _config$experimental2;
39
-
40
- if (config.experimental === 'all') {
41
- return featureFlags.experimental;
42
- }
43
-
44
- return Object.keys((_config$experimental2 = config === null || config === void 0 ? void 0 : config.experimental) !== null && _config$experimental2 !== void 0 ? _config$experimental2 : {}).filter(flag => featureFlags.experimental.includes(flag) && config.experimental[flag]);
53
+ if (config.experimental === "all") {
54
+ return featureFlags.experimental;
55
+ }
56
+ var ref;
57
+ 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]);
45
58
  }
46
-
47
59
  function issueFlagNotices(config) {
48
- if (process.env.JEST_WORKER_ID !== undefined) {
49
- return;
50
- }
51
-
52
- if (experimentalFlagsEnabled(config).length > 0) {
53
- const changes = experimentalFlagsEnabled(config).map(s => _chalk.default.yellow(s)).join(', ');
54
-
55
- _log.default.warn([`You have enabled experimental features: ${changes}`, 'Experimental features are not covered by semver, may introduce breaking changes, and can change at any time.']);
56
- }
60
+ if (process.env.JEST_WORKER_ID !== undefined) {
61
+ return;
62
+ }
63
+ if (experimentalFlagsEnabled(config).length > 0) {
64
+ let changes = experimentalFlagsEnabled(config).map((s)=>_picocolors.default.yellow(s)).join(", ");
65
+ _log.default.warn("experimental-flags-enabled", [
66
+ `You have enabled experimental features: ${changes}`,
67
+ "Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."
68
+ ]);
69
+ }
57
70
  }
58
-
59
- var _default = featureFlags;
60
- exports.default = _default;
71
+ const _default = featureFlags;
package/lib/index.js CHANGED
@@ -1,31 +1,48 @@
1
1
  "use strict";
2
-
3
- var _setupTrackingContext = _interopRequireDefault(require("./lib/setupTrackingContext"));
4
-
5
- var _setupWatchingContext = _interopRequireDefault(require("./lib/setupWatchingContext"));
6
-
7
- var _processTailwindFeatures = _interopRequireDefault(require("./processTailwindFeatures"));
8
-
9
- var _sharedState = require("./lib/sharedState");
10
-
11
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
-
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _setupTrackingContext = /*#__PURE__*/ _interopRequireDefault(require("./lib/setupTrackingContext"));
6
+ const _processTailwindFeatures = /*#__PURE__*/ _interopRequireDefault(require("./processTailwindFeatures"));
7
+ const _sharedState = require("./lib/sharedState");
8
+ const _findAtConfigPath = require("./lib/findAtConfigPath");
9
+ function _interopRequireDefault(obj) {
10
+ return obj && obj.__esModule ? obj : {
11
+ default: obj
12
+ };
13
+ }
13
14
  module.exports = function tailwindcss(configOrPath) {
14
- return {
15
- postcssPlugin: 'tailwindcss',
16
- plugins: [_sharedState.env.DEBUG && function (root) {
17
- console.log('\n');
18
- console.time('JIT TOTAL');
19
- return root;
20
- }, function (root, result) {
21
- let setupContext = _sharedState.env.TAILWIND_MODE === 'watch' ? (0, _setupWatchingContext.default)(configOrPath) : (0, _setupTrackingContext.default)(configOrPath);
22
- (0, _processTailwindFeatures.default)(setupContext)(root, result);
23
- }, _sharedState.env.DEBUG && function (root) {
24
- console.timeEnd('JIT TOTAL');
25
- console.log('\n');
26
- return root;
27
- }].filter(Boolean)
28
- };
15
+ return {
16
+ postcssPlugin: "tailwindcss",
17
+ plugins: [
18
+ _sharedState.env.DEBUG && function(root) {
19
+ console.log("\n");
20
+ console.time("JIT TOTAL");
21
+ return root;
22
+ },
23
+ function(root, result) {
24
+ var ref;
25
+ // Use the path for the `@config` directive if it exists, otherwise use the
26
+ // path for the file being processed
27
+ configOrPath = (ref = (0, _findAtConfigPath.findAtConfigPath)(root, result)) !== null && ref !== void 0 ? ref : configOrPath;
28
+ let context = (0, _setupTrackingContext.default)(configOrPath);
29
+ if (root.type === "document") {
30
+ let roots = root.nodes.filter((node)=>node.type === "root");
31
+ for (const root1 of roots){
32
+ if (root1.type === "root") {
33
+ (0, _processTailwindFeatures.default)(context)(root1, result);
34
+ }
35
+ }
36
+ return;
37
+ }
38
+ (0, _processTailwindFeatures.default)(context)(root, result);
39
+ },
40
+ _sharedState.env.DEBUG && function(root) {
41
+ console.timeEnd("JIT TOTAL");
42
+ console.log("\n");
43
+ return root;
44
+ }
45
+ ].filter(Boolean)
46
+ };
29
47
  };
30
-
31
- module.exports.postcss = true;
48
+ module.exports.postcss = true;
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "hasContentChanged", {
6
+ enumerable: true,
7
+ get: ()=>hasContentChanged
8
+ });
9
+ const _crypto = /*#__PURE__*/ _interopRequireDefault(require("crypto"));
10
+ const _sharedState = /*#__PURE__*/ _interopRequireWildcard(require("./sharedState"));
11
+ function _interopRequireDefault(obj) {
12
+ return obj && obj.__esModule ? obj : {
13
+ default: obj
14
+ };
15
+ }
16
+ function _getRequireWildcardCache(nodeInterop) {
17
+ if (typeof WeakMap !== "function") return null;
18
+ var cacheBabelInterop = new WeakMap();
19
+ var cacheNodeInterop = new WeakMap();
20
+ return (_getRequireWildcardCache = function(nodeInterop) {
21
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
22
+ })(nodeInterop);
23
+ }
24
+ function _interopRequireWildcard(obj, nodeInterop) {
25
+ if (!nodeInterop && obj && obj.__esModule) {
26
+ return obj;
27
+ }
28
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
29
+ return {
30
+ default: obj
31
+ };
32
+ }
33
+ var cache = _getRequireWildcardCache(nodeInterop);
34
+ if (cache && cache.has(obj)) {
35
+ return cache.get(obj);
36
+ }
37
+ var newObj = {};
38
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
39
+ for(var key in obj){
40
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
41
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
42
+ if (desc && (desc.get || desc.set)) {
43
+ Object.defineProperty(newObj, key, desc);
44
+ } else {
45
+ newObj[key] = obj[key];
46
+ }
47
+ }
48
+ }
49
+ newObj.default = obj;
50
+ if (cache) {
51
+ cache.set(obj, newObj);
52
+ }
53
+ return newObj;
54
+ }
55
+ /**
56
+ * Calculate the hash of a string.
57
+ *
58
+ * This doesn't need to be cryptographically secure or
59
+ * anything like that since it's used only to detect
60
+ * when the CSS changes to invalidate the context.
61
+ *
62
+ * This is wrapped in a try/catch because it's really dependent
63
+ * on how Node itself is build and the environment and OpenSSL
64
+ * version / build that is installed on the user's machine.
65
+ *
66
+ * Based on the environment this can just outright fail.
67
+ *
68
+ * See https://github.com/nodejs/node/issues/40455
69
+ *
70
+ * @param {string} str
71
+ */ function getHash(str) {
72
+ try {
73
+ return _crypto.default.createHash("md5").update(str, "utf-8").digest("binary");
74
+ } catch (err) {
75
+ return "";
76
+ }
77
+ }
78
+ function hasContentChanged(sourcePath, root) {
79
+ let css = root.toString();
80
+ // We only care about files with @tailwind directives
81
+ // Other files use an existing context
82
+ if (!css.includes("@tailwind")) {
83
+ return false;
84
+ }
85
+ let existingHash = _sharedState.sourceHashMap.get(sourcePath);
86
+ let rootHash = getHash(css);
87
+ let didChange = existingHash !== rootHash;
88
+ _sharedState.sourceHashMap.set(sourcePath, rootHash);
89
+ return didChange;
90
+ }
@@ -1,43 +1,59 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: ()=>collapseAdjacentRules
5
8
  });
6
- exports.default = collapseAdjacentRules;
7
9
  let comparisonMap = {
8
- atrule: ['name', 'params'],
9
- rule: ['selector']
10
+ atrule: [
11
+ "name",
12
+ "params"
13
+ ],
14
+ rule: [
15
+ "selector"
16
+ ]
10
17
  };
11
18
  let types = new Set(Object.keys(comparisonMap));
12
-
13
19
  function collapseAdjacentRules() {
14
- return root => {
15
- let currentRule = null;
16
- root.each(node => {
17
- if (!types.has(node.type)) {
18
- currentRule = null;
19
- return;
20
- }
21
-
22
- if (currentRule === null) {
23
- currentRule = node;
24
- return;
25
- }
26
-
27
- let properties = comparisonMap[node.type];
28
-
29
- if (node.type === 'atrule' && node.name === 'font-face') {
30
- currentRule = node;
31
- } else if (properties.every(property => {
32
- var _node$property, _currentRule$property;
33
-
34
- return ((_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, ' ');
35
- })) {
36
- currentRule.append(node.nodes);
37
- node.remove();
38
- } else {
39
- currentRule = node;
40
- }
41
- });
42
- };
43
- }
20
+ function collapseRulesIn(root) {
21
+ let currentRule = null;
22
+ root.each((node)=>{
23
+ if (!types.has(node.type)) {
24
+ currentRule = null;
25
+ return;
26
+ }
27
+ if (currentRule === null) {
28
+ currentRule = node;
29
+ return;
30
+ }
31
+ let properties = comparisonMap[node.type];
32
+ var _property, _property1;
33
+ if (node.type === "atrule" && node.name === "font-face") {
34
+ currentRule = node;
35
+ } 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, " "))) {
36
+ // An AtRule may not have children (for example if we encounter duplicate @import url(…) rules)
37
+ if (node.nodes) {
38
+ currentRule.append(node.nodes);
39
+ }
40
+ node.remove();
41
+ } else {
42
+ currentRule = node;
43
+ }
44
+ });
45
+ // After we've collapsed adjacent rules & at-rules, we need to collapse
46
+ // adjacent rules & at-rules that are children of at-rules.
47
+ // We do not care about nesting rules because Tailwind CSS
48
+ // explicitly does not handle rule nesting on its own as
49
+ // the user is expected to use a nesting plugin
50
+ root.each((node)=>{
51
+ if (node.type === "atrule") {
52
+ collapseRulesIn(node);
53
+ }
54
+ });
55
+ }
56
+ return (root)=>{
57
+ collapseRulesIn(root);
58
+ };
59
+ }
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: ()=>collapseDuplicateDeclarations
8
+ });
9
+ function collapseDuplicateDeclarations() {
10
+ return (root)=>{
11
+ root.walkRules((node)=>{
12
+ let seen = new Map();
13
+ let droppable = new Set([]);
14
+ let byProperty = new Map();
15
+ node.walkDecls((decl)=>{
16
+ // This could happen if we have nested selectors. In that case the
17
+ // parent will loop over all its declarations but also the declarations
18
+ // of nested rules. With this we ensure that we are shallowly checking
19
+ // declarations.
20
+ if (decl.parent !== node) {
21
+ return;
22
+ }
23
+ if (seen.has(decl.prop)) {
24
+ // Exact same value as what we have seen so far
25
+ if (seen.get(decl.prop).value === decl.value) {
26
+ // Keep the last one, drop the one we've seen so far
27
+ droppable.add(seen.get(decl.prop));
28
+ // Override the existing one with the new value. This is necessary
29
+ // so that if we happen to have more than one declaration with the
30
+ // same value, that we keep removing the previous one. Otherwise we
31
+ // will only remove the *first* one.
32
+ seen.set(decl.prop, decl);
33
+ return;
34
+ }
35
+ // Not the same value, so we need to check if we can merge it so
36
+ // let's collect it first.
37
+ if (!byProperty.has(decl.prop)) {
38
+ byProperty.set(decl.prop, new Set());
39
+ }
40
+ byProperty.get(decl.prop).add(seen.get(decl.prop));
41
+ byProperty.get(decl.prop).add(decl);
42
+ }
43
+ seen.set(decl.prop, decl);
44
+ });
45
+ // Drop all the duplicate declarations with the exact same value we've
46
+ // already seen so far.
47
+ for (let decl of droppable){
48
+ decl.remove();
49
+ }
50
+ // Analyze the declarations based on its unit, drop all the declarations
51
+ // with the same unit but the last one in the list.
52
+ for (let declarations of byProperty.values()){
53
+ let byUnit = new Map();
54
+ for (let decl1 of declarations){
55
+ let unit = resolveUnit(decl1.value);
56
+ if (unit === null) {
57
+ continue;
58
+ }
59
+ if (!byUnit.has(unit)) {
60
+ byUnit.set(unit, new Set());
61
+ }
62
+ byUnit.get(unit).add(decl1);
63
+ }
64
+ for (let declarations1 of byUnit.values()){
65
+ // Get all but the last one
66
+ let removableDeclarations = Array.from(declarations1).slice(0, -1);
67
+ for (let decl2 of removableDeclarations){
68
+ decl2.remove();
69
+ }
70
+ }
71
+ }
72
+ });
73
+ };
74
+ }
75
+ let UNITLESS_NUMBER = Symbol("unitless-number");
76
+ function resolveUnit(input) {
77
+ let result = /^-?\d*.?\d+([\w%]+)?$/g.exec(input);
78
+ if (result) {
79
+ var ref;
80
+ return (ref = result[1]) !== null && ref !== void 0 ? ref : UNITLESS_NUMBER;
81
+ }
82
+ return null;
83
+ }