tailwindcss 0.0.0-insiders.fe08e91 → 0.0.0-oxide.6d7c311
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.
- package/CHANGELOG.md +384 -3
- package/LICENSE +1 -2
- package/README.md +12 -8
- package/colors.d.ts +3 -0
- package/defaultConfig.d.ts +3 -0
- package/defaultTheme.d.ts +4 -0
- package/lib/cli/build/deps.js +54 -0
- package/lib/cli/build/index.js +48 -0
- package/lib/cli/build/plugin.js +367 -0
- package/lib/cli/build/utils.js +78 -0
- package/lib/cli/build/watching.js +178 -0
- package/lib/cli/help/index.js +71 -0
- package/lib/cli/index.js +239 -0
- package/lib/cli/init/index.js +46 -0
- package/lib/cli/shared.js +13 -0
- package/lib/cli-peer-dependencies.js +20 -7
- package/lib/cli.js +4 -740
- package/lib/constants.js +27 -20
- package/lib/corePluginList.js +6 -3
- package/lib/corePlugins.js +2064 -1811
- package/lib/css/preflight.css +5 -5
- package/lib/featureFlags.js +31 -22
- package/lib/index.js +4 -28
- package/lib/lib/cacheInvalidation.js +90 -0
- package/lib/lib/collapseAdjacentRules.js +27 -9
- package/lib/lib/collapseDuplicateDeclarations.js +12 -9
- package/lib/lib/content.js +176 -0
- package/lib/lib/defaultExtractor.js +225 -31
- package/lib/lib/detectNesting.js +13 -10
- package/lib/lib/evaluateTailwindFunctions.js +118 -55
- package/lib/lib/expandApplyAtRules.js +439 -190
- package/lib/lib/expandTailwindAtRules.js +151 -134
- package/lib/lib/findAtConfigPath.js +44 -0
- package/lib/lib/generateRules.js +454 -187
- package/lib/lib/getModuleDependencies.js +11 -8
- package/lib/lib/normalizeTailwindDirectives.js +36 -32
- package/lib/lib/offsets.js +217 -0
- package/lib/lib/partitionApplyAtRules.js +56 -0
- package/lib/lib/regex.js +60 -0
- package/lib/lib/resolveDefaultsAtRules.js +89 -67
- package/lib/lib/setupContextUtils.js +667 -376
- package/lib/lib/setupTrackingContext.js +38 -67
- package/lib/lib/sharedState.js +27 -14
- package/lib/lib/substituteScreenAtRules.js +11 -9
- package/lib/oxide/cli.d.js +1 -0
- package/lib/oxide/cli.js +2 -0
- package/lib/oxide/postcss-plugin.d.js +1 -0
- package/lib/oxide/postcss-plugin.js +2 -0
- package/lib/plugin.js +48 -0
- package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
- package/lib/postcss-plugins/nesting/index.js +19 -0
- package/lib/postcss-plugins/nesting/plugin.js +87 -0
- package/lib/processTailwindFeatures.js +35 -25
- package/lib/public/colors.js +247 -245
- package/lib/public/create-plugin.js +6 -4
- package/lib/public/default-config.js +7 -5
- package/lib/public/default-theme.js +7 -5
- package/lib/public/resolve-config.js +8 -5
- package/lib/util/bigSign.js +4 -1
- package/lib/util/buildMediaQuery.js +11 -6
- package/lib/util/cloneDeep.js +7 -6
- package/lib/util/cloneNodes.js +21 -3
- package/lib/util/color.js +53 -54
- package/lib/util/configurePlugins.js +5 -2
- package/lib/util/createPlugin.js +6 -6
- package/lib/util/createUtilityPlugin.js +12 -14
- package/lib/util/dataTypes.js +119 -110
- package/lib/util/defaults.js +4 -1
- package/lib/util/escapeClassName.js +7 -4
- package/lib/util/escapeCommas.js +5 -2
- package/lib/util/flattenColorPalette.js +9 -12
- package/lib/util/formatVariantSelector.js +184 -85
- package/lib/util/getAllConfigs.js +27 -8
- package/lib/util/hashConfig.js +6 -3
- package/lib/util/isKeyframeRule.js +5 -2
- package/lib/util/isPlainObject.js +5 -2
- package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +23 -15
- package/lib/util/log.js +20 -14
- package/lib/util/nameClass.js +20 -9
- package/lib/util/negateValue.js +23 -8
- package/lib/util/normalizeConfig.js +116 -72
- package/lib/util/normalizeScreens.js +120 -11
- package/lib/util/parseAnimationValue.js +42 -40
- package/lib/util/parseBoxShadowValue.js +30 -23
- package/lib/util/parseDependency.js +38 -56
- package/lib/util/parseGlob.js +34 -0
- package/lib/util/parseObjectStyles.js +11 -8
- package/lib/util/pluginUtils.js +147 -50
- package/lib/util/prefixSelector.js +10 -8
- package/lib/util/removeAlphaVariables.js +29 -0
- package/lib/util/resolveConfig.js +97 -85
- package/lib/util/resolveConfigPath.js +11 -9
- package/lib/util/responsive.js +8 -5
- package/lib/util/splitAtTopLevelOnly.js +43 -0
- package/lib/util/tap.js +4 -1
- package/lib/util/toColorValue.js +5 -3
- package/lib/util/toPath.js +20 -4
- package/lib/util/transformThemeValue.js +37 -29
- package/lib/util/validateConfig.js +24 -0
- package/lib/util/validateFormalSyntax.js +24 -0
- package/lib/util/withAlphaVariable.js +23 -15
- package/nesting/index.js +2 -12
- package/package.json +52 -46
- package/peers/index.js +11381 -7950
- package/plugin.d.ts +11 -0
- package/resolveConfig.d.ts +12 -0
- package/scripts/generate-types.js +105 -0
- package/scripts/release-channel.js +18 -0
- package/scripts/release-notes.js +21 -0
- package/scripts/type-utils.js +27 -0
- package/src/cli/build/deps.js +56 -0
- package/src/cli/build/index.js +49 -0
- package/src/cli/build/plugin.js +439 -0
- package/src/cli/build/utils.js +76 -0
- package/src/cli/build/watching.js +227 -0
- package/src/cli/help/index.js +70 -0
- package/src/cli/index.js +234 -0
- package/src/cli/init/index.js +50 -0
- package/src/cli/shared.js +6 -0
- package/src/cli-peer-dependencies.js +7 -1
- package/src/cli.js +4 -810
- package/src/corePluginList.js +1 -1
- package/src/corePlugins.js +532 -217
- package/src/css/preflight.css +5 -5
- package/src/featureFlags.js +15 -9
- package/src/index.js +4 -27
- package/src/lib/cacheInvalidation.js +52 -0
- package/src/lib/collapseAdjacentRules.js +21 -2
- package/src/lib/content.js +212 -0
- package/src/lib/defaultExtractor.js +196 -33
- package/src/lib/evaluateTailwindFunctions.js +78 -7
- package/src/lib/expandApplyAtRules.js +482 -183
- package/src/lib/expandTailwindAtRules.js +106 -85
- package/src/lib/findAtConfigPath.js +48 -0
- package/src/lib/generateRules.js +418 -129
- package/src/lib/normalizeTailwindDirectives.js +1 -0
- package/src/lib/offsets.js +270 -0
- package/src/lib/partitionApplyAtRules.js +52 -0
- package/src/lib/regex.js +74 -0
- package/src/lib/resolveDefaultsAtRules.js +51 -30
- package/src/lib/setupContextUtils.js +556 -208
- package/src/lib/setupTrackingContext.js +11 -48
- package/src/lib/sharedState.js +5 -0
- package/src/oxide/cli.d.ts +0 -0
- package/src/oxide/cli.ts +1 -0
- package/src/oxide/postcss-plugin.d.ts +0 -0
- package/src/oxide/postcss-plugin.ts +1 -0
- package/src/plugin.js +47 -0
- package/src/postcss-plugins/nesting/README.md +42 -0
- package/src/postcss-plugins/nesting/index.js +13 -0
- package/src/postcss-plugins/nesting/plugin.js +80 -0
- package/src/processTailwindFeatures.js +8 -0
- package/src/util/buildMediaQuery.js +5 -3
- package/src/util/cloneNodes.js +19 -2
- package/src/util/color.js +25 -21
- package/src/util/dataTypes.js +29 -21
- package/src/util/formatVariantSelector.js +184 -61
- package/src/util/getAllConfigs.js +19 -0
- package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
- package/src/util/log.js +8 -8
- package/src/util/nameClass.js +4 -0
- package/src/util/negateValue.js +11 -3
- package/src/util/normalizeConfig.js +44 -6
- package/src/util/normalizeScreens.js +99 -4
- package/src/util/parseBoxShadowValue.js +4 -3
- package/src/util/parseDependency.js +37 -42
- package/src/util/parseGlob.js +24 -0
- package/src/util/pluginUtils.js +132 -10
- package/src/util/prefixSelector.js +7 -5
- package/src/util/removeAlphaVariables.js +24 -0
- package/src/util/resolveConfig.js +70 -32
- package/src/util/splitAtTopLevelOnly.js +45 -0
- package/src/util/toPath.js +1 -1
- package/src/util/transformThemeValue.js +13 -3
- package/src/util/validateConfig.js +13 -0
- package/src/util/validateFormalSyntax.js +34 -0
- package/src/util/withAlphaVariable.js +1 -1
- package/stubs/defaultConfig.stub.js +167 -164
- package/stubs/simpleConfig.stub.js +1 -0
- package/types/config.d.ts +362 -0
- package/types/generated/.gitkeep +0 -0
- package/types/generated/colors.d.ts +276 -0
- package/types/generated/corePluginList.d.ts +1 -0
- package/types/generated/default-theme.d.ts +342 -0
- package/types/index.d.ts +7 -0
- package/nesting/plugin.js +0 -41
package/lib/css/preflight.css
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
box-sizing: border-box; /* 1 */
|
|
10
10
|
border-width: 0; /* 2 */
|
|
11
11
|
border-style: solid; /* 2 */
|
|
12
|
-
border-color: currentColor; /* 2 */
|
|
12
|
+
border-color: theme('borderColor.DEFAULT', currentColor); /* 2 */
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
::before,
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
23
23
|
3. Use a more readable tab size.
|
|
24
24
|
4. Use the user's configured `sans` font-family by default.
|
|
25
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
25
26
|
*/
|
|
26
27
|
|
|
27
28
|
html {
|
|
@@ -30,6 +31,7 @@ html {
|
|
|
30
31
|
-moz-tab-size: 4; /* 3 */
|
|
31
32
|
tab-size: 4; /* 3 */
|
|
32
33
|
font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 4 */
|
|
34
|
+
font-feature-settings: theme('fontFamily.sans[1].fontFeatureSettings', normal); /* 5 */
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
/*
|
|
@@ -160,6 +162,7 @@ select,
|
|
|
160
162
|
textarea {
|
|
161
163
|
font-family: inherit; /* 1 */
|
|
162
164
|
font-size: 100%; /* 1 */
|
|
165
|
+
font-weight: inherit; /* 1 */
|
|
163
166
|
line-height: inherit; /* 1 */
|
|
164
167
|
color: inherit; /* 1 */
|
|
165
168
|
margin: 0; /* 2 */
|
|
@@ -358,10 +361,7 @@ video {
|
|
|
358
361
|
height: auto;
|
|
359
362
|
}
|
|
360
363
|
|
|
361
|
-
/*
|
|
362
|
-
Ensure the default browser behavior of the `hidden` attribute.
|
|
363
|
-
*/
|
|
364
|
-
|
|
364
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
365
365
|
[hidden] {
|
|
366
366
|
display: none;
|
|
367
367
|
}
|
package/lib/featureFlags.js
CHANGED
|
@@ -2,61 +2,70 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
flagEnabled: ()=>flagEnabled,
|
|
13
|
+
issueFlagNotices: ()=>issueFlagNotices,
|
|
14
|
+
default: ()=>_default
|
|
15
|
+
});
|
|
16
|
+
const _picocolors = /*#__PURE__*/ _interopRequireDefault(require("picocolors"));
|
|
17
|
+
const _log = /*#__PURE__*/ _interopRequireDefault(require("./util/log"));
|
|
10
18
|
function _interopRequireDefault(obj) {
|
|
11
19
|
return obj && obj.__esModule ? obj : {
|
|
12
20
|
default: obj
|
|
13
21
|
};
|
|
14
22
|
}
|
|
15
23
|
let defaults = {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
optimizeUniversalDefaults: process.env.NODE_ENV === 'test' ? true : false
|
|
24
|
+
optimizeUniversalDefaults: false,
|
|
25
|
+
generalizedModifiers: true
|
|
19
26
|
};
|
|
20
27
|
let featureFlags = {
|
|
21
|
-
future: [
|
|
28
|
+
future: [
|
|
29
|
+
"hoverOnlyWhenSupported",
|
|
30
|
+
"respectDefaultRingColorOpacity",
|
|
31
|
+
"disableColorOpacityUtilitiesByDefault",
|
|
32
|
+
"relativeContentPathsByDefault"
|
|
33
|
+
],
|
|
22
34
|
experimental: [
|
|
23
|
-
|
|
35
|
+
"optimizeUniversalDefaults",
|
|
36
|
+
"generalizedModifiers"
|
|
24
37
|
]
|
|
25
38
|
};
|
|
26
39
|
function flagEnabled(config, flag) {
|
|
27
40
|
if (featureFlags.future.includes(flag)) {
|
|
28
41
|
var ref;
|
|
29
42
|
var ref1, ref2;
|
|
30
|
-
return config.future ===
|
|
43
|
+
return config.future === "all" || ((ref2 = (ref1 = config === null || config === void 0 ? void 0 : (ref = config.future) === null || ref === void 0 ? void 0 : ref[flag]) !== null && ref1 !== void 0 ? ref1 : defaults[flag]) !== null && ref2 !== void 0 ? ref2 : false);
|
|
31
44
|
}
|
|
32
45
|
if (featureFlags.experimental.includes(flag)) {
|
|
33
46
|
var ref3;
|
|
34
47
|
var ref4, ref5;
|
|
35
|
-
return config.experimental ===
|
|
48
|
+
return config.experimental === "all" || ((ref5 = (ref4 = config === null || config === void 0 ? void 0 : (ref3 = config.experimental) === null || ref3 === void 0 ? void 0 : ref3[flag]) !== null && ref4 !== void 0 ? ref4 : defaults[flag]) !== null && ref5 !== void 0 ? ref5 : false);
|
|
36
49
|
}
|
|
37
50
|
return false;
|
|
38
51
|
}
|
|
39
52
|
function experimentalFlagsEnabled(config) {
|
|
40
|
-
if (config.experimental ===
|
|
53
|
+
if (config.experimental === "all") {
|
|
41
54
|
return featureFlags.experimental;
|
|
42
55
|
}
|
|
43
56
|
var ref;
|
|
44
|
-
return Object.keys((ref = config === null || config === void 0 ? void 0 : config.experimental) !== null && ref !== void 0 ? ref : {
|
|
45
|
-
}).filter((flag)=>featureFlags.experimental.includes(flag) && config.experimental[flag]
|
|
46
|
-
);
|
|
57
|
+
return Object.keys((ref = config === null || config === void 0 ? void 0 : config.experimental) !== null && ref !== void 0 ? ref : {}).filter((flag)=>featureFlags.experimental.includes(flag) && config.experimental[flag]);
|
|
47
58
|
}
|
|
48
59
|
function issueFlagNotices(config) {
|
|
49
60
|
if (process.env.JEST_WORKER_ID !== undefined) {
|
|
50
61
|
return;
|
|
51
62
|
}
|
|
52
63
|
if (experimentalFlagsEnabled(config).length > 0) {
|
|
53
|
-
let changes = experimentalFlagsEnabled(config).map((s)=>
|
|
54
|
-
|
|
55
|
-
_log.default.warn('experimental-flags-enabled', [
|
|
64
|
+
let changes = experimentalFlagsEnabled(config).map((s)=>_picocolors.default.yellow(s)).join(", ");
|
|
65
|
+
_log.default.warn("experimental-flags-enabled", [
|
|
56
66
|
`You have enabled experimental features: ${changes}`,
|
|
57
|
-
|
|
67
|
+
"Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."
|
|
58
68
|
]);
|
|
59
69
|
}
|
|
60
70
|
}
|
|
61
|
-
|
|
62
|
-
exports.default = _default;
|
|
71
|
+
const _default = featureFlags;
|
package/lib/index.js
CHANGED
|
@@ -1,30 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
return obj && obj.__esModule ? obj : {
|
|
7
|
-
default: obj
|
|
8
|
-
};
|
|
2
|
+
if (process.env.OXIDE) {
|
|
3
|
+
module.exports = require("./oxide/postcss-plugin");
|
|
4
|
+
} else {
|
|
5
|
+
module.exports = require("./plugin");
|
|
9
6
|
}
|
|
10
|
-
module.exports = function tailwindcss(configOrPath) {
|
|
11
|
-
return {
|
|
12
|
-
postcssPlugin: 'tailwindcss',
|
|
13
|
-
plugins: [
|
|
14
|
-
_sharedState.env.DEBUG && function(root) {
|
|
15
|
-
console.log('\n');
|
|
16
|
-
console.time('JIT TOTAL');
|
|
17
|
-
return root;
|
|
18
|
-
},
|
|
19
|
-
function(root, result) {
|
|
20
|
-
(0, _processTailwindFeatures).default((0, _setupTrackingContext).default(configOrPath))(root, result);
|
|
21
|
-
},
|
|
22
|
-
_sharedState.env.DEBUG && function(root) {
|
|
23
|
-
console.timeEnd('JIT TOTAL');
|
|
24
|
-
console.log('\n');
|
|
25
|
-
return root;
|
|
26
|
-
},
|
|
27
|
-
].filter(Boolean)
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
module.exports.postcss = true;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "hasContentChanged", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>hasContentChanged
|
|
8
|
+
});
|
|
9
|
+
const _crypto = /*#__PURE__*/ _interopRequireDefault(require("crypto"));
|
|
10
|
+
const _sharedState = /*#__PURE__*/ _interopRequireWildcard(require("./sharedState"));
|
|
11
|
+
function _interopRequireDefault(obj) {
|
|
12
|
+
return obj && obj.__esModule ? obj : {
|
|
13
|
+
default: obj
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
17
|
+
if (typeof WeakMap !== "function") return null;
|
|
18
|
+
var cacheBabelInterop = new WeakMap();
|
|
19
|
+
var cacheNodeInterop = new WeakMap();
|
|
20
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
21
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
22
|
+
})(nodeInterop);
|
|
23
|
+
}
|
|
24
|
+
function _interopRequireWildcard(obj, nodeInterop) {
|
|
25
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
26
|
+
return obj;
|
|
27
|
+
}
|
|
28
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
29
|
+
return {
|
|
30
|
+
default: obj
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
34
|
+
if (cache && cache.has(obj)) {
|
|
35
|
+
return cache.get(obj);
|
|
36
|
+
}
|
|
37
|
+
var newObj = {};
|
|
38
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
39
|
+
for(var key in obj){
|
|
40
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
41
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
42
|
+
if (desc && (desc.get || desc.set)) {
|
|
43
|
+
Object.defineProperty(newObj, key, desc);
|
|
44
|
+
} else {
|
|
45
|
+
newObj[key] = obj[key];
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
newObj.default = obj;
|
|
50
|
+
if (cache) {
|
|
51
|
+
cache.set(obj, newObj);
|
|
52
|
+
}
|
|
53
|
+
return newObj;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Calculate the hash of a string.
|
|
57
|
+
*
|
|
58
|
+
* This doesn't need to be cryptographically secure or
|
|
59
|
+
* anything like that since it's used only to detect
|
|
60
|
+
* when the CSS changes to invalidate the context.
|
|
61
|
+
*
|
|
62
|
+
* This is wrapped in a try/catch because it's really dependent
|
|
63
|
+
* on how Node itself is build and the environment and OpenSSL
|
|
64
|
+
* version / build that is installed on the user's machine.
|
|
65
|
+
*
|
|
66
|
+
* Based on the environment this can just outright fail.
|
|
67
|
+
*
|
|
68
|
+
* See https://github.com/nodejs/node/issues/40455
|
|
69
|
+
*
|
|
70
|
+
* @param {string} str
|
|
71
|
+
*/ function getHash(str) {
|
|
72
|
+
try {
|
|
73
|
+
return _crypto.default.createHash("md5").update(str, "utf-8").digest("binary");
|
|
74
|
+
} catch (err) {
|
|
75
|
+
return "";
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
function hasContentChanged(sourcePath, root) {
|
|
79
|
+
let css = root.toString();
|
|
80
|
+
// We only care about files with @tailwind directives
|
|
81
|
+
// Other files use an existing context
|
|
82
|
+
if (!css.includes("@tailwind")) {
|
|
83
|
+
return false;
|
|
84
|
+
}
|
|
85
|
+
let existingHash = _sharedState.sourceHashMap.get(sourcePath);
|
|
86
|
+
let rootHash = getHash(css);
|
|
87
|
+
let didChange = existingHash !== rootHash;
|
|
88
|
+
_sharedState.sourceHashMap.set(sourcePath, rootHash);
|
|
89
|
+
return didChange;
|
|
90
|
+
}
|
|
@@ -2,19 +2,22 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
exports
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>collapseAdjacentRules
|
|
8
|
+
});
|
|
6
9
|
let comparisonMap = {
|
|
7
10
|
atrule: [
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
"name",
|
|
12
|
+
"params"
|
|
10
13
|
],
|
|
11
14
|
rule: [
|
|
12
|
-
|
|
15
|
+
"selector"
|
|
13
16
|
]
|
|
14
17
|
};
|
|
15
18
|
let types = new Set(Object.keys(comparisonMap));
|
|
16
19
|
function collapseAdjacentRules() {
|
|
17
|
-
|
|
20
|
+
function collapseRulesIn(root) {
|
|
18
21
|
let currentRule = null;
|
|
19
22
|
root.each((node)=>{
|
|
20
23
|
if (!types.has(node.type)) {
|
|
@@ -27,15 +30,30 @@ function collapseAdjacentRules() {
|
|
|
27
30
|
}
|
|
28
31
|
let properties = comparisonMap[node.type];
|
|
29
32
|
var _property, _property1;
|
|
30
|
-
if (node.type ===
|
|
33
|
+
if (node.type === "atrule" && node.name === "font-face") {
|
|
31
34
|
currentRule = node;
|
|
32
|
-
} else if (properties.every((property)=>((_property = node[property]) !== null && _property !== void 0 ? _property :
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
} else if (properties.every((property)=>((_property = node[property]) !== null && _property !== void 0 ? _property : "").replace(/\s+/g, " ") === ((_property1 = currentRule[property]) !== null && _property1 !== void 0 ? _property1 : "").replace(/\s+/g, " "))) {
|
|
36
|
+
// An AtRule may not have children (for example if we encounter duplicate @import url(…) rules)
|
|
37
|
+
if (node.nodes) {
|
|
38
|
+
currentRule.append(node.nodes);
|
|
39
|
+
}
|
|
35
40
|
node.remove();
|
|
36
41
|
} else {
|
|
37
42
|
currentRule = node;
|
|
38
43
|
}
|
|
39
44
|
});
|
|
45
|
+
// After we've collapsed adjacent rules & at-rules, we need to collapse
|
|
46
|
+
// adjacent rules & at-rules that are children of at-rules.
|
|
47
|
+
// We do not care about nesting rules because Tailwind CSS
|
|
48
|
+
// explicitly does not handle rule nesting on its own as
|
|
49
|
+
// the user is expected to use a nesting plugin
|
|
50
|
+
root.each((node)=>{
|
|
51
|
+
if (node.type === "atrule") {
|
|
52
|
+
collapseRulesIn(node);
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
return (root)=>{
|
|
57
|
+
collapseRulesIn(root);
|
|
40
58
|
};
|
|
41
59
|
}
|
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
exports
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>collapseDuplicateDeclarations
|
|
8
|
+
});
|
|
6
9
|
function collapseDuplicateDeclarations() {
|
|
7
10
|
return (root)=>{
|
|
8
11
|
root.walkRules((node)=>{
|
|
@@ -41,35 +44,35 @@ function collapseDuplicateDeclarations() {
|
|
|
41
44
|
});
|
|
42
45
|
// Drop all the duplicate declarations with the exact same value we've
|
|
43
46
|
// already seen so far.
|
|
44
|
-
for (let
|
|
45
|
-
|
|
47
|
+
for (let decl of droppable){
|
|
48
|
+
decl.remove();
|
|
46
49
|
}
|
|
47
50
|
// Analyze the declarations based on its unit, drop all the declarations
|
|
48
51
|
// with the same unit but the last one in the list.
|
|
49
52
|
for (let declarations of byProperty.values()){
|
|
50
53
|
let byUnit = new Map();
|
|
51
|
-
for (let
|
|
52
|
-
let unit = resolveUnit(
|
|
54
|
+
for (let decl1 of declarations){
|
|
55
|
+
let unit = resolveUnit(decl1.value);
|
|
53
56
|
if (unit === null) {
|
|
54
57
|
continue;
|
|
55
58
|
}
|
|
56
59
|
if (!byUnit.has(unit)) {
|
|
57
60
|
byUnit.set(unit, new Set());
|
|
58
61
|
}
|
|
59
|
-
byUnit.get(unit).add(
|
|
62
|
+
byUnit.get(unit).add(decl1);
|
|
60
63
|
}
|
|
61
64
|
for (let declarations1 of byUnit.values()){
|
|
62
65
|
// Get all but the last one
|
|
63
66
|
let removableDeclarations = Array.from(declarations1).slice(0, -1);
|
|
64
|
-
for (let
|
|
65
|
-
|
|
67
|
+
for (let decl2 of removableDeclarations){
|
|
68
|
+
decl2.remove();
|
|
66
69
|
}
|
|
67
70
|
}
|
|
68
71
|
}
|
|
69
72
|
});
|
|
70
73
|
};
|
|
71
74
|
}
|
|
72
|
-
let UNITLESS_NUMBER = Symbol(
|
|
75
|
+
let UNITLESS_NUMBER = Symbol("unitless-number");
|
|
73
76
|
function resolveUnit(input) {
|
|
74
77
|
let result = /^-?\d*.?\d+([\w%]+)?$/g.exec(input);
|
|
75
78
|
if (result) {
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
// @ts-check
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
function _export(target, all) {
|
|
7
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: all[name]
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
_export(exports, {
|
|
13
|
+
parseCandidateFiles: ()=>parseCandidateFiles,
|
|
14
|
+
resolvedChangedContent: ()=>resolvedChangedContent
|
|
15
|
+
});
|
|
16
|
+
const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
|
|
17
|
+
const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
|
|
18
|
+
const _isGlob = /*#__PURE__*/ _interopRequireDefault(require("is-glob"));
|
|
19
|
+
const _fastGlob = /*#__PURE__*/ _interopRequireDefault(require("fast-glob"));
|
|
20
|
+
const _normalizePath = /*#__PURE__*/ _interopRequireDefault(require("normalize-path"));
|
|
21
|
+
const _parseGlob = require("../util/parseGlob");
|
|
22
|
+
const _sharedState = require("./sharedState");
|
|
23
|
+
function _interopRequireDefault(obj) {
|
|
24
|
+
return obj && obj.__esModule ? obj : {
|
|
25
|
+
default: obj
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
function parseCandidateFiles(context, tailwindConfig) {
|
|
29
|
+
let files = tailwindConfig.content.files;
|
|
30
|
+
// Normalize the file globs
|
|
31
|
+
files = files.filter((filePath)=>typeof filePath === "string");
|
|
32
|
+
files = files.map(_normalizePath.default);
|
|
33
|
+
// Split into included and excluded globs
|
|
34
|
+
let tasks = _fastGlob.default.generateTasks(files);
|
|
35
|
+
/** @type {ContentPath[]} */ let included = [];
|
|
36
|
+
/** @type {ContentPath[]} */ let excluded = [];
|
|
37
|
+
for (const task of tasks){
|
|
38
|
+
included.push(...task.positive.map((filePath)=>parseFilePath(filePath, false)));
|
|
39
|
+
excluded.push(...task.negative.map((filePath)=>parseFilePath(filePath, true)));
|
|
40
|
+
}
|
|
41
|
+
let paths = [
|
|
42
|
+
...included,
|
|
43
|
+
...excluded
|
|
44
|
+
];
|
|
45
|
+
// Resolve paths relative to the config file or cwd
|
|
46
|
+
paths = resolveRelativePaths(context, paths);
|
|
47
|
+
// Resolve symlinks if possible
|
|
48
|
+
paths = paths.flatMap(resolvePathSymlinks);
|
|
49
|
+
// Update cached patterns
|
|
50
|
+
paths = paths.map(resolveGlobPattern);
|
|
51
|
+
return paths;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @param {string} filePath
|
|
56
|
+
* @param {boolean} ignore
|
|
57
|
+
* @returns {ContentPath}
|
|
58
|
+
*/ function parseFilePath(filePath, ignore) {
|
|
59
|
+
let contentPath = {
|
|
60
|
+
original: filePath,
|
|
61
|
+
base: filePath,
|
|
62
|
+
ignore,
|
|
63
|
+
pattern: filePath,
|
|
64
|
+
glob: null
|
|
65
|
+
};
|
|
66
|
+
if ((0, _isGlob.default)(filePath)) {
|
|
67
|
+
Object.assign(contentPath, (0, _parseGlob.parseGlob)(filePath));
|
|
68
|
+
}
|
|
69
|
+
return contentPath;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @param {ContentPath} contentPath
|
|
74
|
+
* @returns {ContentPath}
|
|
75
|
+
*/ function resolveGlobPattern(contentPath) {
|
|
76
|
+
// This is required for Windows support to properly pick up Glob paths.
|
|
77
|
+
// Afaik, this technically shouldn't be needed but there's probably
|
|
78
|
+
// some internal, direct path matching with a normalized path in
|
|
79
|
+
// a package which can't handle mixed directory separators
|
|
80
|
+
let base = (0, _normalizePath.default)(contentPath.base);
|
|
81
|
+
// If the user's file path contains any special characters (like parens) for instance fast-glob
|
|
82
|
+
// is like "OOOH SHINY" and treats them as such. So we have to escape the base path to fix this
|
|
83
|
+
base = _fastGlob.default.escapePath(base);
|
|
84
|
+
contentPath.pattern = contentPath.glob ? `${base}/${contentPath.glob}` : base;
|
|
85
|
+
contentPath.pattern = contentPath.ignore ? `!${contentPath.pattern}` : contentPath.pattern;
|
|
86
|
+
return contentPath;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Resolve each path relative to the config file (when possible) if the experimental flag is enabled
|
|
90
|
+
* Otherwise, resolve relative to the current working directory
|
|
91
|
+
*
|
|
92
|
+
* @param {any} context
|
|
93
|
+
* @param {ContentPath[]} contentPaths
|
|
94
|
+
* @returns {ContentPath[]}
|
|
95
|
+
*/ function resolveRelativePaths(context, contentPaths) {
|
|
96
|
+
let resolveFrom = [];
|
|
97
|
+
// Resolve base paths relative to the config file (when possible) if the experimental flag is enabled
|
|
98
|
+
if (context.userConfigPath && context.tailwindConfig.content.relative) {
|
|
99
|
+
resolveFrom = [
|
|
100
|
+
_path.default.dirname(context.userConfigPath)
|
|
101
|
+
];
|
|
102
|
+
}
|
|
103
|
+
return contentPaths.map((contentPath)=>{
|
|
104
|
+
contentPath.base = _path.default.resolve(...resolveFrom, contentPath.base);
|
|
105
|
+
return contentPath;
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Resolve the symlink for the base directory / file in each path
|
|
110
|
+
* These are added as additional dependencies to watch for changes because
|
|
111
|
+
* some tools (like webpack) will only watch the actual file or directory
|
|
112
|
+
* but not the symlink itself even in projects that use monorepos.
|
|
113
|
+
*
|
|
114
|
+
* @param {ContentPath} contentPath
|
|
115
|
+
* @returns {ContentPath[]}
|
|
116
|
+
*/ function resolvePathSymlinks(contentPath) {
|
|
117
|
+
let paths = [
|
|
118
|
+
contentPath
|
|
119
|
+
];
|
|
120
|
+
try {
|
|
121
|
+
let resolvedPath = _fs.default.realpathSync(contentPath.base);
|
|
122
|
+
if (resolvedPath !== contentPath.base) {
|
|
123
|
+
paths.push({
|
|
124
|
+
...contentPath,
|
|
125
|
+
base: resolvedPath
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
} catch {
|
|
129
|
+
// TODO: log this?
|
|
130
|
+
}
|
|
131
|
+
return paths;
|
|
132
|
+
}
|
|
133
|
+
function resolvedChangedContent(context, candidateFiles, fileModifiedMap) {
|
|
134
|
+
let changedContent = context.tailwindConfig.content.files.filter((item)=>typeof item.raw === "string").map(({ raw , extension ="html" })=>({
|
|
135
|
+
content: raw,
|
|
136
|
+
extension
|
|
137
|
+
}));
|
|
138
|
+
for (let changedFile of resolveChangedFiles(candidateFiles, fileModifiedMap)){
|
|
139
|
+
let extension = _path.default.extname(changedFile).slice(1);
|
|
140
|
+
changedContent.push({
|
|
141
|
+
file: changedFile,
|
|
142
|
+
extension
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
return changedContent;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @param {ContentPath[]} candidateFiles
|
|
150
|
+
* @param {Map<string, number>} fileModifiedMap
|
|
151
|
+
* @returns {Set<string>}
|
|
152
|
+
*/ function resolveChangedFiles(candidateFiles, fileModifiedMap) {
|
|
153
|
+
let paths = candidateFiles.map((contentPath)=>contentPath.pattern);
|
|
154
|
+
let changedFiles = new Set();
|
|
155
|
+
_sharedState.env.DEBUG && console.time("Finding changed files");
|
|
156
|
+
let files = _fastGlob.default.sync(paths, {
|
|
157
|
+
absolute: true
|
|
158
|
+
});
|
|
159
|
+
for (let file of files){
|
|
160
|
+
let prevModified = fileModifiedMap.has(file) ? fileModifiedMap.get(file) : -Infinity;
|
|
161
|
+
let modified = _fs.default.statSync(file).mtimeMs;
|
|
162
|
+
// This check is intentionally >= because we track the last modified time of context dependencies
|
|
163
|
+
// earier in the process and we want to make sure we don't miss any changes that happen
|
|
164
|
+
// when a context dependency is also a content dependency
|
|
165
|
+
// Ideally, we'd do all this tracking at one time but that is a larger refactor
|
|
166
|
+
// than we want to commit to right now, so this is a decent compromise.
|
|
167
|
+
// This should be sufficient because file modification times will be off by at least
|
|
168
|
+
// 1ms (the precision of fstat in Node) in most cases if they exist and were changed.
|
|
169
|
+
if (modified >= prevModified) {
|
|
170
|
+
changedFiles.add(file);
|
|
171
|
+
fileModifiedMap.set(file, modified);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
_sharedState.env.DEBUG && console.timeEnd("Finding changed files");
|
|
175
|
+
return changedFiles;
|
|
176
|
+
}
|