tailwindcss 0.0.0-insiders.ea10bb9 → 0.0.0-insiders.ea4e1cd
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/README.md +1 -1
- package/lib/cli/build/deps.js +17 -9
- package/lib/cli/build/index.js +20 -10
- package/lib/cli/build/plugin.js +86 -70
- package/lib/cli/build/utils.js +18 -8
- package/lib/cli/build/watching.js +16 -12
- package/lib/cli/help/index.js +6 -4
- package/lib/cli/index.js +222 -10
- package/lib/cli/init/index.js +29 -12
- package/lib/cli-peer-dependencies.js +12 -4
- package/lib/cli.js +4 -226
- package/lib/corePluginList.js +7 -1
- package/lib/corePlugins.js +348 -75
- package/lib/css/preflight.css +2 -0
- package/lib/featureFlags.js +27 -15
- package/lib/index.js +1 -47
- package/lib/lib/cacheInvalidation.js +7 -5
- package/lib/lib/collapseAdjacentRules.js +5 -3
- package/lib/lib/collapseDuplicateDeclarations.js +12 -10
- package/lib/lib/content.js +34 -30
- package/lib/lib/defaultExtractor.js +15 -8
- package/lib/lib/detectNesting.js +10 -2
- package/lib/lib/evaluateTailwindFunctions.js +22 -20
- package/lib/lib/expandApplyAtRules.js +43 -35
- package/lib/lib/expandTailwindAtRules.js +46 -19
- package/lib/lib/findAtConfigPath.js +9 -7
- package/lib/lib/generateRules.js +157 -92
- package/lib/lib/getModuleDependencies.js +85 -37
- package/lib/lib/load-config.js +42 -0
- package/lib/lib/normalizeTailwindDirectives.js +5 -3
- package/lib/lib/offsets.js +93 -4
- package/lib/lib/partitionApplyAtRules.js +3 -1
- package/lib/lib/regex.js +21 -7
- package/lib/lib/remap-bitfield.js +89 -0
- package/lib/lib/resolveDefaultsAtRules.js +28 -24
- package/lib/lib/setupContextUtils.js +190 -131
- package/lib/lib/setupTrackingContext.js +49 -26
- package/lib/lib/sharedState.js +37 -10
- package/lib/lib/substituteScreenAtRules.js +5 -3
- package/lib/oxide/cli/build/deps.js +89 -0
- package/lib/oxide/cli/build/index.js +53 -0
- package/lib/oxide/cli/build/plugin.js +375 -0
- package/lib/oxide/cli/build/utils.js +87 -0
- package/lib/oxide/cli/build/watching.js +179 -0
- package/lib/oxide/cli/help/index.js +72 -0
- package/lib/oxide/cli/index.js +214 -0
- package/lib/oxide/cli/init/index.js +52 -0
- package/lib/oxide/cli.js +5 -0
- package/lib/oxide/postcss-plugin.js +2 -0
- package/lib/plugin.js +98 -0
- package/lib/postcss-plugins/nesting/index.js +3 -1
- package/lib/postcss-plugins/nesting/plugin.js +10 -8
- package/lib/processTailwindFeatures.js +14 -12
- package/lib/public/colors.js +49 -25
- 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 +12 -0
- package/lib/public/resolve-config.js +6 -4
- package/lib/util/applyImportantSelector.js +36 -0
- 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 +5 -3
- package/lib/util/color.js +30 -12
- 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 +7 -5
- package/lib/util/dataTypes.js +74 -17
- package/lib/util/defaults.js +9 -7
- package/lib/util/escapeClassName.js +10 -8
- package/lib/util/escapeCommas.js +3 -1
- package/lib/util/flattenColorPalette.js +3 -1
- package/lib/util/formatVariantSelector.js +138 -160
- package/lib/util/getAllConfigs.js +8 -6
- 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 +4 -2
- package/lib/util/normalizeConfig.js +28 -27
- 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 +54 -54
- package/lib/util/prefixSelector.js +27 -11
- package/lib/util/pseudoElements.js +229 -0
- package/lib/util/removeAlphaVariables.js +3 -1
- package/lib/util/resolveConfig.js +17 -15
- package/lib/util/resolveConfigPath.js +26 -10
- package/lib/util/responsive.js +6 -4
- package/lib/util/splitAtTopLevelOnly.js +10 -2
- 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/loadConfig.d.ts +4 -0
- package/loadConfig.js +2 -0
- package/package.json +45 -37
- package/peers/index.js +63324 -46417
- package/resolveConfig.d.ts +11 -2
- package/scripts/swap-engines.js +40 -0
- package/src/cli/build/index.js +13 -9
- package/src/cli/build/plugin.js +42 -32
- package/src/cli/build/watching.js +4 -2
- package/src/cli/index.js +216 -3
- package/src/cli/init/index.js +37 -8
- package/src/cli.js +4 -220
- package/src/corePluginList.js +1 -1
- package/src/corePlugins.js +207 -32
- package/src/css/preflight.css +2 -0
- package/src/featureFlags.js +6 -0
- package/src/index.js +1 -47
- package/src/lib/content.js +12 -17
- package/src/lib/defaultExtractor.js +9 -3
- package/src/lib/detectNesting.js +9 -1
- package/src/lib/expandApplyAtRules.js +8 -1
- package/src/lib/expandTailwindAtRules.js +36 -7
- package/src/lib/generateRules.js +124 -42
- package/src/lib/getModuleDependencies.js +70 -30
- package/src/lib/load-config.ts +31 -0
- package/src/lib/offsets.js +104 -1
- package/src/lib/remap-bitfield.js +82 -0
- package/src/lib/setupContextUtils.js +103 -54
- package/src/lib/setupTrackingContext.js +36 -11
- package/src/lib/sharedState.js +15 -4
- package/src/oxide/cli/build/deps.ts +91 -0
- package/src/oxide/cli/build/index.ts +47 -0
- package/src/oxide/cli/build/plugin.ts +442 -0
- package/src/oxide/cli/build/utils.ts +74 -0
- package/src/oxide/cli/build/watching.ts +225 -0
- package/src/oxide/cli/help/index.ts +69 -0
- package/src/oxide/cli/index.ts +204 -0
- package/src/oxide/cli/init/index.ts +59 -0
- package/src/oxide/cli.ts +1 -0
- package/src/oxide/postcss-plugin.ts +1 -0
- package/src/plugin.js +107 -0
- package/src/public/colors.js +22 -0
- package/src/public/default-config.js +1 -1
- package/src/public/default-theme.js +2 -2
- package/src/public/load-config.js +2 -0
- package/src/util/applyImportantSelector.js +27 -0
- package/src/util/color.js +18 -3
- package/src/util/colorNames.js +150 -0
- package/src/util/dataTypes.js +33 -4
- package/src/util/formatVariantSelector.js +160 -163
- package/src/util/getAllConfigs.js +2 -2
- package/src/util/negateValue.js +1 -1
- package/src/util/normalizeConfig.js +2 -1
- package/src/util/pluginUtils.js +16 -31
- package/src/util/prefixSelector.js +28 -10
- package/src/util/pseudoElements.js +170 -0
- package/src/util/resolveConfigPath.js +12 -1
- package/src/util/splitAtTopLevelOnly.js +8 -1
- package/src/util/validateConfig.js +13 -0
- package/stubs/.gitignore +1 -0
- package/stubs/.prettierrc.json +6 -0
- package/stubs/{defaultConfig.stub.js → config.full.js} +183 -146
- package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -1
- package/stubs/postcss.config.js +6 -0
- package/stubs/tailwind.config.cjs +2 -0
- package/stubs/tailwind.config.js +2 -0
- package/stubs/tailwind.config.ts +3 -0
- package/types/config.d.ts +15 -9
- package/types/generated/colors.d.ts +22 -0
- package/types/generated/corePluginList.d.ts +1 -1
- package/types/generated/default-theme.d.ts +108 -79
- package/CHANGELOG.md +0 -2336
- package/lib/cli/shared.js +0 -12
- package/lib/constants.js +0 -44
- package/scripts/install-integrations.js +0 -27
- package/scripts/rebuildFixtures.js +0 -68
- package/src/cli/shared.js +0 -5
- package/src/constants.js +0 -17
- /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
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
|
-
};
|
package/lib/constants.js
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
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
|
-
cli: ()=>cli,
|
|
13
|
-
defaultConfigFile: ()=>defaultConfigFile,
|
|
14
|
-
defaultPostCssConfigFile: ()=>defaultPostCssConfigFile,
|
|
15
|
-
cjsConfigFile: ()=>cjsConfigFile,
|
|
16
|
-
cjsPostCssConfigFile: ()=>cjsPostCssConfigFile,
|
|
17
|
-
supportedConfigFiles: ()=>supportedConfigFiles,
|
|
18
|
-
supportedPostCssConfigFile: ()=>supportedPostCssConfigFile,
|
|
19
|
-
defaultConfigStubFile: ()=>defaultConfigStubFile,
|
|
20
|
-
simpleConfigStubFile: ()=>simpleConfigStubFile,
|
|
21
|
-
defaultPostCssConfigStubFile: ()=>defaultPostCssConfigStubFile
|
|
22
|
-
});
|
|
23
|
-
const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
|
|
24
|
-
function _interopRequireDefault(obj) {
|
|
25
|
-
return obj && obj.__esModule ? obj : {
|
|
26
|
-
default: obj
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
const cli = "tailwind";
|
|
30
|
-
const defaultConfigFile = "./tailwind.config.js";
|
|
31
|
-
const defaultPostCssConfigFile = "./postcss.config.js";
|
|
32
|
-
const cjsConfigFile = "./tailwind.config.cjs";
|
|
33
|
-
const cjsPostCssConfigFile = "./postcss.config.cjs";
|
|
34
|
-
const supportedConfigFiles = [
|
|
35
|
-
cjsConfigFile,
|
|
36
|
-
defaultConfigFile
|
|
37
|
-
];
|
|
38
|
-
const supportedPostCssConfigFile = [
|
|
39
|
-
cjsPostCssConfigFile,
|
|
40
|
-
defaultPostCssConfigFile
|
|
41
|
-
];
|
|
42
|
-
const defaultConfigStubFile = _path.default.resolve(__dirname, "../stubs/defaultConfig.stub.js");
|
|
43
|
-
const simpleConfigStubFile = _path.default.resolve(__dirname, "../stubs/simpleConfig.stub.js");
|
|
44
|
-
const defaultPostCssConfigStubFile = _path.default.resolve(__dirname, "../stubs/defaultPostCssConfig.stub.js");
|
|
@@ -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
package/src/constants.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import path from 'path'
|
|
2
|
-
|
|
3
|
-
export const cli = 'tailwind'
|
|
4
|
-
export const defaultConfigFile = './tailwind.config.js'
|
|
5
|
-
export const defaultPostCssConfigFile = './postcss.config.js'
|
|
6
|
-
export const cjsConfigFile = './tailwind.config.cjs'
|
|
7
|
-
export const cjsPostCssConfigFile = './postcss.config.cjs'
|
|
8
|
-
|
|
9
|
-
export const supportedConfigFiles = [cjsConfigFile, defaultConfigFile]
|
|
10
|
-
export const supportedPostCssConfigFile = [cjsPostCssConfigFile, defaultPostCssConfigFile]
|
|
11
|
-
|
|
12
|
-
export const defaultConfigStubFile = path.resolve(__dirname, '../stubs/defaultConfig.stub.js')
|
|
13
|
-
export const simpleConfigStubFile = path.resolve(__dirname, '../stubs/simpleConfig.stub.js')
|
|
14
|
-
export const defaultPostCssConfigStubFile = path.resolve(
|
|
15
|
-
__dirname,
|
|
16
|
-
'../stubs/defaultPostCssConfig.stub.js'
|
|
17
|
-
)
|
|
File without changes
|