tailwindcss 3.2.4 → 3.2.5

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 (100) hide show
  1. package/CHANGELOG.md +44 -1
  2. package/README.md +1 -1
  3. package/lib/cli/build/index.js +5 -1
  4. package/lib/cli/build/plugin.js +39 -34
  5. package/lib/cli/index.js +231 -10
  6. package/lib/cli/init/index.js +2 -2
  7. package/lib/cli.js +4 -226
  8. package/lib/corePlugins.js +45 -27
  9. package/lib/featureFlags.js +8 -8
  10. package/lib/index.js +4 -46
  11. package/lib/lib/collapseAdjacentRules.js +2 -2
  12. package/lib/lib/collapseDuplicateDeclarations.js +2 -2
  13. package/lib/lib/content.js +16 -16
  14. package/lib/lib/defaultExtractor.js +10 -5
  15. package/lib/lib/detectNesting.js +7 -1
  16. package/lib/lib/evaluateTailwindFunctions.js +4 -4
  17. package/lib/lib/expandApplyAtRules.js +2 -2
  18. package/lib/lib/expandTailwindAtRules.js +35 -9
  19. package/lib/lib/findAtConfigPath.js +3 -3
  20. package/lib/lib/generateRules.js +105 -50
  21. package/lib/lib/offsets.js +88 -1
  22. package/lib/lib/remap-bitfield.js +87 -0
  23. package/lib/lib/resolveDefaultsAtRules.js +4 -4
  24. package/lib/lib/setupContextUtils.js +121 -80
  25. package/lib/lib/setupTrackingContext.js +25 -4
  26. package/lib/lib/sharedState.js +19 -1
  27. package/lib/oxide/cli/build/deps.js +81 -0
  28. package/lib/oxide/cli/build/index.js +47 -0
  29. package/lib/oxide/cli/build/plugin.js +364 -0
  30. package/lib/oxide/cli/build/utils.js +77 -0
  31. package/lib/oxide/cli/build/watching.js +177 -0
  32. package/lib/oxide/cli/help/index.js +70 -0
  33. package/lib/oxide/cli/index.js +220 -0
  34. package/lib/oxide/cli/init/index.js +35 -0
  35. package/lib/oxide/cli.js +5 -0
  36. package/lib/oxide/postcss-plugin.js +2 -0
  37. package/lib/plugin.js +98 -0
  38. package/lib/postcss-plugins/nesting/plugin.js +2 -2
  39. package/lib/util/cloneNodes.js +2 -2
  40. package/lib/util/color.js +20 -6
  41. package/lib/util/createUtilityPlugin.js +2 -2
  42. package/lib/util/dataTypes.js +26 -2
  43. package/lib/util/defaults.js +4 -4
  44. package/lib/util/escapeClassName.js +3 -3
  45. package/lib/util/formatVariantSelector.js +171 -105
  46. package/lib/util/getAllConfigs.js +2 -2
  47. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +2 -2
  48. package/lib/util/negateValue.js +2 -2
  49. package/lib/util/normalizeConfig.js +22 -22
  50. package/lib/util/pluginUtils.js +38 -40
  51. package/lib/util/prefixSelector.js +22 -8
  52. package/lib/util/resolveConfig.js +8 -10
  53. package/oxide-node-api-shim/index.js +21 -0
  54. package/oxide-node-api-shim/package.json +5 -0
  55. package/package.json +32 -19
  56. package/peers/index.js +61 -42
  57. package/resolveConfig.d.ts +11 -2
  58. package/scripts/swap-engines.js +40 -0
  59. package/src/cli/build/index.js +6 -2
  60. package/src/cli/build/plugin.js +14 -9
  61. package/src/cli/index.js +234 -3
  62. package/src/cli.js +4 -220
  63. package/src/corePlugins.js +31 -3
  64. package/src/index.js +4 -46
  65. package/src/lib/content.js +12 -17
  66. package/src/lib/defaultExtractor.js +9 -3
  67. package/src/lib/detectNesting.js +9 -1
  68. package/src/lib/expandTailwindAtRules.js +37 -6
  69. package/src/lib/generateRules.js +90 -28
  70. package/src/lib/offsets.js +104 -1
  71. package/src/lib/remap-bitfield.js +82 -0
  72. package/src/lib/setupContextUtils.js +97 -55
  73. package/src/lib/setupTrackingContext.js +31 -6
  74. package/src/lib/sharedState.js +17 -0
  75. package/src/oxide/cli/build/deps.ts +91 -0
  76. package/src/oxide/cli/build/index.ts +47 -0
  77. package/src/oxide/cli/build/plugin.ts +436 -0
  78. package/src/oxide/cli/build/utils.ts +74 -0
  79. package/src/oxide/cli/build/watching.ts +225 -0
  80. package/src/oxide/cli/help/index.ts +69 -0
  81. package/src/oxide/cli/index.ts +212 -0
  82. package/src/oxide/cli/init/index.ts +32 -0
  83. package/src/oxide/cli.ts +1 -0
  84. package/src/oxide/postcss-plugin.ts +1 -0
  85. package/src/plugin.js +107 -0
  86. package/src/util/color.js +17 -2
  87. package/src/util/dataTypes.js +29 -4
  88. package/src/util/formatVariantSelector.js +215 -122
  89. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  90. package/src/util/negateValue.js +1 -1
  91. package/src/util/pluginUtils.js +22 -19
  92. package/src/util/prefixSelector.js +28 -10
  93. package/src/util/resolveConfig.js +0 -2
  94. package/stubs/defaultConfig.stub.js +149 -165
  95. package/types/config.d.ts +7 -2
  96. package/types/generated/default-theme.d.ts +77 -77
  97. package/lib/cli/shared.js +0 -12
  98. package/scripts/install-integrations.js +0 -27
  99. package/scripts/rebuildFixtures.js +0 -68
  100. package/src/cli/shared.js +0 -5
package/lib/cli/shared.js DELETED
@@ -1,12 +0,0 @@
1
- // @ts-check
2
- "use strict";
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "env", {
7
- enumerable: true,
8
- get: ()=>env
9
- });
10
- const env = {
11
- DEBUG: process.env.DEBUG !== undefined && process.env.DEBUG !== "0"
12
- };
@@ -1,27 +0,0 @@
1
- let fs = require('fs/promises')
2
- let { spawn } = require('child_process')
3
- let path = require('path')
4
- let root = process.cwd()
5
-
6
- function npmInstall(cwd) {
7
- return new Promise((resolve) => {
8
- let childProcess = spawn('npm', ['install'], { cwd })
9
- childProcess.on('exit', resolve)
10
- })
11
- }
12
-
13
- async function install() {
14
- let base = path.resolve(root, 'integrations')
15
- let ignoreFolders = ['node_modules']
16
- let integrations = (await fs.readdir(base, { withFileTypes: true }))
17
- .filter((integration) => integration.isDirectory())
18
- .filter((integration) => !ignoreFolders.includes(integration.name))
19
- .map((folder) => path.resolve(base, folder.name))
20
- .concat([base])
21
- .map((integration) => npmInstall(integration))
22
-
23
- await Promise.all(integrations)
24
- console.log('Done!')
25
- }
26
-
27
- install()
@@ -1,68 +0,0 @@
1
- import fs from 'fs'
2
- import postcss from 'postcss'
3
- import tailwind from '..'
4
-
5
- function build({ from, to, config }) {
6
- return new Promise((resolve, reject) => {
7
- console.log(`Processing ./${from}...`)
8
-
9
- fs.readFile(`./${from}`, (err, css) => {
10
- if (err) throw err
11
-
12
- return postcss([tailwind(config)])
13
- .process(css, {
14
- from: undefined,
15
- })
16
- .then((result) => {
17
- fs.writeFileSync(`./${to}`, result.css)
18
- return result
19
- })
20
- .then(resolve)
21
- .catch((error) => {
22
- console.log(error)
23
- reject()
24
- })
25
- })
26
- })
27
- }
28
-
29
- console.info('\nRebuilding fixtures...\n')
30
-
31
- Promise.all([
32
- build({
33
- from: 'tests/fixtures/tailwind-input.css',
34
- to: 'tests/fixtures/tailwind-output.css',
35
- config: {},
36
- }),
37
- build({
38
- from: 'tests/fixtures/tailwind-input.css',
39
- to: 'tests/fixtures/tailwind-output-important.css',
40
- config: { important: true },
41
- }),
42
- build({
43
- from: 'tests/fixtures/tailwind-input.css',
44
- to: 'tests/fixtures/tailwind-output-no-color-opacity.css',
45
- config: {
46
- corePlugins: {
47
- textOpacity: false,
48
- backgroundOpacity: false,
49
- borderOpacity: false,
50
- placeholderOpacity: false,
51
- divideOpacity: false,
52
- },
53
- },
54
- }),
55
- build({
56
- from: 'tests/fixtures/tailwind-input.css',
57
- to: 'tests/fixtures/tailwind-output-flagged.css',
58
- config: {
59
- future: 'all',
60
- experimental: 'all',
61
- },
62
- }),
63
- ]).then(() => {
64
- console.log('\nFinished rebuilding fixtures.')
65
- console.log(
66
- '\nPlease triple check that the fixture output matches what you expect before committing this change.'
67
- )
68
- })
package/src/cli/shared.js DELETED
@@ -1,5 +0,0 @@
1
- // @ts-check
2
-
3
- export const env = {
4
- DEBUG: process.env.DEBUG !== undefined && process.env.DEBUG !== '0',
5
- }