tailwindcss 3.3.0 → 3.3.2
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 +28 -1
- package/lib/cli/build/deps.js +17 -9
- package/lib/cli/build/index.js +10 -8
- package/lib/cli/build/plugin.js +27 -25
- package/lib/cli/build/utils.js +18 -8
- package/lib/cli/build/watching.js +12 -10
- package/lib/cli/help/index.js +6 -4
- package/lib/cli/index.js +4 -4
- package/lib/cli/init/index.js +8 -6
- package/lib/cli-peer-dependencies.js +12 -4
- package/lib/cli.js +1 -1
- package/lib/corePluginList.js +3 -1
- package/lib/corePlugins.js +41 -35
- package/lib/featureFlags.js +14 -9
- package/lib/index.js +1 -5
- package/lib/lib/cacheInvalidation.js +7 -5
- package/lib/lib/collapseAdjacentRules.js +3 -1
- package/lib/lib/collapseDuplicateDeclarations.js +10 -8
- package/lib/lib/content.js +18 -14
- package/lib/lib/defaultExtractor.js +6 -4
- package/lib/lib/detectNesting.js +3 -1
- package/lib/lib/evaluateTailwindFunctions.js +18 -16
- package/lib/lib/expandApplyAtRules.js +39 -32
- package/lib/lib/expandTailwindAtRules.js +15 -13
- package/lib/lib/findAtConfigPath.js +6 -4
- package/lib/lib/generateRules.js +37 -31
- package/lib/lib/getModuleDependencies.js +10 -8
- package/lib/lib/load-config.js +14 -8
- package/lib/lib/normalizeTailwindDirectives.js +5 -3
- package/lib/lib/offsets.js +7 -5
- package/lib/lib/partitionApplyAtRules.js +3 -1
- package/lib/lib/regex.js +21 -7
- package/lib/lib/remap-bitfield.js +3 -1
- package/lib/lib/resolveDefaultsAtRules.js +24 -20
- package/lib/lib/setupContextUtils.js +67 -57
- package/lib/lib/setupTrackingContext.js +26 -24
- package/lib/lib/sharedState.js +32 -23
- package/lib/lib/substituteScreenAtRules.js +5 -3
- package/lib/oxide/cli/build/deps.js +16 -8
- package/lib/oxide/cli/build/index.js +6 -4
- package/lib/oxide/cli/build/plugin.js +19 -17
- package/lib/oxide/cli/build/utils.js +18 -8
- package/lib/oxide/cli/build/watching.js +10 -8
- package/lib/oxide/cli/help/index.js +6 -4
- package/lib/oxide/cli/index.js +4 -4
- package/lib/oxide/cli/init/index.js +6 -4
- package/lib/plugin.js +7 -7
- package/lib/postcss-plugins/nesting/index.js +3 -1
- package/lib/postcss-plugins/nesting/plugin.js +8 -6
- package/lib/processTailwindFeatures.js +14 -12
- package/lib/public/colors.js +5 -3
- package/lib/public/create-plugin.js +5 -3
- package/lib/public/default-config.js +6 -4
- package/lib/public/default-theme.js +6 -4
- package/lib/public/load-config.js +5 -3
- package/lib/public/resolve-config.js +6 -4
- package/lib/util/applyImportantSelector.js +27 -13
- package/lib/util/bigSign.js +3 -1
- package/lib/util/buildMediaQuery.js +3 -1
- package/lib/util/cloneDeep.js +3 -1
- package/lib/util/cloneNodes.js +3 -1
- package/lib/util/color.js +10 -6
- package/lib/util/colorNames.js +752 -0
- package/lib/util/configurePlugins.js +3 -1
- package/lib/util/createPlugin.js +3 -1
- package/lib/util/createUtilityPlugin.js +5 -3
- package/lib/util/dataTypes.js +45 -15
- package/lib/util/defaults.js +6 -4
- package/lib/util/escapeClassName.js +7 -5
- package/lib/util/escapeCommas.js +3 -1
- package/lib/util/flattenColorPalette.js +3 -1
- package/lib/util/formatVariantSelector.js +28 -106
- package/lib/util/getAllConfigs.js +6 -4
- package/lib/util/hashConfig.js +6 -4
- package/lib/util/isKeyframeRule.js +3 -1
- package/lib/util/isPlainObject.js +3 -1
- package/lib/util/isSyntacticallyValidPropertyValue.js +3 -1
- package/lib/util/log.js +8 -4
- package/lib/util/nameClass.js +12 -6
- package/lib/util/negateValue.js +3 -1
- package/lib/util/normalizeConfig.js +7 -19
- package/lib/util/normalizeScreens.js +12 -4
- package/lib/util/parseAnimationValue.js +3 -1
- package/lib/util/parseBoxShadowValue.js +6 -2
- package/lib/util/parseDependency.js +3 -1
- package/lib/util/parseGlob.js +6 -4
- package/lib/util/parseObjectStyles.js +9 -7
- package/lib/util/pluginUtils.js +30 -18
- package/lib/util/prefixSelector.js +6 -4
- package/lib/util/pseudoElements.js +225 -0
- package/lib/util/removeAlphaVariables.js +3 -1
- package/lib/util/resolveConfig.js +10 -8
- package/lib/util/resolveConfigPath.js +9 -5
- package/lib/util/responsive.js +6 -4
- package/lib/util/splitAtTopLevelOnly.js +3 -1
- package/lib/util/tap.js +3 -1
- package/lib/util/toColorValue.js +3 -1
- package/lib/util/toPath.js +3 -1
- package/lib/util/transformThemeValue.js +6 -4
- package/lib/util/validateConfig.js +16 -3
- package/lib/util/validateFormalSyntax.js +3 -1
- package/lib/util/withAlphaVariable.js +6 -2
- package/package.json +30 -34
- package/peers/index.js +65828 -48819
- package/src/cli/build/plugin.js +1 -1
- package/src/cli.js +1 -1
- package/src/corePlugins.js +16 -17
- package/src/featureFlags.js +2 -3
- package/src/index.js +1 -5
- package/src/lib/defaultExtractor.js +1 -1
- package/src/lib/expandApplyAtRules.js +6 -0
- package/src/lib/expandTailwindAtRules.js +3 -3
- package/src/lib/load-config.ts +9 -5
- package/src/lib/setupTrackingContext.js +1 -1
- package/src/lib/sharedState.js +13 -19
- package/src/oxide/cli/build/plugin.ts +1 -1
- package/src/plugin.js +1 -1
- package/src/util/applyImportantSelector.js +20 -12
- package/src/util/color.js +1 -1
- package/src/util/colorNames.js +150 -0
- package/src/util/formatVariantSelector.js +2 -98
- package/src/util/normalizeConfig.js +0 -17
- package/src/util/pluginUtils.js +1 -5
- package/src/util/pseudoElements.js +170 -0
- package/src/util/validateConfig.js +13 -0
- package/types/config.d.ts +1 -6
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- Nothing yet!
|
|
11
11
|
|
|
12
|
+
## [3.3.2] - 2023-04-25
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Don’t move unknown pseudo-elements to the end of selectors ([#10943](https://github.com/tailwindlabs/tailwindcss/pull/10943), [#10962](https://github.com/tailwindlabs/tailwindcss/pull/10962))
|
|
17
|
+
- Inherit gradient stop positions when using variants ([#11002](https://github.com/tailwindlabs/tailwindcss/pull/11002))
|
|
18
|
+
- Honor default `to` position of gradient when using implicit transparent colors ([#11002](https://github.com/tailwindlabs/tailwindcss/pull/11002))
|
|
19
|
+
- Ensure `@tailwindcss/oxide` doesn't leak in the stable engine ([#10988](https://github.com/tailwindlabs/tailwindcss/pull/10988))
|
|
20
|
+
- Ensure multiple `theme(spacing[5])` calls with bracket notation in arbitrary properties work ([#11039](https://github.com/tailwindlabs/tailwindcss/pull/11039))
|
|
21
|
+
- Normalize arbitrary modifiers ([#11057](https://github.com/tailwindlabs/tailwindcss/pull/11057))
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Drop support for Node.js v12 ([#11089](https://github.com/tailwindlabs/tailwindcss/pull/11089))
|
|
26
|
+
|
|
27
|
+
## [3.3.1] - 2023-03-30
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- Fix edge case bug when loading a TypeScript config file with webpack ([#10898](https://github.com/tailwindlabs/tailwindcss/pull/10898))
|
|
32
|
+
- Fix variant, `@apply`, and `important` selectors when using `:is()` or `:has()` with pseudo-elements ([#10903](https://github.com/tailwindlabs/tailwindcss/pull/10903))
|
|
33
|
+
- Fix `safelist` config types ([#10901](https://github.com/tailwindlabs/tailwindcss/pull/10901))
|
|
34
|
+
- Fix build errors caused by `@tailwindcss/line-clamp` warning ([#10915](https://github.com/tailwindlabs/tailwindcss/pull/10915), [#10919](https://github.com/tailwindlabs/tailwindcss/pull/10919))
|
|
35
|
+
- Fix "process is not defined" error ([#10919](https://github.com/tailwindlabs/tailwindcss/pull/10919))
|
|
36
|
+
|
|
12
37
|
## [3.3.0] - 2023-03-27
|
|
13
38
|
|
|
14
39
|
### Added
|
|
@@ -2211,7 +2236,9 @@ No release notes
|
|
|
2211
2236
|
|
|
2212
2237
|
- Everything!
|
|
2213
2238
|
|
|
2214
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.
|
|
2239
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.2...HEAD
|
|
2240
|
+
[3.3.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.1...v3.3.2
|
|
2241
|
+
[3.3.1]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.0...v3.3.1
|
|
2215
2242
|
[3.3.0]: https://github.com/tailwindlabs/tailwindcss/compare/v3.2.7...v3.3.0
|
|
2216
2243
|
[3.2.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.2.6...v3.2.7
|
|
2217
2244
|
[3.2.6]: https://github.com/tailwindlabs/tailwindcss/compare/v3.2.5...v3.2.6
|
package/lib/cli/build/deps.js
CHANGED
|
@@ -10,25 +10,33 @@ function _export(target, all) {
|
|
|
10
10
|
});
|
|
11
11
|
}
|
|
12
12
|
_export(exports, {
|
|
13
|
-
loadPostcss: ()
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
loadPostcss: function() {
|
|
14
|
+
return loadPostcss;
|
|
15
|
+
},
|
|
16
|
+
loadPostcssImport: function() {
|
|
17
|
+
return loadPostcssImport;
|
|
18
|
+
},
|
|
19
|
+
loadCssNano: function() {
|
|
20
|
+
return loadCssNano;
|
|
21
|
+
},
|
|
22
|
+
loadAutoprefixer: function() {
|
|
23
|
+
return loadAutoprefixer;
|
|
24
|
+
}
|
|
17
25
|
});
|
|
18
|
-
const
|
|
26
|
+
const _index = require("../../../peers/index.js");
|
|
19
27
|
function loadPostcss() {
|
|
20
28
|
// Try to load a local `postcss` version first
|
|
21
29
|
try {
|
|
22
30
|
return require("postcss");
|
|
23
31
|
} catch {}
|
|
24
|
-
return (0,
|
|
32
|
+
return (0, _index.lazyPostcss)();
|
|
25
33
|
}
|
|
26
34
|
function loadPostcssImport() {
|
|
27
35
|
// Try to load a local `postcss-import` version first
|
|
28
36
|
try {
|
|
29
37
|
return require("postcss-import");
|
|
30
38
|
} catch {}
|
|
31
|
-
return (0,
|
|
39
|
+
return (0, _index.lazyPostcssImport)();
|
|
32
40
|
}
|
|
33
41
|
function loadCssNano() {
|
|
34
42
|
let options = {
|
|
@@ -43,12 +51,12 @@ function loadCssNano() {
|
|
|
43
51
|
try {
|
|
44
52
|
return require("cssnano");
|
|
45
53
|
} catch {}
|
|
46
|
-
return (0,
|
|
54
|
+
return (0, _index.lazyCssnano)()(options);
|
|
47
55
|
}
|
|
48
56
|
function loadAutoprefixer() {
|
|
49
57
|
// Try to load a local `autoprefixer` version first
|
|
50
58
|
try {
|
|
51
59
|
return require("autoprefixer");
|
|
52
60
|
} catch {}
|
|
53
|
-
return (0,
|
|
61
|
+
return (0, _index.lazyAutoprefixer)();
|
|
54
62
|
}
|
package/lib/cli/build/index.js
CHANGED
|
@@ -5,13 +5,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "build", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: ()
|
|
8
|
+
get: function() {
|
|
9
|
+
return build;
|
|
10
|
+
}
|
|
9
11
|
});
|
|
10
|
-
const _fs = /*#__PURE__*/
|
|
11
|
-
const _path = /*#__PURE__*/
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
function
|
|
12
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
13
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
14
|
+
const _resolveConfigPath = require("../../util/resolveConfigPath.js");
|
|
15
|
+
const _plugin = require("./plugin.js");
|
|
16
|
+
function _interop_require_default(obj) {
|
|
15
17
|
return obj && obj.__esModule ? obj : {
|
|
16
18
|
default: obj
|
|
17
19
|
};
|
|
@@ -33,8 +35,8 @@ async function build(args) {
|
|
|
33
35
|
process.exit(9);
|
|
34
36
|
}
|
|
35
37
|
// TODO: Reference the @config path here if exists
|
|
36
|
-
let configPath = args["--config"] ? args["--config"] : (0,
|
|
37
|
-
let processor = await (0,
|
|
38
|
+
let configPath = args["--config"] ? args["--config"] : (0, _resolveConfigPath.resolveDefaultConfigPath)();
|
|
39
|
+
let processor = await (0, _plugin.createProcessor)(args, configPath);
|
|
38
40
|
if (shouldWatch) {
|
|
39
41
|
// Abort the watcher if stdin is closed to avoid zombie processes
|
|
40
42
|
// You can disable this behavior with --watch=always
|
package/lib/cli/build/plugin.js
CHANGED
|
@@ -5,29 +5,31 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "createProcessor", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: ()
|
|
8
|
+
get: function() {
|
|
9
|
+
return createProcessor;
|
|
10
|
+
}
|
|
9
11
|
});
|
|
10
|
-
const _path = /*#__PURE__*/
|
|
11
|
-
const _fs = /*#__PURE__*/
|
|
12
|
-
const
|
|
12
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
13
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
14
|
+
const _postcssloadconfig = /*#__PURE__*/ _interop_require_default(require("postcss-load-config"));
|
|
13
15
|
const _lilconfig = require("lilconfig");
|
|
14
|
-
const _plugins = /*#__PURE__*/
|
|
16
|
+
const _plugins = /*#__PURE__*/ _interop_require_default(require("postcss-load-config/src/plugins" // Little bit scary, looking at private/internal API
|
|
15
17
|
));
|
|
16
|
-
const _options = /*#__PURE__*/
|
|
18
|
+
const _options = /*#__PURE__*/ _interop_require_default(require("postcss-load-config/src/options" // Little bit scary, looking at private/internal API
|
|
17
19
|
));
|
|
18
|
-
const _processTailwindFeatures = /*#__PURE__*/
|
|
20
|
+
const _processTailwindFeatures = /*#__PURE__*/ _interop_require_default(require("../../processTailwindFeatures"));
|
|
19
21
|
const _deps = require("./deps");
|
|
20
22
|
const _utils = require("./utils");
|
|
21
23
|
const _sharedState = require("../../lib/sharedState");
|
|
22
|
-
const
|
|
23
|
-
const
|
|
24
|
-
const
|
|
25
|
-
const
|
|
26
|
-
const
|
|
27
|
-
const _log = /*#__PURE__*/
|
|
28
|
-
const
|
|
29
|
-
const _getModuleDependencies = /*#__PURE__*/
|
|
30
|
-
function
|
|
24
|
+
const _resolveConfig = /*#__PURE__*/ _interop_require_default(require("../../../resolveConfig.js"));
|
|
25
|
+
const _content = require("../../lib/content.js");
|
|
26
|
+
const _watching = require("./watching.js");
|
|
27
|
+
const _fastglob = /*#__PURE__*/ _interop_require_default(require("fast-glob"));
|
|
28
|
+
const _findAtConfigPath = require("../../lib/findAtConfigPath.js");
|
|
29
|
+
const _log = /*#__PURE__*/ _interop_require_default(require("../../util/log"));
|
|
30
|
+
const _loadconfig = require("../../lib/load-config");
|
|
31
|
+
const _getModuleDependencies = /*#__PURE__*/ _interop_require_default(require("../../lib/getModuleDependencies"));
|
|
32
|
+
function _interop_require_default(obj) {
|
|
31
33
|
return obj && obj.__esModule ? obj : {
|
|
32
34
|
default: obj
|
|
33
35
|
};
|
|
@@ -55,7 +57,7 @@ function _interopRequireDefault(obj) {
|
|
|
55
57
|
plugins: (0, _plugins.default)(config, file),
|
|
56
58
|
options: (0, _options.default)(config, file)
|
|
57
59
|
};
|
|
58
|
-
})() : await (0,
|
|
60
|
+
})() : await (0, _postcssloadconfig.default)();
|
|
59
61
|
let configPlugins = config.plugins;
|
|
60
62
|
let configPluginTailwindIdx = configPlugins.findIndex((plugin)=>{
|
|
61
63
|
if (typeof plugin === "function" && plugin.name === "tailwindcss") {
|
|
@@ -115,7 +117,7 @@ let state = {
|
|
|
115
117
|
/** @type {import('../../lib/content.js').ContentPath[]} */ contentPaths: [],
|
|
116
118
|
refreshContentPaths () {
|
|
117
119
|
var _this_context;
|
|
118
|
-
this.contentPaths = (0,
|
|
120
|
+
this.contentPaths = (0, _content.parseCandidateFiles)(this.context, (_this_context = this.context) === null || _this_context === void 0 ? void 0 : _this_context.tailwindConfig);
|
|
119
121
|
},
|
|
120
122
|
get config () {
|
|
121
123
|
return this.context.tailwindConfig;
|
|
@@ -130,7 +132,7 @@ let state = {
|
|
|
130
132
|
if (this.watcher && configPath) {
|
|
131
133
|
this.refreshConfigDependencies();
|
|
132
134
|
}
|
|
133
|
-
let config = (0,
|
|
135
|
+
let config = (0, _loadconfig.loadConfig)(configPath);
|
|
134
136
|
let dependencies = (0, _getModuleDependencies.default)(configPath);
|
|
135
137
|
this.configBag = {
|
|
136
138
|
config,
|
|
@@ -142,7 +144,7 @@ let state = {
|
|
|
142
144
|
}
|
|
143
145
|
};
|
|
144
146
|
// @ts-ignore
|
|
145
|
-
this.configBag.config = (0,
|
|
147
|
+
this.configBag.config = (0, _resolveConfig.default)(this.configBag.config, {
|
|
146
148
|
content: {
|
|
147
149
|
files: []
|
|
148
150
|
}
|
|
@@ -163,9 +165,9 @@ let state = {
|
|
|
163
165
|
let content = [];
|
|
164
166
|
// Resolve globs from the content config
|
|
165
167
|
// TODO: When we make the postcss plugin async-capable this can become async
|
|
166
|
-
let files =
|
|
168
|
+
let files = _fastglob.default.sync(this.contentPatterns.all);
|
|
167
169
|
for (let file of files){
|
|
168
|
-
if (
|
|
170
|
+
if (false) {
|
|
169
171
|
content.push({
|
|
170
172
|
file,
|
|
171
173
|
extension: _path.default.extname(file).slice(1)
|
|
@@ -195,8 +197,8 @@ let state = {
|
|
|
195
197
|
return this.context;
|
|
196
198
|
}
|
|
197
199
|
_sharedState.env.DEBUG && console.time("Searching for config");
|
|
198
|
-
var
|
|
199
|
-
let configPath = (
|
|
200
|
+
var _findAtConfigPath1;
|
|
201
|
+
let configPath = (_findAtConfigPath1 = (0, _findAtConfigPath.findAtConfigPath)(root, result)) !== null && _findAtConfigPath1 !== void 0 ? _findAtConfigPath1 : cliConfigPath;
|
|
200
202
|
_sharedState.env.DEBUG && console.timeEnd("Searching for config");
|
|
201
203
|
_sharedState.env.DEBUG && console.time("Loading config");
|
|
202
204
|
let config = this.loadConfig(configPath, content);
|
|
@@ -351,7 +353,7 @@ async function createProcessor(args, cliConfigPath) {
|
|
|
351
353
|
return {
|
|
352
354
|
build,
|
|
353
355
|
watch: async ()=>{
|
|
354
|
-
state.watcher = (0,
|
|
356
|
+
state.watcher = (0, _watching.createWatcher)(args, {
|
|
355
357
|
state,
|
|
356
358
|
/**
|
|
357
359
|
* @param {{file: string, content(): Promise<string>, extension: string}[]} changes
|
package/lib/cli/build/utils.js
CHANGED
|
@@ -10,15 +10,25 @@ function _export(target, all) {
|
|
|
10
10
|
});
|
|
11
11
|
}
|
|
12
12
|
_export(exports, {
|
|
13
|
-
indentRecursive: ()
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
indentRecursive: function() {
|
|
14
|
+
return indentRecursive;
|
|
15
|
+
},
|
|
16
|
+
formatNodes: function() {
|
|
17
|
+
return formatNodes;
|
|
18
|
+
},
|
|
19
|
+
readFileWithRetries: function() {
|
|
20
|
+
return readFileWithRetries;
|
|
21
|
+
},
|
|
22
|
+
drainStdin: function() {
|
|
23
|
+
return drainStdin;
|
|
24
|
+
},
|
|
25
|
+
outputFile: function() {
|
|
26
|
+
return outputFile;
|
|
27
|
+
}
|
|
18
28
|
});
|
|
19
|
-
const _fs = /*#__PURE__*/
|
|
20
|
-
const _path = /*#__PURE__*/
|
|
21
|
-
function
|
|
29
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
30
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
31
|
+
function _interop_require_default(obj) {
|
|
22
32
|
return obj && obj.__esModule ? obj : {
|
|
23
33
|
default: obj
|
|
24
34
|
};
|
|
@@ -5,15 +5,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "createWatcher", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: ()
|
|
8
|
+
get: function() {
|
|
9
|
+
return createWatcher;
|
|
10
|
+
}
|
|
9
11
|
});
|
|
10
|
-
const _chokidar = /*#__PURE__*/
|
|
11
|
-
const _fs = /*#__PURE__*/
|
|
12
|
-
const _micromatch = /*#__PURE__*/
|
|
13
|
-
const
|
|
14
|
-
const _path = /*#__PURE__*/
|
|
15
|
-
const
|
|
16
|
-
function
|
|
12
|
+
const _chokidar = /*#__PURE__*/ _interop_require_default(require("chokidar"));
|
|
13
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
14
|
+
const _micromatch = /*#__PURE__*/ _interop_require_default(require("micromatch"));
|
|
15
|
+
const _normalizepath = /*#__PURE__*/ _interop_require_default(require("normalize-path"));
|
|
16
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
17
|
+
const _utils = require("./utils.js");
|
|
18
|
+
function _interop_require_default(obj) {
|
|
17
19
|
return obj && obj.__esModule ? obj : {
|
|
18
20
|
default: obj
|
|
19
21
|
};
|
|
@@ -111,7 +113,7 @@ function createWatcher(args, { state , rebuild }) {
|
|
|
111
113
|
// 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
114
|
// TODO: An an optimization we should allow removal when the config changes
|
|
113
115
|
watcher.on("unlink", (file)=>{
|
|
114
|
-
file = (0,
|
|
116
|
+
file = (0, _normalizepath.default)(file);
|
|
115
117
|
// Only re-add the file if it's not covered by a dynamic pattern
|
|
116
118
|
if (!_micromatch.default.some([
|
|
117
119
|
file
|
|
@@ -150,7 +152,7 @@ function createWatcher(args, { state , rebuild }) {
|
|
|
150
152
|
// We need to read the file as early as possible outside of the chain
|
|
151
153
|
// because it may be gone by the time we get to it. doing the read
|
|
152
154
|
// immediately increases the chance that the file is still there
|
|
153
|
-
let content = await (0,
|
|
155
|
+
let content = await (0, _utils.readFileWithRetries)(_path.default.resolve(filePath));
|
|
154
156
|
if (content === undefined) {
|
|
155
157
|
return;
|
|
156
158
|
}
|
package/lib/cli/help/index.js
CHANGED
|
@@ -5,10 +5,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "help", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: ()
|
|
8
|
+
get: function() {
|
|
9
|
+
return help;
|
|
10
|
+
}
|
|
9
11
|
});
|
|
10
|
-
const
|
|
11
|
-
function
|
|
12
|
+
const _packagejson = /*#__PURE__*/ _interop_require_default(require("../../../package.json"));
|
|
13
|
+
function _interop_require_default(obj) {
|
|
12
14
|
return obj && obj.__esModule ? obj : {
|
|
13
15
|
default: obj
|
|
14
16
|
};
|
|
@@ -17,7 +19,7 @@ function help({ message , usage , commands , options }) {
|
|
|
17
19
|
let indent = 2;
|
|
18
20
|
// Render header
|
|
19
21
|
console.log();
|
|
20
|
-
console.log(`${
|
|
22
|
+
console.log(`${_packagejson.default.name} v${_packagejson.default.version}`);
|
|
21
23
|
// Render message
|
|
22
24
|
if (message) {
|
|
23
25
|
console.log();
|
package/lib/cli/index.js
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
const _path = /*#__PURE__*/
|
|
7
|
-
const _arg = /*#__PURE__*/
|
|
8
|
-
const _fs = /*#__PURE__*/
|
|
6
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
7
|
+
const _arg = /*#__PURE__*/ _interop_require_default(require("arg"));
|
|
8
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
9
9
|
const _build = require("./build");
|
|
10
10
|
const _help = require("./help");
|
|
11
11
|
const _init = require("./init");
|
|
12
|
-
function
|
|
12
|
+
function _interop_require_default(obj) {
|
|
13
13
|
return obj && obj.__esModule ? obj : {
|
|
14
14
|
default: obj
|
|
15
15
|
};
|
package/lib/cli/init/index.js
CHANGED
|
@@ -5,11 +5,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "init", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: ()
|
|
8
|
+
get: function() {
|
|
9
|
+
return init;
|
|
10
|
+
}
|
|
9
11
|
});
|
|
10
|
-
const _fs = /*#__PURE__*/
|
|
11
|
-
const _path = /*#__PURE__*/
|
|
12
|
-
function
|
|
12
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
13
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
14
|
+
function _interop_require_default(obj) {
|
|
13
15
|
return obj && obj.__esModule ? obj : {
|
|
14
16
|
default: obj
|
|
15
17
|
};
|
|
@@ -47,8 +49,8 @@ function init(args) {
|
|
|
47
49
|
if (_fs.default.existsSync(postcssConfigLocation)) {
|
|
48
50
|
messages.push(`${_path.default.basename(postcssConfigLocation)} already exists.`);
|
|
49
51
|
} else {
|
|
50
|
-
let
|
|
51
|
-
_fs.default.writeFileSync(postcssConfigLocation,
|
|
52
|
+
let stubFile = _fs.default.readFileSync(isProjectESM ? _path.default.resolve(__dirname, "../../../stubs/postcss.config.js") : _path.default.resolve(__dirname, "../../../stubs/postcss.config.cjs"), "utf8");
|
|
53
|
+
_fs.default.writeFileSync(postcssConfigLocation, stubFile, "utf8");
|
|
52
54
|
messages.push(`Created PostCSS config file: ${_path.default.basename(postcssConfigLocation)}`);
|
|
53
55
|
}
|
|
54
56
|
}
|
|
@@ -9,10 +9,18 @@ function _export(target, all) {
|
|
|
9
9
|
});
|
|
10
10
|
}
|
|
11
11
|
_export(exports, {
|
|
12
|
-
lazyPostcss: ()
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
lazyPostcss: function() {
|
|
13
|
+
return lazyPostcss;
|
|
14
|
+
},
|
|
15
|
+
lazyPostcssImport: function() {
|
|
16
|
+
return lazyPostcssImport;
|
|
17
|
+
},
|
|
18
|
+
lazyAutoprefixer: function() {
|
|
19
|
+
return lazyAutoprefixer;
|
|
20
|
+
},
|
|
21
|
+
lazyCssnano: function() {
|
|
22
|
+
return lazyCssnano;
|
|
23
|
+
}
|
|
16
24
|
});
|
|
17
25
|
function lazyPostcss() {
|
|
18
26
|
return require("postcss");
|
package/lib/cli.js
CHANGED
package/lib/corePluginList.js
CHANGED
package/lib/corePlugins.js
CHANGED
|
@@ -9,30 +9,33 @@ function _export(target, all) {
|
|
|
9
9
|
});
|
|
10
10
|
}
|
|
11
11
|
_export(exports, {
|
|
12
|
-
variantPlugins: ()
|
|
13
|
-
|
|
12
|
+
variantPlugins: function() {
|
|
13
|
+
return variantPlugins;
|
|
14
|
+
},
|
|
15
|
+
corePlugins: function() {
|
|
16
|
+
return corePlugins;
|
|
17
|
+
}
|
|
14
18
|
});
|
|
15
|
-
const _fs = /*#__PURE__*/
|
|
16
|
-
const _path = /*#__PURE__*/
|
|
17
|
-
const _postcss = /*#__PURE__*/
|
|
18
|
-
const
|
|
19
|
-
const
|
|
20
|
-
const
|
|
21
|
-
const
|
|
22
|
-
const
|
|
23
|
-
const
|
|
24
|
-
const
|
|
25
|
-
const
|
|
26
|
-
const
|
|
27
|
-
const
|
|
28
|
-
const
|
|
29
|
-
const _log = /*#__PURE__*/ _interopRequireDefault(require("./util/log"));
|
|
19
|
+
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
20
|
+
const _path = /*#__PURE__*/ _interop_require_wildcard(require("path"));
|
|
21
|
+
const _postcss = /*#__PURE__*/ _interop_require_default(require("postcss"));
|
|
22
|
+
const _createUtilityPlugin = /*#__PURE__*/ _interop_require_default(require("./util/createUtilityPlugin"));
|
|
23
|
+
const _buildMediaQuery = /*#__PURE__*/ _interop_require_default(require("./util/buildMediaQuery"));
|
|
24
|
+
const _escapeClassName = /*#__PURE__*/ _interop_require_default(require("./util/escapeClassName"));
|
|
25
|
+
const _parseAnimationValue = /*#__PURE__*/ _interop_require_default(require("./util/parseAnimationValue"));
|
|
26
|
+
const _flattenColorPalette = /*#__PURE__*/ _interop_require_default(require("./util/flattenColorPalette"));
|
|
27
|
+
const _withAlphaVariable = /*#__PURE__*/ _interop_require_wildcard(require("./util/withAlphaVariable"));
|
|
28
|
+
const _toColorValue = /*#__PURE__*/ _interop_require_default(require("./util/toColorValue"));
|
|
29
|
+
const _isPlainObject = /*#__PURE__*/ _interop_require_default(require("./util/isPlainObject"));
|
|
30
|
+
const _transformThemeValue = /*#__PURE__*/ _interop_require_default(require("./util/transformThemeValue"));
|
|
31
|
+
const _packagejson = require("../package.json");
|
|
32
|
+
const _log = /*#__PURE__*/ _interop_require_default(require("./util/log"));
|
|
30
33
|
const _normalizeScreens = require("./util/normalizeScreens");
|
|
31
34
|
const _parseBoxShadowValue = require("./util/parseBoxShadowValue");
|
|
32
35
|
const _removeAlphaVariables = require("./util/removeAlphaVariables");
|
|
33
36
|
const _featureFlags = require("./featureFlags");
|
|
34
37
|
const _dataTypes = require("./util/dataTypes");
|
|
35
|
-
function
|
|
38
|
+
function _interop_require_default(obj) {
|
|
36
39
|
return obj && obj.__esModule ? obj : {
|
|
37
40
|
default: obj
|
|
38
41
|
};
|
|
@@ -45,7 +48,7 @@ function _getRequireWildcardCache(nodeInterop) {
|
|
|
45
48
|
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
46
49
|
})(nodeInterop);
|
|
47
50
|
}
|
|
48
|
-
function
|
|
51
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
49
52
|
if (!nodeInterop && obj && obj.__esModule) {
|
|
50
53
|
return obj;
|
|
51
54
|
}
|
|
@@ -378,11 +381,11 @@ let variantPlugins = {
|
|
|
378
381
|
});
|
|
379
382
|
// screens and min-* are sorted together when they can be
|
|
380
383
|
let id = "min-screens";
|
|
381
|
-
for (let
|
|
382
|
-
addVariant(
|
|
384
|
+
for (let screen of screens){
|
|
385
|
+
addVariant(screen.name, `@media ${(0, _buildMediaQuery.default)(screen)}`, {
|
|
383
386
|
id,
|
|
384
387
|
sort: areSimpleScreens && screensUseConsistentUnits ? minSort : undefined,
|
|
385
|
-
value:
|
|
388
|
+
value: screen
|
|
386
389
|
});
|
|
387
390
|
}
|
|
388
391
|
matchVariant("min", buildScreenVariant("min"), {
|
|
@@ -484,7 +487,7 @@ let corePlugins = {
|
|
|
484
487
|
let preflightStyles = _postcss.default.parse(_fs.default.readFileSync(_path.join(__dirname, "./css/preflight.css"), "utf8"));
|
|
485
488
|
addBase([
|
|
486
489
|
_postcss.default.comment({
|
|
487
|
-
text: `! tailwindcss v${
|
|
490
|
+
text: `! tailwindcss v${_packagejson.version} | MIT License | https://tailwindcss.com`
|
|
488
491
|
}),
|
|
489
492
|
...preflightStyles.nodes
|
|
490
493
|
]);
|
|
@@ -1936,7 +1939,7 @@ let corePlugins = {
|
|
|
1936
1939
|
matchUtilities({
|
|
1937
1940
|
"space-x": (value)=>{
|
|
1938
1941
|
value = value === "0" ? "0px" : value;
|
|
1939
|
-
if (
|
|
1942
|
+
if (false) {
|
|
1940
1943
|
return {
|
|
1941
1944
|
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1942
1945
|
"--tw-space-x-reverse": "0",
|
|
@@ -1980,7 +1983,7 @@ let corePlugins = {
|
|
|
1980
1983
|
matchUtilities({
|
|
1981
1984
|
"divide-x": (value)=>{
|
|
1982
1985
|
value = value === "0" ? "0px" : value;
|
|
1983
|
-
if (
|
|
1986
|
+
if (false) {
|
|
1984
1987
|
return {
|
|
1985
1988
|
"& > :not([hidden]) ~ :not([hidden])": {
|
|
1986
1989
|
"@defaults border-width": {},
|
|
@@ -2732,7 +2735,12 @@ let corePlugins = {
|
|
|
2732
2735
|
function transparentTo(value) {
|
|
2733
2736
|
return (0, _withAlphaVariable.withAlphaValue)(value, 0, "rgb(255 255 255 / 0)");
|
|
2734
2737
|
}
|
|
2735
|
-
return function({ matchUtilities , theme }) {
|
|
2738
|
+
return function({ matchUtilities , theme , addDefaults }) {
|
|
2739
|
+
addDefaults("gradient-color-stops", {
|
|
2740
|
+
"--tw-gradient-from-position": " ",
|
|
2741
|
+
"--tw-gradient-via-position": " ",
|
|
2742
|
+
"--tw-gradient-to-position": " "
|
|
2743
|
+
});
|
|
2736
2744
|
let options = {
|
|
2737
2745
|
values: (0, _flattenColorPalette.default)(theme("gradientColorStops")),
|
|
2738
2746
|
type: [
|
|
@@ -2751,10 +2759,9 @@ let corePlugins = {
|
|
|
2751
2759
|
from: (value)=>{
|
|
2752
2760
|
let transparentToValue = transparentTo(value);
|
|
2753
2761
|
return {
|
|
2754
|
-
"
|
|
2755
|
-
"--tw-gradient-from
|
|
2756
|
-
"--tw-gradient-to": `${transparentToValue}
|
|
2757
|
-
"--tw-gradient-to-position": " ",
|
|
2762
|
+
"@defaults gradient-color-stops": {},
|
|
2763
|
+
"--tw-gradient-from": `${(0, _toColorValue.default)(value)} var(--tw-gradient-from-position)`,
|
|
2764
|
+
"--tw-gradient-to": `${transparentToValue} var(--tw-gradient-to-position)`,
|
|
2758
2765
|
"--tw-gradient-stops": `var(--tw-gradient-from), var(--tw-gradient-to)`
|
|
2759
2766
|
};
|
|
2760
2767
|
}
|
|
@@ -2770,10 +2777,9 @@ let corePlugins = {
|
|
|
2770
2777
|
via: (value)=>{
|
|
2771
2778
|
let transparentToValue = transparentTo(value);
|
|
2772
2779
|
return {
|
|
2773
|
-
"
|
|
2780
|
+
"@defaults gradient-color-stops": {},
|
|
2774
2781
|
"--tw-gradient-to": `${transparentToValue} var(--tw-gradient-to-position)`,
|
|
2775
|
-
"--tw-gradient-
|
|
2776
|
-
"--tw-gradient-stops": `var(--tw-gradient-from), ${(0, _toColorValue.default)(value, "via")} var(--tw-gradient-via-position), var(--tw-gradient-to)`
|
|
2782
|
+
"--tw-gradient-stops": `var(--tw-gradient-from), ${(0, _toColorValue.default)(value)} var(--tw-gradient-via-position), var(--tw-gradient-to)`
|
|
2777
2783
|
};
|
|
2778
2784
|
}
|
|
2779
2785
|
}, options);
|
|
@@ -2786,8 +2792,8 @@ let corePlugins = {
|
|
|
2786
2792
|
}, positionOptions);
|
|
2787
2793
|
matchUtilities({
|
|
2788
2794
|
to: (value)=>({
|
|
2789
|
-
"
|
|
2790
|
-
"--tw-gradient-to
|
|
2795
|
+
"@defaults gradient-color-stops": {},
|
|
2796
|
+
"--tw-gradient-to": `${(0, _toColorValue.default)(value)} var(--tw-gradient-to-position)`
|
|
2791
2797
|
})
|
|
2792
2798
|
}, options);
|
|
2793
2799
|
matchUtilities({
|
package/lib/featureFlags.js
CHANGED
|
@@ -9,14 +9,19 @@ function _export(target, all) {
|
|
|
9
9
|
});
|
|
10
10
|
}
|
|
11
11
|
_export(exports, {
|
|
12
|
-
flagEnabled: ()
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
flagEnabled: function() {
|
|
13
|
+
return flagEnabled;
|
|
14
|
+
},
|
|
15
|
+
issueFlagNotices: function() {
|
|
16
|
+
return issueFlagNotices;
|
|
17
|
+
},
|
|
18
|
+
default: function() {
|
|
19
|
+
return _default;
|
|
20
|
+
}
|
|
15
21
|
});
|
|
16
|
-
const _picocolors = /*#__PURE__*/
|
|
17
|
-
const _log = /*#__PURE__*/
|
|
18
|
-
|
|
19
|
-
function _interopRequireDefault(obj) {
|
|
22
|
+
const _picocolors = /*#__PURE__*/ _interop_require_default(require("picocolors"));
|
|
23
|
+
const _log = /*#__PURE__*/ _interop_require_default(require("./util/log"));
|
|
24
|
+
function _interop_require_default(obj) {
|
|
20
25
|
return obj && obj.__esModule ? obj : {
|
|
21
26
|
default: obj
|
|
22
27
|
};
|
|
@@ -25,10 +30,10 @@ let defaults = {
|
|
|
25
30
|
optimizeUniversalDefaults: false,
|
|
26
31
|
generalizedModifiers: true,
|
|
27
32
|
get disableColorOpacityUtilitiesByDefault () {
|
|
28
|
-
return
|
|
33
|
+
return false;
|
|
29
34
|
},
|
|
30
35
|
get relativeContentPathsByDefault () {
|
|
31
|
-
return
|
|
36
|
+
return false;
|
|
32
37
|
}
|
|
33
38
|
};
|
|
34
39
|
let featureFlags = {
|