tailwindcss 0.0.0-insiders.fb545bc → 0.0.0-insiders.fb796cd

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 (226) hide show
  1. package/LICENSE +1 -2
  2. package/README.md +15 -7
  3. package/colors.d.ts +3 -0
  4. package/defaultConfig.d.ts +3 -0
  5. package/defaultTheme.d.ts +4 -0
  6. package/lib/cli/build/deps.js +54 -0
  7. package/lib/cli/build/index.js +52 -0
  8. package/lib/cli/build/plugin.js +376 -0
  9. package/lib/cli/build/utils.js +78 -0
  10. package/lib/cli/build/watching.js +180 -0
  11. package/lib/cli/help/index.js +71 -0
  12. package/lib/cli/index.js +230 -0
  13. package/lib/cli/init/index.js +61 -0
  14. package/lib/cli-peer-dependencies.js +20 -7
  15. package/lib/cli.js +4 -703
  16. package/lib/corePluginList.js +10 -3
  17. package/lib/corePlugins.js +2322 -1835
  18. package/lib/css/preflight.css +8 -6
  19. package/lib/featureFlags.js +43 -27
  20. package/lib/index.js +4 -30
  21. package/lib/lib/cacheInvalidation.js +90 -0
  22. package/lib/lib/collapseAdjacentRules.js +28 -10
  23. package/lib/lib/collapseDuplicateDeclarations.js +58 -4
  24. package/lib/lib/content.js +177 -0
  25. package/lib/lib/defaultExtractor.js +241 -0
  26. package/lib/lib/detectNesting.js +19 -10
  27. package/lib/lib/evaluateTailwindFunctions.js +118 -55
  28. package/lib/lib/expandApplyAtRules.js +458 -176
  29. package/lib/lib/expandTailwindAtRules.js +157 -156
  30. package/lib/lib/findAtConfigPath.js +44 -0
  31. package/lib/lib/generateRules.js +533 -204
  32. package/lib/lib/getModuleDependencies.js +85 -36
  33. package/lib/lib/load-config.js +36 -0
  34. package/lib/lib/normalizeTailwindDirectives.js +43 -32
  35. package/lib/lib/offsets.js +304 -0
  36. package/lib/lib/partitionApplyAtRules.js +56 -0
  37. package/lib/lib/regex.js +60 -0
  38. package/lib/lib/remap-bitfield.js +87 -0
  39. package/lib/lib/resolveDefaultsAtRules.js +89 -67
  40. package/lib/lib/setupContextUtils.js +754 -346
  41. package/lib/lib/setupTrackingContext.js +65 -72
  42. package/lib/lib/sharedState.js +68 -9
  43. package/lib/lib/substituteScreenAtRules.js +11 -9
  44. package/lib/oxide/cli/build/deps.js +81 -0
  45. package/lib/oxide/cli/build/index.js +51 -0
  46. package/lib/oxide/cli/build/plugin.js +373 -0
  47. package/lib/oxide/cli/build/utils.js +77 -0
  48. package/lib/oxide/cli/build/watching.js +177 -0
  49. package/lib/oxide/cli/help/index.js +70 -0
  50. package/lib/oxide/cli/index.js +214 -0
  51. package/lib/oxide/cli/init/index.js +50 -0
  52. package/lib/oxide/cli.js +5 -0
  53. package/lib/oxide/postcss-plugin.js +2 -0
  54. package/lib/plugin.js +98 -0
  55. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  56. package/lib/postcss-plugins/nesting/index.js +19 -0
  57. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  58. package/lib/processTailwindFeatures.js +36 -25
  59. package/lib/public/colors.js +269 -245
  60. package/lib/public/create-plugin.js +6 -4
  61. package/lib/public/default-config.js +7 -5
  62. package/lib/public/default-theme.js +7 -5
  63. package/lib/public/load-config.js +10 -0
  64. package/lib/public/resolve-config.js +8 -5
  65. package/lib/util/applyImportantSelector.js +22 -0
  66. package/lib/util/bigSign.js +4 -1
  67. package/lib/util/buildMediaQuery.js +11 -6
  68. package/lib/util/cloneDeep.js +7 -6
  69. package/lib/util/cloneNodes.js +21 -3
  70. package/lib/util/color.js +64 -36
  71. package/lib/util/configurePlugins.js +5 -2
  72. package/lib/util/createPlugin.js +6 -6
  73. package/lib/util/createUtilityPlugin.js +13 -15
  74. package/lib/util/dataTypes.js +143 -110
  75. package/lib/util/defaults.js +8 -5
  76. package/lib/util/escapeClassName.js +9 -6
  77. package/lib/util/escapeCommas.js +5 -2
  78. package/lib/util/flattenColorPalette.js +9 -12
  79. package/lib/util/formatVariantSelector.js +268 -113
  80. package/lib/util/getAllConfigs.js +30 -11
  81. package/lib/util/hashConfig.js +6 -3
  82. package/lib/util/isKeyframeRule.js +5 -2
  83. package/lib/util/isPlainObject.js +5 -2
  84. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +23 -15
  85. package/lib/util/log.js +20 -14
  86. package/lib/util/nameClass.js +20 -9
  87. package/lib/util/negateValue.js +23 -8
  88. package/lib/util/normalizeConfig.js +140 -83
  89. package/lib/util/normalizeScreens.js +120 -11
  90. package/lib/util/parseAnimationValue.js +42 -40
  91. package/lib/util/parseBoxShadowValue.js +30 -23
  92. package/lib/util/parseDependency.js +38 -56
  93. package/lib/util/parseGlob.js +34 -0
  94. package/lib/util/parseObjectStyles.js +11 -8
  95. package/lib/util/pluginUtils.js +146 -68
  96. package/lib/util/prefixSelector.js +27 -11
  97. package/lib/util/removeAlphaVariables.js +29 -0
  98. package/lib/util/resolveConfig.js +98 -78
  99. package/lib/util/resolveConfigPath.js +25 -11
  100. package/lib/util/responsive.js +8 -5
  101. package/lib/util/splitAtTopLevelOnly.js +49 -0
  102. package/lib/util/tap.js +4 -1
  103. package/lib/util/toColorValue.js +5 -3
  104. package/lib/util/toPath.js +24 -3
  105. package/lib/util/transformThemeValue.js +37 -29
  106. package/lib/util/validateConfig.js +24 -0
  107. package/lib/util/validateFormalSyntax.js +24 -0
  108. package/lib/util/withAlphaVariable.js +23 -15
  109. package/loadConfig.d.ts +4 -0
  110. package/loadConfig.js +2 -0
  111. package/nesting/index.js +2 -12
  112. package/package.json +62 -50
  113. package/peers/index.js +11585 -8231
  114. package/plugin.d.ts +11 -0
  115. package/resolveConfig.d.ts +12 -0
  116. package/scripts/generate-types.js +105 -0
  117. package/scripts/release-channel.js +18 -0
  118. package/scripts/release-notes.js +21 -0
  119. package/scripts/swap-engines.js +40 -0
  120. package/scripts/type-utils.js +27 -0
  121. package/src/cli/build/deps.js +56 -0
  122. package/src/cli/build/index.js +49 -0
  123. package/src/cli/build/plugin.js +444 -0
  124. package/src/cli/build/utils.js +76 -0
  125. package/src/cli/build/watching.js +229 -0
  126. package/src/cli/help/index.js +70 -0
  127. package/src/cli/index.js +216 -0
  128. package/src/cli/init/index.js +79 -0
  129. package/src/cli-peer-dependencies.js +7 -1
  130. package/src/cli.js +4 -765
  131. package/src/corePluginList.js +1 -1
  132. package/src/corePlugins.js +675 -236
  133. package/src/css/preflight.css +8 -6
  134. package/src/featureFlags.js +22 -9
  135. package/src/index.js +4 -33
  136. package/src/lib/cacheInvalidation.js +52 -0
  137. package/src/lib/collapseAdjacentRules.js +21 -2
  138. package/src/lib/collapseDuplicateDeclarations.js +66 -1
  139. package/src/lib/content.js +208 -0
  140. package/src/lib/defaultExtractor.js +217 -0
  141. package/src/lib/detectNesting.js +9 -1
  142. package/src/lib/evaluateTailwindFunctions.js +79 -8
  143. package/src/lib/expandApplyAtRules.js +502 -173
  144. package/src/lib/expandTailwindAtRules.js +112 -106
  145. package/src/lib/findAtConfigPath.js +48 -0
  146. package/src/lib/generateRules.js +521 -146
  147. package/src/lib/getModuleDependencies.js +70 -30
  148. package/src/lib/load-config.ts +27 -0
  149. package/src/lib/normalizeTailwindDirectives.js +7 -1
  150. package/src/lib/offsets.js +373 -0
  151. package/src/lib/partitionApplyAtRules.js +52 -0
  152. package/src/lib/regex.js +74 -0
  153. package/src/lib/remap-bitfield.js +82 -0
  154. package/src/lib/resolveDefaultsAtRules.js +51 -30
  155. package/src/lib/setupContextUtils.js +677 -184
  156. package/src/lib/setupTrackingContext.js +50 -61
  157. package/src/lib/sharedState.js +61 -4
  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 +442 -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 +204 -0
  165. package/src/oxide/cli/init/index.ts +59 -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/public/colors.js +22 -0
  174. package/src/public/default-config.js +1 -1
  175. package/src/public/default-theme.js +2 -2
  176. package/src/public/load-config.js +2 -0
  177. package/src/util/applyImportantSelector.js +19 -0
  178. package/src/util/buildMediaQuery.js +5 -3
  179. package/src/util/cloneNodes.js +19 -2
  180. package/src/util/color.js +43 -11
  181. package/src/util/dataTypes.js +54 -21
  182. package/src/util/formatVariantSelector.js +317 -101
  183. package/src/util/getAllConfigs.js +21 -2
  184. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  185. package/src/util/log.js +8 -8
  186. package/src/util/nameClass.js +4 -0
  187. package/src/util/negateValue.js +11 -3
  188. package/src/util/normalizeConfig.js +62 -6
  189. package/src/util/normalizeScreens.js +99 -4
  190. package/src/util/parseBoxShadowValue.js +4 -3
  191. package/src/util/parseDependency.js +37 -42
  192. package/src/util/parseGlob.js +24 -0
  193. package/src/util/pluginUtils.js +127 -24
  194. package/src/util/prefixSelector.js +30 -10
  195. package/src/util/removeAlphaVariables.js +24 -0
  196. package/src/util/resolveConfig.js +74 -26
  197. package/src/util/resolveConfigPath.js +12 -1
  198. package/src/util/splitAtTopLevelOnly.js +52 -0
  199. package/src/util/toPath.js +23 -1
  200. package/src/util/transformThemeValue.js +13 -3
  201. package/src/util/validateConfig.js +13 -0
  202. package/src/util/validateFormalSyntax.js +34 -0
  203. package/src/util/withAlphaVariable.js +1 -1
  204. package/stubs/.gitignore +1 -0
  205. package/stubs/.prettierrc.json +6 -0
  206. package/stubs/{defaultConfig.stub.js → config.full.js} +183 -166
  207. package/stubs/postcss.config.js +6 -0
  208. package/stubs/tailwind.config.cjs +2 -0
  209. package/stubs/tailwind.config.js +2 -0
  210. package/stubs/tailwind.config.ts +3 -0
  211. package/types/config.d.ts +373 -0
  212. package/types/generated/.gitkeep +0 -0
  213. package/types/generated/colors.d.ts +298 -0
  214. package/types/generated/corePluginList.d.ts +1 -0
  215. package/types/generated/default-theme.d.ts +347 -0
  216. package/types/index.d.ts +7 -0
  217. package/CHANGELOG.md +0 -1897
  218. package/lib/constants.js +0 -37
  219. package/lib/lib/setupWatchingContext.js +0 -288
  220. package/nesting/plugin.js +0 -41
  221. package/scripts/install-integrations.js +0 -27
  222. package/scripts/rebuildFixtures.js +0 -68
  223. package/src/constants.js +0 -17
  224. package/src/lib/setupWatchingContext.js +0 -311
  225. /package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -0
  226. /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
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
@@ -0,0 +1,3 @@
1
+ import type { Config } from './types/config'
2
+ declare const config: Config
3
+ export = config
@@ -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
@@ -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,52 @@
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 _resolveConfigPathJs = require("../../util/resolveConfigPath.js");
13
+ const _pluginJs = require("./plugin.js");
14
+ function _interopRequireDefault(obj) {
15
+ return obj && obj.__esModule ? obj : {
16
+ default: obj
17
+ };
18
+ }
19
+ async function build(args) {
20
+ let input = args["--input"];
21
+ let shouldWatch = args["--watch"];
22
+ // TODO: Deprecate this in future versions
23
+ if (!input && args["_"][1]) {
24
+ console.error("[deprecation] Running tailwindcss without -i, please provide an input file.");
25
+ input = args["--input"] = args["_"][1];
26
+ }
27
+ if (input && input !== "-" && !_fs.default.existsSync(input = _path.default.resolve(input))) {
28
+ console.error(`Specified input file ${args["--input"]} does not exist.`);
29
+ process.exit(9);
30
+ }
31
+ if (args["--config"] && !_fs.default.existsSync(args["--config"] = _path.default.resolve(args["--config"]))) {
32
+ console.error(`Specified config file ${args["--config"]} does not exist.`);
33
+ process.exit(9);
34
+ }
35
+ // TODO: Reference the @config path here if exists
36
+ let configPath = args["--config"] ? args["--config"] : (0, _resolveConfigPathJs.resolveDefaultConfigPath)();
37
+ let processor = await (0, _pluginJs.createProcessor)(args, configPath);
38
+ if (shouldWatch) {
39
+ // Abort the watcher if stdin is closed to avoid zombie processes
40
+ // You can disable this behavior with --watch=always
41
+ if (args["--watch"] !== "always") {
42
+ process.stdin.on("end", ()=>process.exit(0));
43
+ }
44
+ process.stdin.resume();
45
+ await processor.watch();
46
+ } else {
47
+ await processor.build().catch((e)=>{
48
+ console.error(e);
49
+ process.exit(1);
50
+ });
51
+ }
52
+ }
@@ -0,0 +1,376 @@
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 _contentJs = require("../../lib/content.js");
24
+ const _watchingJs = require("./watching.js");
25
+ const _fastGlob = /*#__PURE__*/ _interopRequireDefault(require("fast-glob"));
26
+ const _findAtConfigPathJs = require("../../lib/findAtConfigPath.js");
27
+ const _log = /*#__PURE__*/ _interopRequireDefault(require("../../util/log"));
28
+ const _loadConfig = require("../../lib/load-config");
29
+ const _getModuleDependencies = /*#__PURE__*/ _interopRequireDefault(require("../../lib/getModuleDependencies"));
30
+ function _interopRequireDefault(obj) {
31
+ return obj && obj.__esModule ? obj : {
32
+ default: obj
33
+ };
34
+ }
35
+ /**
36
+ *
37
+ * @param {string} [customPostCssPath ]
38
+ * @returns
39
+ */ async function loadPostCssPlugins(customPostCssPath) {
40
+ let config = customPostCssPath ? await (async ()=>{
41
+ let file = _path.default.resolve(customPostCssPath);
42
+ // Implementation, see: https://unpkg.com/browse/postcss-load-config@3.1.0/src/index.js
43
+ // @ts-ignore
44
+ let { config ={} } = await (0, _lilconfig.lilconfig)("postcss").load(file);
45
+ if (typeof config === "function") {
46
+ config = config();
47
+ } else {
48
+ config = Object.assign({}, config);
49
+ }
50
+ if (!config.plugins) {
51
+ config.plugins = [];
52
+ }
53
+ return {
54
+ file,
55
+ plugins: (0, _plugins.default)(config, file),
56
+ options: (0, _options.default)(config, file)
57
+ };
58
+ })() : await (0, _postcssLoadConfig.default)();
59
+ let configPlugins = config.plugins;
60
+ let configPluginTailwindIdx = configPlugins.findIndex((plugin)=>{
61
+ if (typeof plugin === "function" && plugin.name === "tailwindcss") {
62
+ return true;
63
+ }
64
+ if (typeof plugin === "object" && plugin !== null && plugin.postcssPlugin === "tailwindcss") {
65
+ return true;
66
+ }
67
+ return false;
68
+ });
69
+ let beforePlugins = configPluginTailwindIdx === -1 ? [] : configPlugins.slice(0, configPluginTailwindIdx);
70
+ let afterPlugins = configPluginTailwindIdx === -1 ? configPlugins : configPlugins.slice(configPluginTailwindIdx + 1);
71
+ return [
72
+ beforePlugins,
73
+ afterPlugins,
74
+ config.options
75
+ ];
76
+ }
77
+ function loadBuiltinPostcssPlugins() {
78
+ let postcss = (0, _deps.loadPostcss)();
79
+ let IMPORT_COMMENT = "__TAILWIND_RESTORE_IMPORT__: ";
80
+ return [
81
+ [
82
+ (root)=>{
83
+ root.walkAtRules("import", (rule)=>{
84
+ if (rule.params.slice(1).startsWith("tailwindcss/")) {
85
+ rule.after(postcss.comment({
86
+ text: IMPORT_COMMENT + rule.params
87
+ }));
88
+ rule.remove();
89
+ }
90
+ });
91
+ },
92
+ (0, _deps.loadPostcssImport)(),
93
+ (root)=>{
94
+ root.walkComments((rule)=>{
95
+ if (rule.text.startsWith(IMPORT_COMMENT)) {
96
+ rule.after(postcss.atRule({
97
+ name: "import",
98
+ params: rule.text.replace(IMPORT_COMMENT, "")
99
+ }));
100
+ rule.remove();
101
+ }
102
+ });
103
+ }
104
+ ],
105
+ [],
106
+ {}
107
+ ];
108
+ }
109
+ let state = {
110
+ /** @type {any} */ context: null,
111
+ /** @type {ReturnType<typeof createWatcher> | null} */ watcher: null,
112
+ /** @type {{content: string, extension: string}[]} */ changedContent: [],
113
+ /** @type {ReturnType<typeof load> | null} */ configBag: null,
114
+ contextDependencies: new Set(),
115
+ /** @type {import('../../lib/content.js').ContentPath[]} */ contentPaths: [],
116
+ refreshContentPaths () {
117
+ var _this_context;
118
+ this.contentPaths = (0, _contentJs.parseCandidateFiles)(this.context, (_this_context = this.context) === null || _this_context === void 0 ? void 0 : _this_context.tailwindConfig);
119
+ },
120
+ get config () {
121
+ return this.context.tailwindConfig;
122
+ },
123
+ get contentPatterns () {
124
+ return {
125
+ all: this.contentPaths.map((contentPath)=>contentPath.pattern),
126
+ dynamic: this.contentPaths.filter((contentPath)=>contentPath.glob !== undefined).map((contentPath)=>contentPath.pattern)
127
+ };
128
+ },
129
+ loadConfig (configPath, content) {
130
+ if (this.watcher && configPath) {
131
+ this.refreshConfigDependencies();
132
+ }
133
+ let config = (0, _loadConfig.loadConfig)(configPath);
134
+ let dependencies = (0, _getModuleDependencies.default)(configPath);
135
+ this.configBag = {
136
+ config,
137
+ dependencies,
138
+ dispose () {
139
+ for (let file of dependencies){
140
+ delete require.cache[require.resolve(file)];
141
+ }
142
+ }
143
+ };
144
+ // @ts-ignore
145
+ this.configBag.config = (0, _resolveConfigJs.default)(this.configBag.config, {
146
+ content: {
147
+ files: []
148
+ }
149
+ });
150
+ // Override content files if `--content` has been passed explicitly
151
+ if ((content === null || content === void 0 ? void 0 : content.length) > 0) {
152
+ this.configBag.config.content.files = content;
153
+ }
154
+ return this.configBag.config;
155
+ },
156
+ refreshConfigDependencies () {
157
+ var _this_configBag;
158
+ _sharedState.env.DEBUG && console.time("Module dependencies");
159
+ (_this_configBag = this.configBag) === null || _this_configBag === void 0 ? void 0 : _this_configBag.dispose();
160
+ _sharedState.env.DEBUG && console.timeEnd("Module dependencies");
161
+ },
162
+ readContentPaths () {
163
+ let content = [];
164
+ // Resolve globs from the content config
165
+ // TODO: When we make the postcss plugin async-capable this can become async
166
+ let files = _fastGlob.default.sync(this.contentPatterns.all);
167
+ for (let file of files){
168
+ if (_sharedState.env.OXIDE) {
169
+ content.push({
170
+ file,
171
+ extension: _path.default.extname(file).slice(1)
172
+ });
173
+ } else {
174
+ content.push({
175
+ content: _fs.default.readFileSync(_path.default.resolve(file), "utf8"),
176
+ extension: _path.default.extname(file).slice(1)
177
+ });
178
+ }
179
+ }
180
+ // Resolve raw content in the tailwind config
181
+ let rawContent = this.config.content.files.filter((file)=>{
182
+ return file !== null && typeof file === "object";
183
+ });
184
+ for (let { raw: htmlContent , extension ="html" } of rawContent){
185
+ content.push({
186
+ content: htmlContent,
187
+ extension
188
+ });
189
+ }
190
+ return content;
191
+ },
192
+ getContext ({ createContext , cliConfigPath , root , result , content }) {
193
+ if (this.context) {
194
+ this.context.changedContent = this.changedContent.splice(0);
195
+ return this.context;
196
+ }
197
+ _sharedState.env.DEBUG && console.time("Searching for config");
198
+ var _findAtConfigPath;
199
+ let configPath = (_findAtConfigPath = (0, _findAtConfigPathJs.findAtConfigPath)(root, result)) !== null && _findAtConfigPath !== void 0 ? _findAtConfigPath : cliConfigPath;
200
+ _sharedState.env.DEBUG && console.timeEnd("Searching for config");
201
+ _sharedState.env.DEBUG && console.time("Loading config");
202
+ let config = this.loadConfig(configPath, content);
203
+ _sharedState.env.DEBUG && console.timeEnd("Loading config");
204
+ _sharedState.env.DEBUG && console.time("Creating context");
205
+ this.context = createContext(config, []);
206
+ Object.assign(this.context, {
207
+ userConfigPath: configPath
208
+ });
209
+ _sharedState.env.DEBUG && console.timeEnd("Creating context");
210
+ _sharedState.env.DEBUG && console.time("Resolving content paths");
211
+ this.refreshContentPaths();
212
+ _sharedState.env.DEBUG && console.timeEnd("Resolving content paths");
213
+ if (this.watcher) {
214
+ _sharedState.env.DEBUG && console.time("Watch new files");
215
+ this.watcher.refreshWatchedFiles();
216
+ _sharedState.env.DEBUG && console.timeEnd("Watch new files");
217
+ }
218
+ for (let file of this.readContentPaths()){
219
+ this.context.changedContent.push(file);
220
+ }
221
+ return this.context;
222
+ }
223
+ };
224
+ async function createProcessor(args, cliConfigPath) {
225
+ var _args_content;
226
+ let postcss = (0, _deps.loadPostcss)();
227
+ let input = args["--input"];
228
+ let output = args["--output"];
229
+ let includePostCss = args["--postcss"];
230
+ let customPostCssPath = typeof args["--postcss"] === "string" ? args["--postcss"] : undefined;
231
+ let [beforePlugins, afterPlugins, postcssOptions] = includePostCss ? await loadPostCssPlugins(customPostCssPath) : loadBuiltinPostcssPlugins();
232
+ if (args["--purge"]) {
233
+ _log.default.warn("purge-flag-deprecated", [
234
+ "The `--purge` flag has been deprecated.",
235
+ "Please use `--content` instead."
236
+ ]);
237
+ if (!args["--content"]) {
238
+ args["--content"] = args["--purge"];
239
+ }
240
+ }
241
+ var _args_content_split;
242
+ 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 : [];
243
+ let tailwindPlugin = ()=>{
244
+ return {
245
+ postcssPlugin: "tailwindcss",
246
+ Once (root, { result }) {
247
+ _sharedState.env.DEBUG && console.time("Compiling CSS");
248
+ (0, _processTailwindFeatures.default)(({ createContext })=>{
249
+ console.error();
250
+ console.error("Rebuilding...");
251
+ return ()=>{
252
+ return state.getContext({
253
+ createContext,
254
+ cliConfigPath,
255
+ root,
256
+ result,
257
+ content
258
+ });
259
+ };
260
+ })(root, result);
261
+ _sharedState.env.DEBUG && console.timeEnd("Compiling CSS");
262
+ }
263
+ };
264
+ };
265
+ tailwindPlugin.postcss = true;
266
+ let plugins = [
267
+ ...beforePlugins,
268
+ tailwindPlugin,
269
+ !args["--minify"] && _utils.formatNodes,
270
+ ...afterPlugins,
271
+ !args["--no-autoprefixer"] && (0, _deps.loadAutoprefixer)(),
272
+ args["--minify"] && (0, _deps.loadCssNano)()
273
+ ].filter(Boolean);
274
+ /** @type {import('postcss').Processor} */ // @ts-ignore
275
+ let processor = postcss(plugins);
276
+ async function readInput() {
277
+ // Piping in data, let's drain the stdin
278
+ if (input === "-") {
279
+ return (0, _utils.drainStdin)();
280
+ }
281
+ // Input file has been provided
282
+ if (input) {
283
+ return _fs.default.promises.readFile(_path.default.resolve(input), "utf8");
284
+ }
285
+ // No input file provided, fallback to default atrules
286
+ return "@tailwind base; @tailwind components; @tailwind utilities";
287
+ }
288
+ async function build() {
289
+ let start = process.hrtime.bigint();
290
+ return readInput().then((css)=>processor.process(css, {
291
+ ...postcssOptions,
292
+ from: input,
293
+ to: output
294
+ })).then((result)=>{
295
+ if (!state.watcher) {
296
+ return result;
297
+ }
298
+ _sharedState.env.DEBUG && console.time("Recording PostCSS dependencies");
299
+ for (let message of result.messages){
300
+ if (message.type === "dependency") {
301
+ state.contextDependencies.add(message.file);
302
+ }
303
+ }
304
+ _sharedState.env.DEBUG && console.timeEnd("Recording PostCSS dependencies");
305
+ // TODO: This needs to be in a different spot
306
+ _sharedState.env.DEBUG && console.time("Watch new files");
307
+ state.watcher.refreshWatchedFiles();
308
+ _sharedState.env.DEBUG && console.timeEnd("Watch new files");
309
+ return result;
310
+ }).then((result)=>{
311
+ if (!output) {
312
+ process.stdout.write(result.css);
313
+ return;
314
+ }
315
+ return Promise.all([
316
+ (0, _utils.outputFile)(result.opts.to, result.css),
317
+ result.map && (0, _utils.outputFile)(result.opts.to + ".map", result.map.toString())
318
+ ]);
319
+ }).then(()=>{
320
+ let end = process.hrtime.bigint();
321
+ console.error();
322
+ console.error("Done in", (end - start) / BigInt(1e6) + "ms.");
323
+ }).then(()=>{}, (err)=>{
324
+ // TODO: If an initial build fails we can't easily pick up any PostCSS dependencies
325
+ // that were collected before the error occurred
326
+ // The result is not stored on the error so we have to store it externally
327
+ // and pull the messages off of it here somehow
328
+ // This results in a less than ideal DX because the watcher will not pick up
329
+ // changes to imported CSS if one of them caused an error during the initial build
330
+ // If you fix it and then save the main CSS file so there's no error
331
+ // The watcher will start watching the imported CSS files and will be
332
+ // resilient to future errors.
333
+ if (state.watcher) {
334
+ console.error(err);
335
+ } else {
336
+ return Promise.reject(err);
337
+ }
338
+ });
339
+ }
340
+ /**
341
+ * @param {{file: string, content(): Promise<string>, extension: string}[]} changes
342
+ */ async function parseChanges(changes) {
343
+ return Promise.all(changes.map(async (change)=>({
344
+ content: await change.content(),
345
+ extension: change.extension
346
+ })));
347
+ }
348
+ if (input !== undefined && input !== "-") {
349
+ state.contextDependencies.add(_path.default.resolve(input));
350
+ }
351
+ return {
352
+ build,
353
+ watch: async ()=>{
354
+ state.watcher = (0, _watchingJs.createWatcher)(args, {
355
+ state,
356
+ /**
357
+ * @param {{file: string, content(): Promise<string>, extension: string}[]} changes
358
+ */ async rebuild (changes) {
359
+ let needsNewContext = changes.some((change)=>{
360
+ var _state_configBag;
361
+ return ((_state_configBag = state.configBag) === null || _state_configBag === void 0 ? void 0 : _state_configBag.dependencies.has(change.file)) || state.contextDependencies.has(change.file);
362
+ });
363
+ if (needsNewContext) {
364
+ state.context = null;
365
+ } else {
366
+ for (let change of (await parseChanges(changes))){
367
+ state.changedContent.push(change);
368
+ }
369
+ }
370
+ return build();
371
+ }
372
+ });
373
+ await build();
374
+ }
375
+ };
376
+ }
@@ -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
+ }