tailwindcss 0.0.0-insiders.f9fb2ce → 0.0.0-insiders.fa693e5

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 (212) 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 -1
  5. package/defaultConfig.d.ts +3 -0
  6. package/defaultConfig.js +2 -1
  7. package/defaultTheme.d.ts +4 -0
  8. package/defaultTheme.js +2 -1
  9. package/lib/cli/build/deps.js +54 -0
  10. package/lib/cli/build/index.js +48 -0
  11. package/lib/cli/build/plugin.js +367 -0
  12. package/lib/cli/build/utils.js +78 -0
  13. package/lib/cli/build/watching.js +178 -0
  14. package/lib/cli/help/index.js +71 -0
  15. package/lib/cli/index.js +239 -0
  16. package/lib/cli/init/index.js +46 -0
  17. package/lib/cli-peer-dependencies.js +20 -7
  18. package/lib/cli.js +4 -703
  19. package/lib/constants.js +27 -20
  20. package/lib/corePluginList.js +12 -3
  21. package/lib/corePlugins.js +2354 -1810
  22. package/lib/css/preflight.css +12 -9
  23. package/lib/featureFlags.js +36 -25
  24. package/lib/index.js +4 -30
  25. package/lib/lib/cacheInvalidation.js +90 -0
  26. package/lib/lib/collapseAdjacentRules.js +28 -10
  27. package/lib/lib/collapseDuplicateDeclarations.js +56 -2
  28. package/lib/lib/content.js +177 -0
  29. package/lib/lib/defaultExtractor.js +241 -0
  30. package/lib/lib/detectNesting.js +27 -3
  31. package/lib/lib/evaluateTailwindFunctions.js +117 -50
  32. package/lib/lib/expandApplyAtRules.js +457 -159
  33. package/lib/lib/expandTailwindAtRules.js +158 -131
  34. package/lib/lib/findAtConfigPath.js +44 -0
  35. package/lib/lib/generateRules.js +563 -184
  36. package/lib/lib/getModuleDependencies.js +11 -8
  37. package/lib/lib/normalizeTailwindDirectives.js +43 -32
  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 +89 -53
  43. package/lib/lib/setupContextUtils.js +756 -379
  44. package/lib/lib/setupTrackingContext.js +65 -72
  45. package/lib/lib/sharedState.js +68 -9
  46. package/lib/lib/substituteScreenAtRules.js +13 -8
  47. package/lib/oxide/cli/build/deps.js +81 -0
  48. package/lib/oxide/cli/build/index.js +47 -0
  49. package/lib/oxide/cli/build/plugin.js +364 -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 +220 -0
  54. package/lib/oxide/cli/init/index.js +35 -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 +36 -25
  62. package/lib/public/colors.js +247 -245
  63. package/lib/public/create-plugin.js +6 -4
  64. package/lib/public/default-config.js +7 -5
  65. package/lib/public/default-theme.js +7 -5
  66. package/lib/public/resolve-config.js +8 -5
  67. package/lib/util/bigSign.js +4 -1
  68. package/lib/util/buildMediaQuery.js +18 -24
  69. package/lib/util/cloneDeep.js +7 -6
  70. package/lib/util/cloneNodes.js +21 -3
  71. package/lib/util/color.js +64 -36
  72. package/lib/util/configurePlugins.js +5 -2
  73. package/lib/util/createPlugin.js +6 -6
  74. package/lib/util/createUtilityPlugin.js +11 -13
  75. package/lib/util/dataTypes.js +153 -98
  76. package/lib/util/defaults.js +12 -3
  77. package/lib/util/escapeClassName.js +9 -6
  78. package/lib/util/escapeCommas.js +5 -2
  79. package/lib/util/flattenColorPalette.js +9 -12
  80. package/lib/util/formatVariantSelector.js +320 -71
  81. package/lib/util/getAllConfigs.js +29 -10
  82. package/lib/util/hashConfig.js +6 -3
  83. package/lib/util/isKeyframeRule.js +5 -2
  84. package/lib/util/isPlainObject.js +5 -2
  85. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  86. package/lib/util/log.js +22 -12
  87. package/lib/util/nameClass.js +20 -8
  88. package/lib/util/negateValue.js +23 -8
  89. package/lib/util/normalizeConfig.js +139 -66
  90. package/lib/util/normalizeScreens.js +170 -0
  91. package/lib/util/parseAnimationValue.js +42 -40
  92. package/lib/util/parseBoxShadowValue.js +84 -0
  93. package/lib/util/parseDependency.js +38 -56
  94. package/lib/util/parseGlob.js +34 -0
  95. package/lib/util/parseObjectStyles.js +11 -8
  96. package/lib/util/pluginUtils.js +156 -58
  97. package/lib/util/prefixSelector.js +27 -11
  98. package/lib/util/removeAlphaVariables.js +29 -0
  99. package/lib/util/resolveConfig.js +93 -73
  100. package/lib/util/resolveConfigPath.js +11 -9
  101. package/lib/util/responsive.js +8 -5
  102. package/lib/util/splitAtTopLevelOnly.js +43 -0
  103. package/lib/util/tap.js +4 -1
  104. package/lib/util/toColorValue.js +5 -3
  105. package/lib/util/toPath.js +24 -3
  106. package/lib/util/transformThemeValue.js +37 -29
  107. package/lib/util/validateConfig.js +24 -0
  108. package/lib/util/validateFormalSyntax.js +24 -0
  109. package/lib/util/withAlphaVariable.js +23 -15
  110. package/nesting/index.js +2 -12
  111. package/package.json +62 -50
  112. package/peers/index.js +15007 -10953
  113. package/plugin.d.ts +11 -0
  114. package/plugin.js +2 -1
  115. package/resolveConfig.d.ts +12 -0
  116. package/resolveConfig.js +2 -1
  117. package/scripts/generate-types.js +105 -0
  118. package/scripts/release-channel.js +18 -0
  119. package/scripts/release-notes.js +21 -0
  120. package/scripts/swap-engines.js +40 -0
  121. package/scripts/type-utils.js +27 -0
  122. package/src/cli/build/deps.js +56 -0
  123. package/src/cli/build/index.js +49 -0
  124. package/src/cli/build/plugin.js +439 -0
  125. package/src/cli/build/utils.js +76 -0
  126. package/src/cli/build/watching.js +227 -0
  127. package/src/cli/help/index.js +70 -0
  128. package/src/cli/index.js +234 -0
  129. package/src/cli/init/index.js +50 -0
  130. package/src/cli-peer-dependencies.js +7 -1
  131. package/src/cli.js +4 -765
  132. package/src/corePluginList.js +1 -1
  133. package/src/corePlugins.js +796 -302
  134. package/src/css/preflight.css +12 -9
  135. package/src/featureFlags.js +15 -5
  136. package/src/index.js +4 -33
  137. package/src/lib/cacheInvalidation.js +52 -0
  138. package/src/lib/collapseAdjacentRules.js +21 -2
  139. package/src/lib/collapseDuplicateDeclarations.js +66 -1
  140. package/src/lib/content.js +208 -0
  141. package/src/lib/defaultExtractor.js +217 -0
  142. package/src/lib/detectNesting.js +30 -3
  143. package/src/lib/evaluateTailwindFunctions.js +84 -10
  144. package/src/lib/expandApplyAtRules.js +508 -153
  145. package/src/lib/expandTailwindAtRules.js +114 -83
  146. package/src/lib/findAtConfigPath.js +48 -0
  147. package/src/lib/generateRules.js +555 -143
  148. package/src/lib/normalizeTailwindDirectives.js +7 -1
  149. package/src/lib/offsets.js +373 -0
  150. package/src/lib/partitionApplyAtRules.js +52 -0
  151. package/src/lib/regex.js +74 -0
  152. package/src/lib/remap-bitfield.js +82 -0
  153. package/src/lib/resolveDefaultsAtRules.js +59 -17
  154. package/src/lib/setupContextUtils.js +687 -220
  155. package/src/lib/setupTrackingContext.js +47 -58
  156. package/src/lib/sharedState.js +61 -4
  157. package/src/lib/substituteScreenAtRules.js +6 -3
  158. package/src/oxide/cli/build/deps.ts +91 -0
  159. package/src/oxide/cli/build/index.ts +47 -0
  160. package/src/oxide/cli/build/plugin.ts +436 -0
  161. package/src/oxide/cli/build/utils.ts +74 -0
  162. package/src/oxide/cli/build/watching.ts +225 -0
  163. package/src/oxide/cli/help/index.ts +69 -0
  164. package/src/oxide/cli/index.ts +212 -0
  165. package/src/oxide/cli/init/index.ts +32 -0
  166. package/src/oxide/cli.ts +1 -0
  167. package/src/oxide/postcss-plugin.ts +1 -0
  168. package/src/plugin.js +107 -0
  169. package/src/postcss-plugins/nesting/README.md +42 -0
  170. package/src/postcss-plugins/nesting/index.js +13 -0
  171. package/src/postcss-plugins/nesting/plugin.js +80 -0
  172. package/src/processTailwindFeatures.js +12 -2
  173. package/src/util/buildMediaQuery.js +14 -16
  174. package/src/util/cloneNodes.js +19 -2
  175. package/src/util/color.js +43 -11
  176. package/src/util/dataTypes.js +67 -16
  177. package/src/util/defaults.js +6 -0
  178. package/src/util/formatVariantSelector.js +365 -58
  179. package/src/util/getAllConfigs.js +19 -0
  180. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  181. package/src/util/log.js +11 -7
  182. package/src/util/nameClass.js +5 -1
  183. package/src/util/negateValue.js +11 -3
  184. package/src/util/normalizeConfig.js +56 -5
  185. package/src/util/normalizeScreens.js +140 -0
  186. package/src/util/parseBoxShadowValue.js +72 -0
  187. package/src/util/parseDependency.js +37 -42
  188. package/src/util/parseGlob.js +24 -0
  189. package/src/util/pluginUtils.js +134 -10
  190. package/src/util/prefixSelector.js +30 -10
  191. package/src/util/removeAlphaVariables.js +24 -0
  192. package/src/util/resolveConfig.js +74 -26
  193. package/src/util/splitAtTopLevelOnly.js +45 -0
  194. package/src/util/toPath.js +23 -1
  195. package/src/util/transformThemeValue.js +13 -3
  196. package/src/util/validateConfig.js +13 -0
  197. package/src/util/validateFormalSyntax.js +34 -0
  198. package/src/util/withAlphaVariable.js +1 -1
  199. package/stubs/defaultConfig.stub.js +192 -167
  200. package/stubs/simpleConfig.stub.js +1 -0
  201. package/types/config.d.ts +373 -0
  202. package/types/generated/.gitkeep +0 -0
  203. package/types/generated/colors.d.ts +276 -0
  204. package/types/generated/corePluginList.d.ts +1 -0
  205. package/types/generated/default-theme.d.ts +345 -0
  206. package/types/index.d.ts +7 -0
  207. package/CHANGELOG.md +0 -1816
  208. package/lib/lib/setupWatchingContext.js +0 -288
  209. package/nesting/plugin.js +0 -41
  210. package/scripts/install-integrations.js +0 -27
  211. package/scripts/rebuildFixtures.js +0 -68
  212. package/src/lib/setupWatchingContext.js +0 -311
package/LICENSE CHANGED
@@ -1,7 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Adam Wathan <adam.wathan@gmail.com>
4
- Copyright (c) Jonathan Reinink <jonathan@reinink.ca>
3
+ Copyright (c) Tailwind Labs, Inc.
5
4
 
6
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,12 +1,20 @@
1
- <p>
2
- <a href="https://tailwindcss.com/" target="_blank">
3
- <img alt="Tailwind CSS" width="350" src="https://refactoringui.nyc3.cdn.digitaloceanspaces.com/tailwind-logo-sticker.svg">
4
- </a><br>
5
- A utility-first CSS framework for rapidly building custom user interfaces.
1
+ <p align="center">
2
+ <a href="https://tailwindcss.com" target="_blank">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-dark.svg">
5
+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg">
6
+ <img alt="Tailwind CSS" src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg" width="350" height="70" style="max-width: 100%;">
7
+ </picture>
8
+ </a>
6
9
  </p>
7
10
 
8
- <p>
9
- <a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/workflow/status/tailwindlabs/tailwindcss/Node.js%20CI" alt="Build Status"></a>
11
+ <p align="center">
12
+ A utility-first CSS framework for rapidly building custom user interfaces.
13
+ </p>
14
+
15
+
16
+ <p align="center">
17
+ <a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/actions/workflow/status/tailwindlabs/tailwindcss/ci-stable.yml?branch=master" alt="Build Status"></a>
10
18
  <a href="https://www.npmjs.com/package/tailwindcss"><img src="https://img.shields.io/npm/dt/tailwindcss.svg" alt="Total Downloads"></a>
11
19
  <a href="https://github.com/tailwindcss/tailwindcss/releases"><img src="https://img.shields.io/npm/v/tailwindcss.svg" alt="Latest Release"></a>
12
20
  <a href="https://github.com/tailwindcss/tailwindcss/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/tailwindcss.svg" alt="License"></a>
package/colors.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { DefaultColors } from './types/generated/colors'
2
+ declare const colors: DefaultColors
3
+ export = colors
package/colors.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/colors').default
1
+ let colors = require('./lib/public/colors')
2
+ module.exports = (colors.__esModule ? colors : { default: colors }).default
@@ -0,0 +1,3 @@
1
+ import type { Config } from './types/config'
2
+ declare const config: Config
3
+ export = config
package/defaultConfig.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/default-config').default
1
+ let defaultConfig = require('./lib/public/default-config')
2
+ module.exports = (defaultConfig.__esModule ? defaultConfig : { default: defaultConfig }).default
@@ -0,0 +1,4 @@
1
+ import type { Config } from './types/config'
2
+ import { DefaultTheme } from './types/generated/default-theme'
3
+ declare const theme: Config['theme'] & DefaultTheme
4
+ export = theme
package/defaultTheme.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/default-theme').default
1
+ let defaultTheme = require('./lib/public/default-theme')
2
+ module.exports = (defaultTheme.__esModule ? defaultTheme : { default: defaultTheme }).default
@@ -0,0 +1,54 @@
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
+ loadPostcss: ()=>loadPostcss,
14
+ loadPostcssImport: ()=>loadPostcssImport,
15
+ loadCssNano: ()=>loadCssNano,
16
+ loadAutoprefixer: ()=>loadAutoprefixer
17
+ });
18
+ const _indexJs = require("../../../peers/index.js");
19
+ function loadPostcss() {
20
+ // Try to load a local `postcss` version first
21
+ try {
22
+ return require("postcss");
23
+ } catch {}
24
+ return (0, _indexJs.lazyPostcss)();
25
+ }
26
+ function loadPostcssImport() {
27
+ // Try to load a local `postcss-import` version first
28
+ try {
29
+ return require("postcss-import");
30
+ } catch {}
31
+ return (0, _indexJs.lazyPostcssImport)();
32
+ }
33
+ function loadCssNano() {
34
+ let options = {
35
+ preset: [
36
+ "default",
37
+ {
38
+ cssDeclarationSorter: false
39
+ }
40
+ ]
41
+ };
42
+ // Try to load a local `cssnano` version first
43
+ try {
44
+ return require("cssnano");
45
+ } catch {}
46
+ return (0, _indexJs.lazyCssnano)()(options);
47
+ }
48
+ function loadAutoprefixer() {
49
+ // Try to load a local `autoprefixer` version first
50
+ try {
51
+ return require("autoprefixer");
52
+ } catch {}
53
+ return (0, _indexJs.lazyAutoprefixer)();
54
+ }
@@ -0,0 +1,48 @@
1
+ // @ts-check
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "build", {
7
+ enumerable: true,
8
+ get: ()=>build
9
+ });
10
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
11
+ const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
12
+ const _pluginJs = require("./plugin.js");
13
+ function _interopRequireDefault(obj) {
14
+ return obj && obj.__esModule ? obj : {
15
+ default: obj
16
+ };
17
+ }
18
+ async function build(args, configs) {
19
+ let input = args["--input"];
20
+ let shouldWatch = args["--watch"];
21
+ // TODO: Deprecate this in future versions
22
+ if (!input && args["_"][1]) {
23
+ console.error("[deprecation] Running tailwindcss without -i, please provide an input file.");
24
+ input = args["--input"] = args["_"][1];
25
+ }
26
+ if (input && input !== "-" && !_fs.default.existsSync(input = _path.default.resolve(input))) {
27
+ console.error(`Specified input file ${args["--input"]} does not exist.`);
28
+ process.exit(9);
29
+ }
30
+ if (args["--config"] && !_fs.default.existsSync(args["--config"] = _path.default.resolve(args["--config"]))) {
31
+ console.error(`Specified config file ${args["--config"]} does not exist.`);
32
+ process.exit(9);
33
+ }
34
+ // TODO: Reference the @config path here if exists
35
+ let configPath = args["--config"] ? args["--config"] : ((defaultPath)=>_fs.default.existsSync(defaultPath) ? defaultPath : null)(_path.default.resolve(`./${configs.tailwind}`));
36
+ let processor = await (0, _pluginJs.createProcessor)(args, configPath);
37
+ if (shouldWatch) {
38
+ // Abort the watcher if stdin is closed to avoid zombie processes
39
+ // You can disable this behavior with --watch=always
40
+ if (args["--watch"] !== "always") {
41
+ process.stdin.on("end", ()=>process.exit(0));
42
+ }
43
+ process.stdin.resume();
44
+ await processor.watch();
45
+ } else {
46
+ await processor.build();
47
+ }
48
+ }
@@ -0,0 +1,367 @@
1
+ // @ts-check
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "createProcessor", {
7
+ enumerable: true,
8
+ get: ()=>createProcessor
9
+ });
10
+ const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
11
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
12
+ const _postcssLoadConfig = /*#__PURE__*/ _interopRequireDefault(require("postcss-load-config"));
13
+ const _lilconfig = require("lilconfig");
14
+ const _plugins = /*#__PURE__*/ _interopRequireDefault(require("postcss-load-config/src/plugins" // Little bit scary, looking at private/internal API
15
+ ));
16
+ const _options = /*#__PURE__*/ _interopRequireDefault(require("postcss-load-config/src/options" // Little bit scary, looking at private/internal API
17
+ ));
18
+ const _processTailwindFeatures = /*#__PURE__*/ _interopRequireDefault(require("../../processTailwindFeatures"));
19
+ const _deps = require("./deps");
20
+ const _utils = require("./utils");
21
+ const _sharedState = require("../../lib/sharedState");
22
+ const _resolveConfigJs = /*#__PURE__*/ _interopRequireDefault(require("../../../resolveConfig.js"));
23
+ const _getModuleDependenciesJs = /*#__PURE__*/ _interopRequireDefault(require("../../lib/getModuleDependencies.js"));
24
+ const _contentJs = require("../../lib/content.js");
25
+ const _watchingJs = require("./watching.js");
26
+ const _fastGlob = /*#__PURE__*/ _interopRequireDefault(require("fast-glob"));
27
+ const _findAtConfigPathJs = require("../../lib/findAtConfigPath.js");
28
+ const _log = /*#__PURE__*/ _interopRequireDefault(require("../../util/log"));
29
+ function _interopRequireDefault(obj) {
30
+ return obj && obj.__esModule ? obj : {
31
+ default: obj
32
+ };
33
+ }
34
+ /**
35
+ *
36
+ * @param {string} [customPostCssPath ]
37
+ * @returns
38
+ */ async function loadPostCssPlugins(customPostCssPath) {
39
+ let config = customPostCssPath ? await (async ()=>{
40
+ let file = _path.default.resolve(customPostCssPath);
41
+ // Implementation, see: https://unpkg.com/browse/postcss-load-config@3.1.0/src/index.js
42
+ // @ts-ignore
43
+ let { config ={} } = await (0, _lilconfig.lilconfig)("postcss").load(file);
44
+ if (typeof config === "function") {
45
+ config = config();
46
+ } else {
47
+ config = Object.assign({}, config);
48
+ }
49
+ if (!config.plugins) {
50
+ config.plugins = [];
51
+ }
52
+ return {
53
+ file,
54
+ plugins: (0, _plugins.default)(config, file),
55
+ options: (0, _options.default)(config, file)
56
+ };
57
+ })() : await (0, _postcssLoadConfig.default)();
58
+ let configPlugins = config.plugins;
59
+ let configPluginTailwindIdx = configPlugins.findIndex((plugin)=>{
60
+ if (typeof plugin === "function" && plugin.name === "tailwindcss") {
61
+ return true;
62
+ }
63
+ if (typeof plugin === "object" && plugin !== null && plugin.postcssPlugin === "tailwindcss") {
64
+ return true;
65
+ }
66
+ return false;
67
+ });
68
+ let beforePlugins = configPluginTailwindIdx === -1 ? [] : configPlugins.slice(0, configPluginTailwindIdx);
69
+ let afterPlugins = configPluginTailwindIdx === -1 ? configPlugins : configPlugins.slice(configPluginTailwindIdx + 1);
70
+ return [
71
+ beforePlugins,
72
+ afterPlugins,
73
+ config.options
74
+ ];
75
+ }
76
+ function loadBuiltinPostcssPlugins() {
77
+ let postcss = (0, _deps.loadPostcss)();
78
+ let IMPORT_COMMENT = "__TAILWIND_RESTORE_IMPORT__: ";
79
+ return [
80
+ [
81
+ (root)=>{
82
+ root.walkAtRules("import", (rule)=>{
83
+ if (rule.params.slice(1).startsWith("tailwindcss/")) {
84
+ rule.after(postcss.comment({
85
+ text: IMPORT_COMMENT + rule.params
86
+ }));
87
+ rule.remove();
88
+ }
89
+ });
90
+ },
91
+ (0, _deps.loadPostcssImport)(),
92
+ (root)=>{
93
+ root.walkComments((rule)=>{
94
+ if (rule.text.startsWith(IMPORT_COMMENT)) {
95
+ rule.after(postcss.atRule({
96
+ name: "import",
97
+ params: rule.text.replace(IMPORT_COMMENT, "")
98
+ }));
99
+ rule.remove();
100
+ }
101
+ });
102
+ }
103
+ ],
104
+ [],
105
+ {}
106
+ ];
107
+ }
108
+ let state = {
109
+ /** @type {any} */ context: null,
110
+ /** @type {ReturnType<typeof createWatcher> | null} */ watcher: null,
111
+ /** @type {{content: string, extension: string}[]} */ changedContent: [],
112
+ configDependencies: new Set(),
113
+ contextDependencies: new Set(),
114
+ /** @type {import('../../lib/content.js').ContentPath[]} */ contentPaths: [],
115
+ refreshContentPaths () {
116
+ var _this_context;
117
+ this.contentPaths = (0, _contentJs.parseCandidateFiles)(this.context, (_this_context = this.context) === null || _this_context === void 0 ? void 0 : _this_context.tailwindConfig);
118
+ },
119
+ get config () {
120
+ return this.context.tailwindConfig;
121
+ },
122
+ get contentPatterns () {
123
+ return {
124
+ all: this.contentPaths.map((contentPath)=>contentPath.pattern),
125
+ dynamic: this.contentPaths.filter((contentPath)=>contentPath.glob !== undefined).map((contentPath)=>contentPath.pattern)
126
+ };
127
+ },
128
+ loadConfig (configPath, content) {
129
+ if (this.watcher && configPath) {
130
+ this.refreshConfigDependencies(configPath);
131
+ }
132
+ let config = configPath ? require(configPath) : {};
133
+ // @ts-ignore
134
+ config = (0, _resolveConfigJs.default)(config, {
135
+ content: {
136
+ files: []
137
+ }
138
+ });
139
+ // Override content files if `--content` has been passed explicitly
140
+ if ((content === null || content === void 0 ? void 0 : content.length) > 0) {
141
+ config.content.files = content;
142
+ }
143
+ return config;
144
+ },
145
+ refreshConfigDependencies (configPath) {
146
+ _sharedState.env.DEBUG && console.time("Module dependencies");
147
+ for (let file of this.configDependencies){
148
+ delete require.cache[require.resolve(file)];
149
+ }
150
+ if (configPath) {
151
+ let deps = (0, _getModuleDependenciesJs.default)(configPath).map(({ file })=>file);
152
+ for (let dependency of deps){
153
+ this.configDependencies.add(dependency);
154
+ }
155
+ }
156
+ _sharedState.env.DEBUG && console.timeEnd("Module dependencies");
157
+ },
158
+ readContentPaths () {
159
+ let content = [];
160
+ // Resolve globs from the content config
161
+ // TODO: When we make the postcss plugin async-capable this can become async
162
+ let files = _fastGlob.default.sync(this.contentPatterns.all);
163
+ for (let file of files){
164
+ if (_sharedState.env.OXIDE) {
165
+ content.push({
166
+ file,
167
+ extension: _path.default.extname(file).slice(1)
168
+ });
169
+ } else {
170
+ content.push({
171
+ content: _fs.default.readFileSync(_path.default.resolve(file), "utf8"),
172
+ extension: _path.default.extname(file).slice(1)
173
+ });
174
+ }
175
+ }
176
+ // Resolve raw content in the tailwind config
177
+ let rawContent = this.config.content.files.filter((file)=>{
178
+ return file !== null && typeof file === "object";
179
+ });
180
+ for (let { raw: htmlContent , extension ="html" } of rawContent){
181
+ content.push({
182
+ content: htmlContent,
183
+ extension
184
+ });
185
+ }
186
+ return content;
187
+ },
188
+ getContext ({ createContext , cliConfigPath , root , result , content }) {
189
+ if (this.context) {
190
+ this.context.changedContent = this.changedContent.splice(0);
191
+ return this.context;
192
+ }
193
+ _sharedState.env.DEBUG && console.time("Searching for config");
194
+ var _findAtConfigPath;
195
+ let configPath = (_findAtConfigPath = (0, _findAtConfigPathJs.findAtConfigPath)(root, result)) !== null && _findAtConfigPath !== void 0 ? _findAtConfigPath : cliConfigPath;
196
+ _sharedState.env.DEBUG && console.timeEnd("Searching for config");
197
+ _sharedState.env.DEBUG && console.time("Loading config");
198
+ let config = this.loadConfig(configPath, content);
199
+ _sharedState.env.DEBUG && console.timeEnd("Loading config");
200
+ _sharedState.env.DEBUG && console.time("Creating context");
201
+ this.context = createContext(config, []);
202
+ Object.assign(this.context, {
203
+ userConfigPath: configPath
204
+ });
205
+ _sharedState.env.DEBUG && console.timeEnd("Creating context");
206
+ _sharedState.env.DEBUG && console.time("Resolving content paths");
207
+ this.refreshContentPaths();
208
+ _sharedState.env.DEBUG && console.timeEnd("Resolving content paths");
209
+ if (this.watcher) {
210
+ _sharedState.env.DEBUG && console.time("Watch new files");
211
+ this.watcher.refreshWatchedFiles();
212
+ _sharedState.env.DEBUG && console.timeEnd("Watch new files");
213
+ }
214
+ for (let file of this.readContentPaths()){
215
+ this.context.changedContent.push(file);
216
+ }
217
+ return this.context;
218
+ }
219
+ };
220
+ async function createProcessor(args, cliConfigPath) {
221
+ var _args_content;
222
+ let postcss = (0, _deps.loadPostcss)();
223
+ let input = args["--input"];
224
+ let output = args["--output"];
225
+ let includePostCss = args["--postcss"];
226
+ let customPostCssPath = typeof args["--postcss"] === "string" ? args["--postcss"] : undefined;
227
+ let [beforePlugins, afterPlugins, postcssOptions] = includePostCss ? await loadPostCssPlugins(customPostCssPath) : loadBuiltinPostcssPlugins();
228
+ if (args["--purge"]) {
229
+ _log.default.warn("purge-flag-deprecated", [
230
+ "The `--purge` flag has been deprecated.",
231
+ "Please use `--content` instead."
232
+ ]);
233
+ if (!args["--content"]) {
234
+ args["--content"] = args["--purge"];
235
+ }
236
+ }
237
+ var _args_content_split;
238
+ let content = (_args_content_split = (_args_content = args["--content"]) === null || _args_content === void 0 ? void 0 : _args_content.split(/(?<!{[^}]+),/)) !== null && _args_content_split !== void 0 ? _args_content_split : [];
239
+ let tailwindPlugin = ()=>{
240
+ return {
241
+ postcssPlugin: "tailwindcss",
242
+ Once (root, { result }) {
243
+ _sharedState.env.DEBUG && console.time("Compiling CSS");
244
+ (0, _processTailwindFeatures.default)(({ createContext })=>{
245
+ console.error();
246
+ console.error("Rebuilding...");
247
+ return ()=>{
248
+ return state.getContext({
249
+ createContext,
250
+ cliConfigPath,
251
+ root,
252
+ result,
253
+ content
254
+ });
255
+ };
256
+ })(root, result);
257
+ _sharedState.env.DEBUG && console.timeEnd("Compiling CSS");
258
+ }
259
+ };
260
+ };
261
+ tailwindPlugin.postcss = true;
262
+ let plugins = [
263
+ ...beforePlugins,
264
+ tailwindPlugin,
265
+ !args["--minify"] && _utils.formatNodes,
266
+ ...afterPlugins,
267
+ !args["--no-autoprefixer"] && (0, _deps.loadAutoprefixer)(),
268
+ args["--minify"] && (0, _deps.loadCssNano)()
269
+ ].filter(Boolean);
270
+ /** @type {import('postcss').Processor} */ // @ts-ignore
271
+ let processor = postcss(plugins);
272
+ async function readInput() {
273
+ // Piping in data, let's drain the stdin
274
+ if (input === "-") {
275
+ return (0, _utils.drainStdin)();
276
+ }
277
+ // Input file has been provided
278
+ if (input) {
279
+ return _fs.default.promises.readFile(_path.default.resolve(input), "utf8");
280
+ }
281
+ // No input file provided, fallback to default atrules
282
+ return "@tailwind base; @tailwind components; @tailwind utilities";
283
+ }
284
+ async function build() {
285
+ let start = process.hrtime.bigint();
286
+ return readInput().then((css)=>processor.process(css, {
287
+ ...postcssOptions,
288
+ from: input,
289
+ to: output
290
+ })).then((result)=>{
291
+ if (!state.watcher) {
292
+ return result;
293
+ }
294
+ _sharedState.env.DEBUG && console.time("Recording PostCSS dependencies");
295
+ for (let message of result.messages){
296
+ if (message.type === "dependency") {
297
+ state.contextDependencies.add(message.file);
298
+ }
299
+ }
300
+ _sharedState.env.DEBUG && console.timeEnd("Recording PostCSS dependencies");
301
+ // TODO: This needs to be in a different spot
302
+ _sharedState.env.DEBUG && console.time("Watch new files");
303
+ state.watcher.refreshWatchedFiles();
304
+ _sharedState.env.DEBUG && console.timeEnd("Watch new files");
305
+ return result;
306
+ }).then((result)=>{
307
+ if (!output) {
308
+ process.stdout.write(result.css);
309
+ return;
310
+ }
311
+ return Promise.all([
312
+ (0, _utils.outputFile)(result.opts.to, result.css),
313
+ result.map && (0, _utils.outputFile)(result.opts.to + ".map", result.map.toString())
314
+ ]);
315
+ }).then(()=>{
316
+ let end = process.hrtime.bigint();
317
+ console.error();
318
+ console.error("Done in", (end - start) / BigInt(1e6) + "ms.");
319
+ }).then(()=>{}, (err)=>{
320
+ // TODO: If an initial build fails we can't easily pick up any PostCSS dependencies
321
+ // that were collected before the error occurred
322
+ // The result is not stored on the error so we have to store it externally
323
+ // and pull the messages off of it here somehow
324
+ // This results in a less than ideal DX because the watcher will not pick up
325
+ // changes to imported CSS if one of them caused an error during the initial build
326
+ // If you fix it and then save the main CSS file so there's no error
327
+ // The watcher will start watching the imported CSS files and will be
328
+ // resilient to future errors.
329
+ console.error(err);
330
+ });
331
+ }
332
+ /**
333
+ * @param {{file: string, content(): Promise<string>, extension: string}[]} changes
334
+ */ async function parseChanges(changes) {
335
+ return Promise.all(changes.map(async (change)=>({
336
+ content: await change.content(),
337
+ extension: change.extension
338
+ })));
339
+ }
340
+ if (input !== undefined && input !== "-") {
341
+ state.contextDependencies.add(_path.default.resolve(input));
342
+ }
343
+ return {
344
+ build,
345
+ watch: async ()=>{
346
+ state.watcher = (0, _watchingJs.createWatcher)(args, {
347
+ state,
348
+ /**
349
+ * @param {{file: string, content(): Promise<string>, extension: string}[]} changes
350
+ */ async rebuild (changes) {
351
+ let needsNewContext = changes.some((change)=>{
352
+ return state.configDependencies.has(change.file) || state.contextDependencies.has(change.file);
353
+ });
354
+ if (needsNewContext) {
355
+ state.context = null;
356
+ } else {
357
+ for (let change of (await parseChanges(changes))){
358
+ state.changedContent.push(change);
359
+ }
360
+ }
361
+ return build();
362
+ }
363
+ });
364
+ await build();
365
+ }
366
+ };
367
+ }
@@ -0,0 +1,78 @@
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
+ indentRecursive: ()=>indentRecursive,
14
+ formatNodes: ()=>formatNodes,
15
+ readFileWithRetries: ()=>readFileWithRetries,
16
+ drainStdin: ()=>drainStdin,
17
+ outputFile: ()=>outputFile
18
+ });
19
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
20
+ const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
21
+ function _interopRequireDefault(obj) {
22
+ return obj && obj.__esModule ? obj : {
23
+ default: obj
24
+ };
25
+ }
26
+ function indentRecursive(node, indent = 0) {
27
+ node.each && node.each((child, i)=>{
28
+ if (!child.raws.before || !child.raws.before.trim() || child.raws.before.includes("\n")) {
29
+ child.raws.before = `\n${node.type !== "rule" && i > 0 ? "\n" : ""}${" ".repeat(indent)}`;
30
+ }
31
+ child.raws.after = `\n${" ".repeat(indent)}`;
32
+ indentRecursive(child, indent + 1);
33
+ });
34
+ }
35
+ function formatNodes(root) {
36
+ indentRecursive(root);
37
+ if (root.first) {
38
+ root.first.raws.before = "";
39
+ }
40
+ }
41
+ async function readFileWithRetries(path, tries = 5) {
42
+ for(let n = 0; n <= tries; n++){
43
+ try {
44
+ return await _fs.default.promises.readFile(path, "utf8");
45
+ } catch (err) {
46
+ if (n !== tries) {
47
+ if (err.code === "ENOENT" || err.code === "EBUSY") {
48
+ await new Promise((resolve)=>setTimeout(resolve, 10));
49
+ continue;
50
+ }
51
+ }
52
+ throw err;
53
+ }
54
+ }
55
+ }
56
+ function drainStdin() {
57
+ return new Promise((resolve, reject)=>{
58
+ let result = "";
59
+ process.stdin.on("data", (chunk)=>{
60
+ result += chunk;
61
+ });
62
+ process.stdin.on("end", ()=>resolve(result));
63
+ process.stdin.on("error", (err)=>reject(err));
64
+ });
65
+ }
66
+ async function outputFile(file, newContents) {
67
+ try {
68
+ let currentContents = await _fs.default.promises.readFile(file, "utf8");
69
+ if (currentContents === newContents) {
70
+ return; // Skip writing the file
71
+ }
72
+ } catch {}
73
+ // Write the file
74
+ await _fs.default.promises.mkdir(_path.default.dirname(file), {
75
+ recursive: true
76
+ });
77
+ await _fs.default.promises.writeFile(file, newContents, "utf8");
78
+ }