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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (238) hide show
  1. package/LICENSE +1 -2
  2. package/README.md +15 -7
  3. package/colors.d.ts +3 -0
  4. package/colors.js +2 -304
  5. package/defaultConfig.d.ts +3 -0
  6. package/defaultConfig.js +2 -4
  7. package/defaultTheme.d.ts +4 -0
  8. package/defaultTheme.js +2 -4
  9. package/lib/cli/build/deps.js +54 -0
  10. package/lib/cli/build/index.js +52 -0
  11. package/lib/cli/build/plugin.js +376 -0
  12. package/lib/cli/build/utils.js +78 -0
  13. package/lib/cli/build/watching.js +180 -0
  14. package/lib/cli/help/index.js +71 -0
  15. package/lib/cli/index.js +230 -0
  16. package/lib/cli/init/index.js +61 -0
  17. package/lib/cli-peer-dependencies.js +22 -14
  18. package/lib/cli.js +4 -762
  19. package/lib/corePluginList.js +182 -5
  20. package/lib/corePlugins.js +4109 -2952
  21. package/lib/css/preflight.css +24 -9
  22. package/lib/featureFlags.js +68 -50
  23. package/lib/index.js +5 -30
  24. package/lib/lib/cacheInvalidation.js +90 -0
  25. package/lib/lib/collapseAdjacentRules.js +52 -36
  26. package/lib/lib/collapseDuplicateDeclarations.js +83 -0
  27. package/lib/lib/content.js +177 -0
  28. package/lib/lib/defaultExtractor.js +241 -0
  29. package/lib/lib/detectNesting.js +39 -17
  30. package/lib/lib/evaluateTailwindFunctions.js +203 -161
  31. package/lib/lib/expandApplyAtRules.js +503 -221
  32. package/lib/lib/expandTailwindAtRules.js +255 -243
  33. package/lib/lib/findAtConfigPath.js +44 -0
  34. package/lib/lib/generateRules.js +831 -317
  35. package/lib/lib/getModuleDependencies.js +93 -49
  36. package/lib/lib/load-config.js +36 -0
  37. package/lib/lib/normalizeTailwindDirectives.js +79 -60
  38. package/lib/lib/offsets.js +304 -0
  39. package/lib/lib/partitionApplyAtRules.js +56 -0
  40. package/lib/lib/regex.js +60 -0
  41. package/lib/lib/remap-bitfield.js +87 -0
  42. package/lib/lib/resolveDefaultsAtRules.js +150 -94
  43. package/lib/lib/setupContextUtils.js +1197 -685
  44. package/lib/lib/setupTrackingContext.js +150 -177
  45. package/lib/lib/sharedState.js +70 -21
  46. package/lib/lib/substituteScreenAtRules.js +26 -28
  47. package/lib/oxide/cli/build/deps.js +81 -0
  48. package/lib/oxide/cli/build/index.js +51 -0
  49. package/lib/oxide/cli/build/plugin.js +373 -0
  50. package/lib/oxide/cli/build/utils.js +77 -0
  51. package/lib/oxide/cli/build/watching.js +177 -0
  52. package/lib/oxide/cli/help/index.js +70 -0
  53. package/lib/oxide/cli/index.js +214 -0
  54. package/lib/oxide/cli/init/index.js +50 -0
  55. package/lib/oxide/cli.js +5 -0
  56. package/lib/oxide/postcss-plugin.js +2 -0
  57. package/lib/plugin.js +98 -0
  58. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  59. package/lib/postcss-plugins/nesting/index.js +19 -0
  60. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  61. package/lib/processTailwindFeatures.js +58 -56
  62. package/lib/public/colors.js +353 -0
  63. package/lib/public/create-plugin.js +15 -0
  64. package/lib/public/default-config.js +16 -0
  65. package/lib/public/default-theme.js +16 -0
  66. package/lib/public/load-config.js +10 -0
  67. package/lib/public/resolve-config.js +22 -0
  68. package/lib/util/applyImportantSelector.js +22 -0
  69. package/lib/util/bigSign.js +7 -6
  70. package/lib/util/buildMediaQuery.js +21 -32
  71. package/lib/util/cloneDeep.js +16 -14
  72. package/lib/util/cloneNodes.js +29 -15
  73. package/lib/util/color.js +104 -66
  74. package/lib/util/configurePlugins.js +17 -15
  75. package/lib/util/createPlugin.js +23 -26
  76. package/lib/util/createUtilityPlugin.js +46 -46
  77. package/lib/util/dataTypes.js +266 -0
  78. package/lib/util/defaults.js +20 -15
  79. package/lib/util/escapeClassName.js +18 -17
  80. package/lib/util/escapeCommas.js +7 -6
  81. package/lib/util/flattenColorPalette.js +13 -12
  82. package/lib/util/formatVariantSelector.js +341 -0
  83. package/lib/util/getAllConfigs.js +44 -18
  84. package/lib/util/hashConfig.js +15 -12
  85. package/lib/util/isKeyframeRule.js +7 -6
  86. package/lib/util/isPlainObject.js +11 -11
  87. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  88. package/lib/util/log.js +52 -33
  89. package/lib/util/nameClass.js +35 -29
  90. package/lib/util/negateValue.js +31 -17
  91. package/lib/util/normalizeConfig.js +294 -0
  92. package/lib/util/normalizeScreens.js +170 -0
  93. package/lib/util/parseAnimationValue.js +85 -54
  94. package/lib/util/parseBoxShadowValue.js +84 -0
  95. package/lib/util/parseDependency.js +41 -70
  96. package/lib/util/parseGlob.js +34 -0
  97. package/lib/util/parseObjectStyles.js +30 -24
  98. package/lib/util/pluginUtils.js +234 -288
  99. package/lib/util/prefixSelector.js +33 -19
  100. package/lib/util/removeAlphaVariables.js +29 -0
  101. package/lib/util/resolveConfig.js +221 -256
  102. package/lib/util/resolveConfigPath.js +55 -48
  103. package/lib/util/responsive.js +18 -14
  104. package/lib/util/splitAtTopLevelOnly.js +49 -0
  105. package/lib/util/tap.js +8 -7
  106. package/lib/util/toColorValue.js +7 -6
  107. package/lib/util/toPath.js +27 -8
  108. package/lib/util/transformThemeValue.js +67 -28
  109. package/lib/util/validateConfig.js +24 -0
  110. package/lib/util/validateFormalSyntax.js +24 -0
  111. package/lib/util/withAlphaVariable.js +67 -57
  112. package/loadConfig.d.ts +4 -0
  113. package/loadConfig.js +2 -0
  114. package/nesting/index.js +2 -12
  115. package/package.json +69 -66
  116. package/peers/index.js +76328 -84169
  117. package/plugin.d.ts +11 -0
  118. package/plugin.js +1 -2
  119. package/resolveConfig.d.ts +12 -0
  120. package/resolveConfig.js +2 -7
  121. package/scripts/create-plugin-list.js +2 -2
  122. package/scripts/generate-types.js +105 -0
  123. package/scripts/release-channel.js +18 -0
  124. package/scripts/release-notes.js +21 -0
  125. package/scripts/swap-engines.js +40 -0
  126. package/scripts/type-utils.js +27 -0
  127. package/src/cli/build/deps.js +56 -0
  128. package/src/cli/build/index.js +49 -0
  129. package/src/cli/build/plugin.js +444 -0
  130. package/src/cli/build/utils.js +76 -0
  131. package/src/cli/build/watching.js +229 -0
  132. package/src/cli/help/index.js +70 -0
  133. package/src/cli/index.js +216 -0
  134. package/src/cli/init/index.js +79 -0
  135. package/src/cli-peer-dependencies.js +7 -1
  136. package/src/cli.js +4 -756
  137. package/src/corePluginList.js +1 -1
  138. package/src/corePlugins.js +2526 -1956
  139. package/src/css/preflight.css +24 -9
  140. package/src/featureFlags.js +33 -10
  141. package/src/index.js +4 -33
  142. package/src/lib/cacheInvalidation.js +52 -0
  143. package/src/lib/collapseAdjacentRules.js +21 -2
  144. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  145. package/src/lib/content.js +208 -0
  146. package/src/lib/defaultExtractor.js +217 -0
  147. package/src/lib/detectNesting.js +30 -3
  148. package/src/lib/evaluateTailwindFunctions.js +84 -10
  149. package/src/lib/expandApplyAtRules.js +509 -153
  150. package/src/lib/expandTailwindAtRules.js +125 -104
  151. package/src/lib/findAtConfigPath.js +48 -0
  152. package/src/lib/generateRules.js +678 -70
  153. package/src/lib/getModuleDependencies.js +70 -30
  154. package/src/lib/load-config.ts +27 -0
  155. package/src/lib/normalizeTailwindDirectives.js +10 -3
  156. package/src/lib/offsets.js +373 -0
  157. package/src/lib/partitionApplyAtRules.js +52 -0
  158. package/src/lib/regex.js +74 -0
  159. package/src/lib/remap-bitfield.js +82 -0
  160. package/src/lib/resolveDefaultsAtRules.js +105 -47
  161. package/src/lib/setupContextUtils.js +848 -247
  162. package/src/lib/setupTrackingContext.js +53 -64
  163. package/src/lib/sharedState.js +60 -6
  164. package/src/lib/substituteScreenAtRules.js +6 -3
  165. package/src/oxide/cli/build/deps.ts +91 -0
  166. package/src/oxide/cli/build/index.ts +47 -0
  167. package/src/oxide/cli/build/plugin.ts +442 -0
  168. package/src/oxide/cli/build/utils.ts +74 -0
  169. package/src/oxide/cli/build/watching.ts +225 -0
  170. package/src/oxide/cli/help/index.ts +69 -0
  171. package/src/oxide/cli/index.ts +204 -0
  172. package/src/oxide/cli/init/index.ts +59 -0
  173. package/src/oxide/cli.ts +1 -0
  174. package/src/oxide/postcss-plugin.ts +1 -0
  175. package/src/plugin.js +107 -0
  176. package/src/postcss-plugins/nesting/README.md +42 -0
  177. package/src/postcss-plugins/nesting/index.js +13 -0
  178. package/src/postcss-plugins/nesting/plugin.js +80 -0
  179. package/src/processTailwindFeatures.js +18 -3
  180. package/src/public/colors.js +322 -0
  181. package/src/public/create-plugin.js +2 -0
  182. package/src/public/default-config.js +4 -0
  183. package/src/public/default-theme.js +4 -0
  184. package/src/public/load-config.js +2 -0
  185. package/src/public/resolve-config.js +7 -0
  186. package/src/util/applyImportantSelector.js +19 -0
  187. package/src/util/buildMediaQuery.js +14 -16
  188. package/src/util/cloneNodes.js +19 -2
  189. package/src/util/color.js +43 -11
  190. package/src/util/createUtilityPlugin.js +2 -11
  191. package/src/util/dataTypes.js +281 -0
  192. package/src/util/defaults.js +6 -0
  193. package/src/util/formatVariantSelector.js +412 -0
  194. package/src/util/getAllConfigs.js +21 -2
  195. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  196. package/src/util/log.js +23 -22
  197. package/src/util/nameClass.js +6 -2
  198. package/src/util/negateValue.js +15 -5
  199. package/src/util/normalizeConfig.js +318 -0
  200. package/src/util/normalizeScreens.js +140 -0
  201. package/src/util/parseAnimationValue.js +7 -1
  202. package/src/util/parseBoxShadowValue.js +72 -0
  203. package/src/util/parseDependency.js +37 -38
  204. package/src/util/parseGlob.js +24 -0
  205. package/src/util/pluginUtils.js +219 -219
  206. package/src/util/prefixSelector.js +30 -13
  207. package/src/util/removeAlphaVariables.js +24 -0
  208. package/src/util/resolveConfig.js +86 -91
  209. package/src/util/resolveConfigPath.js +12 -1
  210. package/src/util/splitAtTopLevelOnly.js +52 -0
  211. package/src/util/toPath.js +23 -1
  212. package/src/util/transformThemeValue.js +33 -8
  213. package/src/util/validateConfig.js +13 -0
  214. package/src/util/validateFormalSyntax.js +34 -0
  215. package/src/util/withAlphaVariable.js +14 -9
  216. package/stubs/.gitignore +1 -0
  217. package/stubs/.prettierrc.json +6 -0
  218. package/stubs/{defaultConfig.stub.js → config.full.js} +332 -249
  219. package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -1
  220. package/stubs/postcss.config.js +6 -0
  221. package/stubs/tailwind.config.cjs +2 -0
  222. package/stubs/tailwind.config.js +2 -0
  223. package/stubs/tailwind.config.ts +3 -0
  224. package/types/config.d.ts +373 -0
  225. package/types/generated/.gitkeep +0 -0
  226. package/types/generated/colors.d.ts +298 -0
  227. package/types/generated/corePluginList.d.ts +1 -0
  228. package/types/generated/default-theme.d.ts +347 -0
  229. package/types/index.d.ts +7 -0
  230. package/CHANGELOG.md +0 -1742
  231. package/lib/constants.js +0 -37
  232. package/lib/lib/setupWatchingContext.js +0 -331
  233. package/nesting/plugin.js +0 -41
  234. package/scripts/install-integrations.js +0 -27
  235. package/scripts/rebuildFixtures.js +0 -68
  236. package/src/constants.js +0 -17
  237. package/src/lib/setupWatchingContext.js +0 -307
  238. /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
@@ -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
+ }
@@ -0,0 +1,180 @@
1
+ // @ts-check
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "createWatcher", {
7
+ enumerable: true,
8
+ get: ()=>createWatcher
9
+ });
10
+ const _chokidar = /*#__PURE__*/ _interopRequireDefault(require("chokidar"));
11
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
12
+ const _micromatch = /*#__PURE__*/ _interopRequireDefault(require("micromatch"));
13
+ const _normalizePath = /*#__PURE__*/ _interopRequireDefault(require("normalize-path"));
14
+ const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
15
+ const _utilsJs = require("./utils.js");
16
+ function _interopRequireDefault(obj) {
17
+ return obj && obj.__esModule ? obj : {
18
+ default: obj
19
+ };
20
+ }
21
+ function createWatcher(args, { state , rebuild }) {
22
+ let shouldPoll = args["--poll"];
23
+ let shouldCoalesceWriteEvents = shouldPoll || process.platform === "win32";
24
+ // Polling interval in milliseconds
25
+ // Used only when polling or coalescing add/change events on Windows
26
+ let pollInterval = 10;
27
+ let watcher = _chokidar.default.watch([], {
28
+ // Force checking for atomic writes in all situations
29
+ // This causes chokidar to wait up to 100ms for a file to re-added after it's been unlinked
30
+ // This only works when watching directories though
31
+ atomic: true,
32
+ usePolling: shouldPoll,
33
+ interval: shouldPoll ? pollInterval : undefined,
34
+ ignoreInitial: true,
35
+ awaitWriteFinish: shouldCoalesceWriteEvents ? {
36
+ stabilityThreshold: 50,
37
+ pollInterval: pollInterval
38
+ } : false
39
+ });
40
+ // A queue of rebuilds, file reads, etc… to run
41
+ let chain = Promise.resolve();
42
+ /**
43
+ * A list of files that have been changed since the last rebuild
44
+ *
45
+ * @type {{file: string, content: () => Promise<string>, extension: string}[]}
46
+ */ let changedContent = [];
47
+ /**
48
+ * A list of files for which a rebuild has already been queued.
49
+ * This is used to prevent duplicate rebuilds when multiple events are fired for the same file.
50
+ * The rebuilt file is cleared from this list when it's associated rebuild has _started_
51
+ * This is because if the file is changed during a rebuild it won't trigger a new rebuild which it should
52
+ **/ let pendingRebuilds = new Set();
53
+ let _timer;
54
+ let _reject;
55
+ /**
56
+ * Rebuilds the changed files and resolves when the rebuild is
57
+ * complete regardless of whether it was successful or not
58
+ */ async function rebuildAndContinue() {
59
+ let changes = changedContent.splice(0);
60
+ // There are no changes to rebuild so we can just do nothing
61
+ if (changes.length === 0) {
62
+ return Promise.resolve();
63
+ }
64
+ // Clear all pending rebuilds for the about-to-be-built files
65
+ changes.forEach((change)=>pendingRebuilds.delete(change.file));
66
+ // Resolve the promise even when the rebuild fails
67
+ return rebuild(changes).then(()=>{}, (e)=>{
68
+ console.error(e.toString());
69
+ });
70
+ }
71
+ /**
72
+ *
73
+ * @param {*} file
74
+ * @param {(() => Promise<string>) | null} content
75
+ * @param {boolean} skipPendingCheck
76
+ * @returns {Promise<void>}
77
+ */ function recordChangedFile(file, content = null, skipPendingCheck = false) {
78
+ file = _path.default.resolve(file);
79
+ // Applications like Vim/Neovim fire both rename and change events in succession for atomic writes
80
+ // In that case rebuild has already been queued by rename, so can be skipped in change
81
+ if (pendingRebuilds.has(file) && !skipPendingCheck) {
82
+ return Promise.resolve();
83
+ }
84
+ // Mark that a rebuild of this file is going to happen
85
+ // It MUST happen synchronously before the rebuild is queued for this to be effective
86
+ pendingRebuilds.add(file);
87
+ changedContent.push({
88
+ file,
89
+ content: content !== null && content !== void 0 ? content : ()=>_fs.default.promises.readFile(file, "utf8"),
90
+ extension: _path.default.extname(file).slice(1)
91
+ });
92
+ if (_timer) {
93
+ clearTimeout(_timer);
94
+ _reject();
95
+ }
96
+ // If a rebuild is already in progress we don't want to start another one until the 10ms timer has expired
97
+ chain = chain.then(()=>new Promise((resolve, reject)=>{
98
+ _timer = setTimeout(resolve, 10);
99
+ _reject = reject;
100
+ }));
101
+ // Resolves once this file has been rebuilt (or the rebuild for this file has failed)
102
+ // This queues as many rebuilds as there are changed files
103
+ // But those rebuilds happen after some delay
104
+ // And will immediately resolve if there are no changes
105
+ chain = chain.then(rebuildAndContinue, rebuildAndContinue);
106
+ return chain;
107
+ }
108
+ watcher.on("change", (file)=>recordChangedFile(file));
109
+ watcher.on("add", (file)=>recordChangedFile(file));
110
+ // Restore watching any files that are "removed"
111
+ // This can happen when a file is pseudo-atomically replaced (a copy is created, overwritten, the old one is unlinked, and the new one is renamed)
112
+ // TODO: An an optimization we should allow removal when the config changes
113
+ watcher.on("unlink", (file)=>{
114
+ file = (0, _normalizePath.default)(file);
115
+ // Only re-add the file if it's not covered by a dynamic pattern
116
+ if (!_micromatch.default.some([
117
+ file
118
+ ], state.contentPatterns.dynamic)) {
119
+ watcher.add(file);
120
+ }
121
+ });
122
+ // Some applications such as Visual Studio (but not VS Code)
123
+ // will only fire a rename event for atomic writes and not a change event
124
+ // This is very likely a chokidar bug but it's one we need to work around
125
+ // We treat this as a change event and rebuild the CSS
126
+ watcher.on("raw", (evt, filePath, meta)=>{
127
+ if (evt !== "rename") {
128
+ return;
129
+ }
130
+ let watchedPath = meta.watchedPath;
131
+ // Watched path might be the file itself
132
+ // Or the directory it is in
133
+ filePath = watchedPath.endsWith(filePath) ? watchedPath : _path.default.join(watchedPath, filePath);
134
+ // Skip this event since the files it is for does not match any of the registered content globs
135
+ if (!_micromatch.default.some([
136
+ filePath
137
+ ], state.contentPatterns.all)) {
138
+ return;
139
+ }
140
+ // Skip since we've already queued a rebuild for this file that hasn't happened yet
141
+ if (pendingRebuilds.has(filePath)) {
142
+ return;
143
+ }
144
+ // We'll go ahead and add the file to the pending rebuilds list here
145
+ // It'll be removed when the rebuild starts unless the read fails
146
+ // which will be taken care of as well
147
+ pendingRebuilds.add(filePath);
148
+ async function enqueue() {
149
+ try {
150
+ // We need to read the file as early as possible outside of the chain
151
+ // because it may be gone by the time we get to it. doing the read
152
+ // immediately increases the chance that the file is still there
153
+ let content = await (0, _utilsJs.readFileWithRetries)(_path.default.resolve(filePath));
154
+ if (content === undefined) {
155
+ return;
156
+ }
157
+ // This will push the rebuild onto the chain
158
+ // We MUST skip the rebuild check here otherwise the rebuild will never happen on Linux
159
+ // This is because the order of events and timing is different on Linux
160
+ // @ts-ignore: TypeScript isn't picking up that content is a string here
161
+ await recordChangedFile(filePath, ()=>content, true);
162
+ } catch {
163
+ // If reading the file fails, it's was probably a deleted temporary file
164
+ // So we can ignore it and no rebuild is needed
165
+ }
166
+ }
167
+ enqueue().then(()=>{
168
+ // If the file read fails we still need to make sure the file isn't stuck in the pending rebuilds list
169
+ pendingRebuilds.delete(filePath);
170
+ });
171
+ });
172
+ return {
173
+ fswatcher: watcher,
174
+ refreshWatchedFiles () {
175
+ watcher.add(Array.from(state.contextDependencies));
176
+ watcher.add(Array.from(state.configBag.dependencies));
177
+ watcher.add(state.contentPatterns.all);
178
+ }
179
+ };
180
+ }