tailwindcss 0.0.0-insiders.cd17ec0 → 0.0.0-insiders.cd8f109
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 +112 -2
- package/LICENSE +1 -2
- package/lib/cli.js +17 -19
- package/lib/corePlugins.js +113 -145
- package/lib/css/preflight.css +1 -1
- package/lib/featureFlags.js +3 -4
- package/lib/lib/cacheInvalidation.js +69 -0
- package/lib/lib/collapseAdjacentRules.js +14 -1
- package/lib/lib/defaultExtractor.js +2 -0
- package/lib/lib/expandApplyAtRules.js +173 -17
- package/lib/lib/expandTailwindAtRules.js +43 -17
- package/lib/lib/generateRules.js +113 -32
- package/lib/lib/normalizeTailwindDirectives.js +2 -1
- package/lib/lib/partitionApplyAtRules.js +53 -0
- package/lib/lib/resolveDefaultsAtRules.js +6 -2
- package/lib/lib/setupContextUtils.js +101 -141
- package/lib/lib/setupTrackingContext.js +3 -3
- package/lib/lib/sharedState.js +5 -1
- package/{nesting → lib/postcss-plugins/nesting}/README.md +0 -0
- package/lib/postcss-plugins/nesting/index.js +17 -0
- package/lib/postcss-plugins/nesting/plugin.js +85 -0
- package/lib/processTailwindFeatures.js +7 -0
- package/lib/util/cloneNodes.js +12 -1
- package/lib/util/createPlugin.js +1 -2
- package/lib/util/createUtilityPlugin.js +4 -8
- package/lib/util/flattenColorPalette.js +1 -3
- package/lib/util/log.js +7 -7
- package/lib/util/normalizeConfig.js +19 -16
- package/lib/util/normalizeScreens.js +2 -4
- package/lib/util/parseBoxShadowValue.js +44 -4
- package/lib/util/pluginUtils.js +5 -12
- package/lib/util/prefixSelector.js +4 -5
- package/lib/util/resolveConfig.js +31 -18
- package/lib/util/resolveConfigPath.js +1 -2
- package/lib/util/toColorValue.js +1 -2
- package/lib/util/transformThemeValue.js +4 -8
- package/nesting/index.js +2 -12
- package/package.json +21 -24
- package/peers/index.js +3014 -4033
- package/src/cli.js +5 -3
- package/src/corePlugins.js +46 -6
- package/src/css/preflight.css +1 -1
- package/src/featureFlags.js +2 -2
- package/src/lib/cacheInvalidation.js +52 -0
- package/src/lib/collapseAdjacentRules.js +16 -1
- package/src/lib/defaultExtractor.js +2 -0
- package/src/lib/expandApplyAtRules.js +184 -11
- package/src/lib/expandTailwindAtRules.js +55 -10
- package/src/lib/generateRules.js +92 -25
- package/src/lib/normalizeTailwindDirectives.js +1 -0
- package/src/lib/partitionApplyAtRules.js +52 -0
- package/src/lib/resolveDefaultsAtRules.js +6 -2
- package/src/lib/setupContextUtils.js +60 -100
- package/src/lib/setupTrackingContext.js +3 -3
- package/src/lib/sharedState.js +2 -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/cloneNodes.js +14 -1
- package/src/util/log.js +7 -7
- package/src/util/normalizeConfig.js +12 -4
- package/src/util/parseBoxShadowValue.js +51 -3
- package/src/util/prefixSelector.js +7 -5
- package/src/util/resolveConfig.js +30 -0
- package/nesting/plugin.js +0 -41
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,106 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Prevent nesting plugin from breaking other plugins ([#7563](https://github.com/tailwindlabs/tailwindcss/pull/7563))
|
|
13
|
+
- Recursively collapse adjacent rules ([#7565](https://github.com/tailwindlabs/tailwindcss/pull/7565))
|
|
14
|
+
- Preserve source maps for generated CSS ([#7588](https://github.com/tailwindlabs/tailwindcss/pull/7588))
|
|
15
|
+
- Split box shadows on top-level commas only ([#7479](https://github.com/tailwindlabs/tailwindcss/pull/7479))
|
|
16
|
+
- Use local user CSS cache for `@apply` ([#7524](https://github.com/tailwindlabs/tailwindcss/pull/7524))
|
|
17
|
+
- Invalidate context when main CSS changes ([#7626](https://github.com/tailwindlabs/tailwindcss/pull/7626))
|
|
18
|
+
- Only add `!` to selector class matching template candidate when using important modifier with mutli-class selectors ([#7664](https://github.com/tailwindlabs/tailwindcss/pull/7664))
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Replace `chalk` with `picocolors` ([#6039](https://github.com/tailwindlabs/tailwindcss/pull/6039))
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- Allow default ring color to be a function ([#7587](https://github.com/tailwindlabs/tailwindcss/pull/7587))
|
|
27
|
+
- Add `rgb` and `hsl` color helpers for CSS variables ([#7665](https://github.com/tailwindlabs/tailwindcss/pull/7665))
|
|
28
|
+
|
|
29
|
+
## [3.0.23] - 2022-02-16
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Remove opacity variables from `:visited` pseudo class ([#7458](https://github.com/tailwindlabs/tailwindcss/pull/7458))
|
|
34
|
+
- Support arbitrary values + calc + theme with quotes ([#7462](https://github.com/tailwindlabs/tailwindcss/pull/7462))
|
|
35
|
+
- Don't duplicate layer output when scanning content with variants + wildcards ([#7478](https://github.com/tailwindlabs/tailwindcss/pull/7478))
|
|
36
|
+
- Implement `getClassOrder` instead of `sortClassList` ([#7459](https://github.com/tailwindlabs/tailwindcss/pull/7459))
|
|
37
|
+
|
|
38
|
+
## [3.0.22] - 2022-02-11
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Temporarily move `postcss` to dependencies ([#7424](https://github.com/tailwindlabs/tailwindcss/pull/7424))
|
|
43
|
+
|
|
44
|
+
## [3.0.21] - 2022-02-10
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- Move prettier plugin to dev dependencies ([#7418](https://github.com/tailwindlabs/tailwindcss/pull/7418))
|
|
49
|
+
|
|
50
|
+
## [3.0.20] - 2022-02-10
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Expose `context.sortClassList(classes)` ([#7412](https://github.com/tailwindlabs/tailwindcss/pull/7412))
|
|
55
|
+
|
|
56
|
+
## [3.0.19] - 2022-02-07
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- Fix preflight border color fallback ([#7288](https://github.com/tailwindlabs/tailwindcss/pull/7288))
|
|
61
|
+
- Correctly parse shadow lengths without a leading zero ([#7289](https://github.com/tailwindlabs/tailwindcss/pull/7289))
|
|
62
|
+
- Don't crash when scanning extremely long class candidates ([#7331](https://github.com/tailwindlabs/tailwindcss/pull/7331))
|
|
63
|
+
- Use less hacky fix for URLs detected as custom properties ([#7275](https://github.com/tailwindlabs/tailwindcss/pull/7275))
|
|
64
|
+
- Correctly generate negative utilities when dash is before the prefix ([#7295](https://github.com/tailwindlabs/tailwindcss/pull/7295))
|
|
65
|
+
- Detect prefixed negative utilities in the safelist ([#7295](https://github.com/tailwindlabs/tailwindcss/pull/7295))
|
|
66
|
+
|
|
67
|
+
## [3.0.18] - 2022-01-28
|
|
68
|
+
|
|
69
|
+
### Fixed
|
|
70
|
+
|
|
71
|
+
- Fix `@apply` order regression (in `addComponents`, `addUtilities`, ...) ([#7232](https://github.com/tailwindlabs/tailwindcss/pull/7232))
|
|
72
|
+
- Quick fix for incorrect arbitrary properties when using URLs ([#7252](https://github.com/tailwindlabs/tailwindcss/pull/7252))
|
|
73
|
+
|
|
74
|
+
## [3.0.17] - 2022-01-26
|
|
75
|
+
|
|
76
|
+
### Fixed
|
|
77
|
+
|
|
78
|
+
- Remove false positive warning in CLI when using the `--content` option ([#7220](https://github.com/tailwindlabs/tailwindcss/pull/7220))
|
|
79
|
+
|
|
80
|
+
## [3.0.16] - 2022-01-24
|
|
81
|
+
|
|
82
|
+
### Fixed
|
|
83
|
+
|
|
84
|
+
- Ensure to transpile the PostCSS Nesting plugin (tailwindcss/nesting) ([#7080](https://github.com/tailwindlabs/tailwindcss/pull/7080))
|
|
85
|
+
- Improve various warnings ([#7118](https://github.com/tailwindlabs/tailwindcss/pull/7118))
|
|
86
|
+
- Fix grammatical mistake ([cca5a38](https://github.com/tailwindlabs/tailwindcss/commit/cca5a3804e1d3ee0214491921e1aec35bf62a813))
|
|
87
|
+
|
|
88
|
+
## [3.0.15] - 2022-01-15
|
|
89
|
+
|
|
90
|
+
### Fixed
|
|
91
|
+
|
|
92
|
+
- Temporarily remove optional chaining in nesting plugin ([#7077](https://github.com/tailwindlabs/tailwindcss/pull/7077))
|
|
93
|
+
|
|
94
|
+
## [3.0.14] - 2022-01-14
|
|
95
|
+
|
|
96
|
+
### Added
|
|
97
|
+
|
|
98
|
+
- Show warnings for invalid content config ([#7065](https://github.com/tailwindlabs/tailwindcss/pull/7065))
|
|
99
|
+
|
|
100
|
+
### Fixed
|
|
101
|
+
|
|
102
|
+
- Only emit utility/component variants when those layers exist ([#7066](https://github.com/tailwindlabs/tailwindcss/pull/7066))
|
|
103
|
+
- Ensure nesting plugins can receive options ([#7016](https://github.com/tailwindlabs/tailwindcss/pull/7016))
|
|
104
|
+
|
|
105
|
+
## [3.0.13] - 2022-01-11
|
|
106
|
+
|
|
107
|
+
### Fixed
|
|
108
|
+
|
|
109
|
+
- Fix consecutive builds with at apply producing different CSS ([#6999](https://github.com/tailwindlabs/tailwindcss/pull/6999))
|
|
11
110
|
|
|
12
111
|
## [3.0.12] - 2022-01-07
|
|
13
112
|
|
|
@@ -1792,7 +1891,18 @@ No release notes
|
|
|
1792
1891
|
|
|
1793
1892
|
- Everything!
|
|
1794
1893
|
|
|
1795
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.
|
|
1894
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.23...HEAD
|
|
1895
|
+
[3.0.23]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.22...v3.0.23
|
|
1896
|
+
[3.0.22]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.21...v3.0.22
|
|
1897
|
+
[3.0.21]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.20...v3.0.21
|
|
1898
|
+
[3.0.20]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.19...v3.0.20
|
|
1899
|
+
[3.0.19]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.18...v3.0.19
|
|
1900
|
+
[3.0.18]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.17...v3.0.18
|
|
1901
|
+
[3.0.17]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.16...v3.0.17
|
|
1902
|
+
[3.0.16]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.15...v3.0.16
|
|
1903
|
+
[3.0.15]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.14...v3.0.15
|
|
1904
|
+
[3.0.14]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.13...v3.0.14
|
|
1905
|
+
[3.0.13]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.12...v3.0.13
|
|
1796
1906
|
[3.0.12]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.11...v3.0.12
|
|
1797
1907
|
[3.0.11]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.10...v3.0.11
|
|
1798
1908
|
[3.0.10]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.9...v3.0.10
|
package/LICENSE
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
4
|
-
Copyright (c) Jonathan Reinink <jonathan@reinink.ca>
|
|
3
|
+
Copyright (c) Tailwind Labs, Inc.
|
|
5
4
|
|
|
6
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/lib/cli.js
CHANGED
|
@@ -89,8 +89,7 @@ function help({ message , usage , commands: commands1 , options }) {
|
|
|
89
89
|
}
|
|
90
90
|
// Render options
|
|
91
91
|
if (options) {
|
|
92
|
-
let groupedOptions = {
|
|
93
|
-
};
|
|
92
|
+
let groupedOptions = {};
|
|
94
93
|
for (let [key, value] of Object.entries(options)){
|
|
95
94
|
if (typeof value === 'object') {
|
|
96
95
|
groupedOptions[key] = {
|
|
@@ -370,13 +369,11 @@ async function build() {
|
|
|
370
369
|
let { plugins: configPlugins } = customPostCssPath ? await (async ()=>{
|
|
371
370
|
let file = _path.default.resolve(customPostCssPath);
|
|
372
371
|
// Implementation, see: https://unpkg.com/browse/postcss-load-config@3.0.1/src/index.js
|
|
373
|
-
let { config ={
|
|
374
|
-
} } = await (0, _cosmiconfig).cosmiconfig('postcss').load(file);
|
|
372
|
+
let { config ={} } = await (0, _cosmiconfig).cosmiconfig('postcss').load(file);
|
|
375
373
|
if (typeof config === 'function') {
|
|
376
374
|
config = config();
|
|
377
375
|
} else {
|
|
378
|
-
config = Object.assign({
|
|
379
|
-
}, config);
|
|
376
|
+
config = Object.assign({}, config);
|
|
380
377
|
}
|
|
381
378
|
if (!config.plugins) {
|
|
382
379
|
config.plugins = [];
|
|
@@ -402,9 +399,7 @@ async function build() {
|
|
|
402
399
|
];
|
|
403
400
|
}
|
|
404
401
|
function resolveConfig() {
|
|
405
|
-
let config = configPath ? require(configPath) : {
|
|
406
|
-
};
|
|
407
|
-
let resolvedConfig = (0, _resolveConfig).default(config);
|
|
402
|
+
let config = configPath ? require(configPath) : {};
|
|
408
403
|
if (args['--purge']) {
|
|
409
404
|
_log.default.warn('purge-flag-deprecated', [
|
|
410
405
|
'The `--purge` flag has been deprecated.',
|
|
@@ -415,9 +410,16 @@ async function build() {
|
|
|
415
410
|
}
|
|
416
411
|
}
|
|
417
412
|
if (args['--content']) {
|
|
418
|
-
|
|
413
|
+
let files = args['--content'].split(/(?<!{[^}]+),/);
|
|
414
|
+
let resolvedConfig = (0, _resolveConfig).default(config, {
|
|
415
|
+
content: {
|
|
416
|
+
files
|
|
417
|
+
}
|
|
418
|
+
});
|
|
419
|
+
resolvedConfig.content.files = files;
|
|
420
|
+
return resolvedConfig;
|
|
419
421
|
}
|
|
420
|
-
return
|
|
422
|
+
return (0, _resolveConfig).default(config);
|
|
421
423
|
}
|
|
422
424
|
function extractFileGlobs(config) {
|
|
423
425
|
return config.content.files.filter((file)=>{
|
|
@@ -482,8 +484,7 @@ async function build() {
|
|
|
482
484
|
// Try to load a local `autoprefixer` version first
|
|
483
485
|
try {
|
|
484
486
|
return require('autoprefixer');
|
|
485
|
-
} catch {
|
|
486
|
-
}
|
|
487
|
+
} catch {}
|
|
487
488
|
return (0, _indexJs).lazyAutoprefixer();
|
|
488
489
|
})(),
|
|
489
490
|
args['--minify'] && (()=>{
|
|
@@ -498,8 +499,7 @@ async function build() {
|
|
|
498
499
|
// Try to load a local `cssnano` version first
|
|
499
500
|
try {
|
|
500
501
|
return require('cssnano');
|
|
501
|
-
} catch {
|
|
502
|
-
}
|
|
502
|
+
} catch {}
|
|
503
503
|
return (0, _indexJs).lazyCssnano()(options);
|
|
504
504
|
})(),
|
|
505
505
|
].filter(Boolean);
|
|
@@ -575,8 +575,7 @@ async function build() {
|
|
|
575
575
|
// Try to load a local `autoprefixer` version first
|
|
576
576
|
try {
|
|
577
577
|
return require('autoprefixer');
|
|
578
|
-
} catch {
|
|
579
|
-
}
|
|
578
|
+
} catch {}
|
|
580
579
|
return (0, _indexJs).lazyAutoprefixer();
|
|
581
580
|
})(),
|
|
582
581
|
args['--minify'] && (()=>{
|
|
@@ -591,8 +590,7 @@ async function build() {
|
|
|
591
590
|
// Try to load a local `cssnano` version first
|
|
592
591
|
try {
|
|
593
592
|
return require('cssnano');
|
|
594
|
-
} catch {
|
|
595
|
-
}
|
|
593
|
+
} catch {}
|
|
596
594
|
return (0, _indexJs).lazyCssnano()(options);
|
|
597
595
|
})(),
|
|
598
596
|
].filter(Boolean);
|