weapp-tailwindcss 4.12.0 → 5.0.0-next.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/dist/babel/index.d.ts +3 -0
- package/dist/bundlers/gulp/index.d.ts +7 -0
- package/dist/bundlers/shared/cache.d.ts +16 -0
- package/dist/bundlers/shared/css-cleanup.d.ts +4 -0
- package/dist/bundlers/shared/css-imports.d.ts +8 -0
- package/dist/bundlers/shared/generator-candidates.d.ts +5 -0
- package/dist/bundlers/shared/generator-css.d.ts +43 -0
- package/dist/bundlers/shared/module-graph.d.ts +5 -0
- package/dist/bundlers/shared/run-tasks.d.ts +2 -0
- package/dist/bundlers/vite/bundle-entries.d.ts +14 -0
- package/dist/bundlers/vite/bundle-state.d.ts +43 -0
- package/dist/bundlers/vite/css-finalizer.d.ts +22 -0
- package/dist/bundlers/vite/generate-bundle.d.ts +33 -0
- package/dist/bundlers/vite/incremental-runtime-class-set.d.ts +21 -0
- package/dist/bundlers/vite/index.d.ts +3 -0
- package/dist/bundlers/vite/js-precheck.d.ts +1 -0
- package/dist/bundlers/vite/query.d.ts +15 -0
- package/dist/bundlers/vite/resolve-app-type.d.ts +2 -0
- package/dist/bundlers/vite/rewrite-css-imports.d.ts +11 -0
- package/dist/bundlers/vite/runtime-affecting-signature.d.ts +2 -0
- package/dist/bundlers/vite/source-candidates.d.ts +15 -0
- package/dist/bundlers/vite/utils.d.ts +9 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/shared.d.ts +20 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v4-assets.d.ts +14 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v4-loaders.d.ts +15 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v4.d.ts +9 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v5-assets.d.ts +17 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v5-loaders.d.ts +19 -0
- package/dist/bundlers/webpack/BaseUnifiedPlugin/v5.d.ts +9 -0
- package/dist/bundlers/webpack/index.d.ts +1 -0
- package/dist/bundlers/webpack/loaders/weapp-tw-css-import-rewrite-loader.d.ts +12 -0
- package/dist/bundlers/webpack/loaders/weapp-tw-runtime-classset-loader.d.ts +11 -0
- package/dist/bundlers/webpack/shared/css-imports.d.ts +6 -0
- package/dist/bundlers/webpack/shared/loader-anchors.d.ts +8 -0
- package/dist/cache/index.d.ts +38 -0
- package/dist/cache/md5.d.ts +1 -0
- package/dist/chunk-8l464Juk.js +28 -0
- package/dist/cli/config.d.ts +5 -0
- package/dist/cli/context.d.ts +16 -0
- package/dist/cli/doctor/constants.d.ts +7 -0
- package/dist/cli/doctor/types.d.ts +31 -0
- package/dist/cli/doctor.d.ts +4 -0
- package/dist/cli/helpers/options/format.d.ts +2 -0
- package/dist/cli/helpers/options/parse.d.ts +3 -0
- package/dist/cli/helpers/options/resolve.d.ts +1 -0
- package/dist/cli/helpers/options.d.ts +3 -0
- package/dist/cli/helpers/patch-cwd.d.ts +1 -0
- package/dist/cli/helpers.d.ts +5 -0
- package/dist/cli/mount-options/patch-status.d.ts +2 -0
- package/dist/cli/mount-options.d.ts +2 -0
- package/dist/cli/patch-options.d.ts +6 -0
- package/dist/cli/tokens.d.ts +4 -0
- package/dist/cli/types.d.ts +17 -0
- package/dist/cli/vscode-entry.d.ts +14 -0
- package/dist/cli/workspace/package-dirs.d.ts +3 -0
- package/dist/cli/workspace/patch-package.d.ts +3 -0
- package/dist/cli/workspace/patch-utils.d.ts +3 -0
- package/dist/cli/workspace/types.d.ts +11 -0
- package/dist/cli/workspace/workspace-globs.d.ts +2 -0
- package/dist/cli/workspace/workspace-io.d.ts +1 -0
- package/dist/cli/workspace/workspace-lock.d.ts +1 -0
- package/dist/cli/workspace.d.ts +2 -0
- package/dist/cli.d.ts +1 -2
- package/dist/cli.js +2425 -3524
- package/dist/cli.mjs +2402 -3505
- package/dist/constants-B-_T5UnW.mjs +44 -0
- package/dist/constants-p1dyh1x1.js +73 -0
- package/dist/constants.d.ts +13 -0
- package/dist/context/compiler-context-cache.d.ts +3 -0
- package/dist/context/custom-attributes.d.ts +2 -0
- package/dist/context/handlers.d.ts +6 -0
- package/dist/context/index.d.ts +7 -0
- package/dist/context/logger.d.ts +4 -0
- package/dist/context/tailwindcss/basedir.d.ts +1 -0
- package/dist/context/tailwindcss/rax.d.ts +2 -0
- package/dist/context/tailwindcss.d.ts +4 -0
- package/dist/context/workspace.d.ts +3 -0
- package/dist/core.d.ts +5 -21
- package/dist/core.js +138 -180
- package/dist/core.mjs +135 -180
- package/dist/css-imports-BbrbluP9.js +177 -0
- package/dist/css-imports-CSdPq_Sc.mjs +128 -0
- package/dist/css-macro/constants.d.ts +14 -0
- package/dist/css-macro/index.d.ts +15 -0
- package/dist/css-macro/postcss.d.ts +3 -7
- package/dist/css-macro/postcss.js +44 -58
- package/dist/css-macro/postcss.mjs +44 -56
- package/dist/css-macro.d.ts +1 -20
- package/dist/css-macro.js +37 -50
- package/dist/css-macro.mjs +33 -47
- package/dist/debug/index.d.ts +5 -0
- package/dist/defaults.d.ts +2 -11
- package/dist/defaults.js +132 -8
- package/dist/defaults.mjs +128 -7
- package/dist/escape.js +31 -54
- package/dist/escape.mjs +18 -25
- package/dist/experimental/index.d.ts +2 -0
- package/dist/experimental/oxc/ast-utils.d.ts +30 -0
- package/dist/experimental/oxc/index.d.ts +2 -0
- package/dist/experimental/oxc/module-specifiers.d.ts +2 -0
- package/dist/experimental/shared/cache.d.ts +3 -0
- package/dist/experimental/shared/transform.d.ts +3 -0
- package/dist/experimental/shared.d.ts +8 -0
- package/dist/experimental/swc/ast-utils.d.ts +30 -0
- package/dist/experimental/swc/index.d.ts +2 -0
- package/dist/experimental/swc/module-specifiers.d.ts +2 -0
- package/dist/generator/index.d.ts +11 -0
- package/dist/generator/options.d.ts +17 -0
- package/dist/generator/types.d.ts +20 -0
- package/dist/generator-Y-Ikv4Fu.mjs +1177 -0
- package/dist/generator-css-B5ejWUMv.mjs +1098 -0
- package/dist/generator-css-D3OdPRiS.js +1125 -0
- package/dist/generator-mmhXzZnv.js +1276 -0
- package/dist/generator.d.ts +1 -0
- package/dist/generator.js +19 -0
- package/dist/generator.mjs +2 -0
- package/dist/gulp.d.ts +4 -24
- package/dist/gulp.js +271 -13
- package/dist/gulp.mjs +263 -13
- package/dist/index.d.ts +8 -15
- package/dist/index.js +12 -24
- package/dist/index.mjs +6 -24
- package/dist/js/JsTokenUpdater.d.ts +14 -0
- package/dist/js/ModuleGraph.d.ts +18 -0
- package/dist/js/NodePathWalker.d.ts +33 -0
- package/dist/js/babel/parse.d.ts +9 -0
- package/dist/js/babel/process.d.ts +4 -0
- package/dist/js/babel.d.ts +13 -0
- package/dist/js/class-context.d.ts +3 -0
- package/dist/js/evalTransforms.d.ts +7 -0
- package/dist/js/handlers.d.ts +5 -0
- package/dist/js/index.d.ts +4 -0
- package/dist/js/module-graph/ignored-exports.d.ts +18 -0
- package/dist/js/module-graph/types.d.ts +17 -0
- package/dist/js/node-path-walker/export-handlers.d.ts +12 -0
- package/dist/js/node-path-walker/import-tokens.d.ts +24 -0
- package/dist/js/precheck.d.ts +2 -0
- package/dist/js/sourceAnalysis.d.ts +17 -0
- package/dist/js/syntax.d.ts +10 -0
- package/dist/js/taggedTemplateIgnore.d.ts +13 -0
- package/dist/js/types.d.ts +11 -0
- package/dist/lightningcss/index.d.ts +8 -0
- package/dist/lightningcss/style-handler/options.d.ts +3 -0
- package/dist/lightningcss/style-handler/selector-transform.d.ts +10 -0
- package/dist/lightningcss/style-handler/selector-utils.d.ts +10 -0
- package/dist/lightningcss/style-handler.d.ts +17 -0
- package/dist/loader-anchors-CNkWT8hx.js +273 -0
- package/dist/loader-anchors-TrU7EUr7.mjs +205 -0
- package/dist/logger/index.d.ts +2 -0
- package/dist/logger-BZ45DZJT.js +1003 -0
- package/dist/logger-BoVx1Dbt.mjs +935 -0
- package/dist/patcher-options-6gJN2EXy.js +115 -0
- package/dist/patcher-options-DQfR5xxT.mjs +92 -0
- package/dist/postcss-html-transform.d.ts +3 -3
- package/dist/postcss-html-transform.js +7 -10
- package/dist/postcss-html-transform.mjs +3 -6
- package/dist/postcss.d.ts +15 -0
- package/dist/postcss.js +280 -0
- package/dist/postcss.mjs +270 -0
- package/dist/presets/hbuilderx.d.ts +4 -0
- package/dist/presets/index.d.ts +3 -0
- package/dist/presets/shared.d.ts +10 -0
- package/dist/presets/taro.d.ts +4 -0
- package/dist/presets/uni-app-x.d.ts +16 -0
- package/dist/presets/uni-app.d.ts +4 -0
- package/dist/presets.d.ts +1 -76
- package/dist/presets.js +115 -163
- package/dist/presets.mjs +107 -163
- package/dist/recorder-gYSNLfOP.js +2878 -0
- package/dist/recorder-zsgatmkB.mjs +2763 -0
- package/dist/reset/index.d.ts +2 -0
- package/dist/reset.d.ts +1 -4
- package/dist/reset.js +19 -8
- package/dist/reset.mjs +2 -8
- package/dist/shared/classname-transform.d.ts +14 -0
- package/dist/shared/mpx.d.ts +7 -0
- package/dist/shared/tailwindcss-css-redirect.d.ts +1 -0
- package/dist/tailwindcss/index.d.ts +11 -0
- package/dist/tailwindcss/miniprogram.d.ts +1 -0
- package/dist/tailwindcss/patcher-options.d.ts +56 -0
- package/dist/tailwindcss/patcher-resolve.d.ts +4 -0
- package/dist/tailwindcss/patcher.d.ts +13 -0
- package/dist/tailwindcss/recorder.d.ts +13 -0
- package/dist/tailwindcss/remove-unsupported-css.d.ts +2 -0
- package/dist/tailwindcss/runtime/cache.d.ts +11 -0
- package/dist/tailwindcss/runtime-logs.d.ts +3 -0
- package/dist/tailwindcss/runtime.d.ts +29 -0
- package/dist/tailwindcss/targets/paths.d.ts +13 -0
- package/dist/tailwindcss/targets/record-io.d.ts +5 -0
- package/dist/tailwindcss/targets/recorder.d.ts +3 -0
- package/dist/tailwindcss/targets/types.d.ts +35 -0
- package/dist/tailwindcss/targets.d.ts +6 -0
- package/dist/tailwindcss/v3-engine/generator.d.ts +2 -0
- package/dist/tailwindcss/v3-engine/index.d.ts +4 -0
- package/dist/tailwindcss/v3-engine/miniprogram.d.ts +4 -0
- package/dist/tailwindcss/v3-engine/source.d.ts +5 -0
- package/dist/tailwindcss/v3-engine/types.d.ts +55 -0
- package/dist/tailwindcss/v4/config.d.ts +5 -0
- package/dist/tailwindcss/v4/css-entries.d.ts +7 -0
- package/dist/tailwindcss/v4/index.d.ts +2 -0
- package/dist/tailwindcss/v4/multi-patcher.d.ts +2 -0
- package/dist/tailwindcss/v4/patcher-options.d.ts +24 -0
- package/dist/tailwindcss/v4/patcher.d.ts +14 -0
- package/dist/tailwindcss/v4-engine/candidates.d.ts +2 -0
- package/dist/tailwindcss/v4-engine/design-system.d.ts +1 -0
- package/dist/tailwindcss/v4-engine/generator.d.ts +2 -0
- package/dist/tailwindcss/v4-engine/index.d.ts +5 -0
- package/dist/tailwindcss/v4-engine/miniprogram.d.ts +5 -0
- package/dist/tailwindcss/v4-engine/source.d.ts +7 -0
- package/dist/tailwindcss/v4-engine/tailwind-v3-compatibility.d.ts +1 -0
- package/dist/tailwindcss/v4-engine/tailwind-v3-default-colors.d.ts +1 -0
- package/dist/tailwindcss/v4-engine/tailwind-v4-default-colors.d.ts +1 -0
- package/dist/tailwindcss/v4-engine/types.d.ts +19 -0
- package/dist/typedoc.export.d.ts +5 -0
- package/dist/types/base.d.ts +1 -0
- package/dist/types/disabled-options.d.ts +4 -0
- package/dist/types/index.d.ts +104 -0
- package/dist/types/shared.d.ts +7 -0
- package/dist/types/user-defined-options/general.d.ts +31 -0
- package/dist/types/user-defined-options/important.d.ts +37 -0
- package/dist/types/user-defined-options/index.d.ts +11 -0
- package/dist/types/user-defined-options/lifecycle.d.ts +6 -0
- package/dist/types/user-defined-options/matcher.d.ts +9 -0
- package/dist/types.d.ts +1 -150
- package/dist/types.js +0 -1
- package/dist/types.mjs +1 -1
- package/dist/uni-app-x/component-local-style.d.ts +19 -0
- package/dist/uni-app-x/index.d.ts +2 -0
- package/dist/uni-app-x/options.d.ts +12 -0
- package/dist/uni-app-x/style-isolation.d.ts +2 -0
- package/dist/uni-app-x/transform.d.ts +9 -0
- package/dist/uni-app-x/vite.d.ts +36 -0
- package/dist/utils/decode.d.ts +2 -0
- package/dist/utils/disabled.d.ts +6 -0
- package/dist/utils/hbuilderx.d.ts +5 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/nameMatcher.d.ts +4 -0
- package/dist/utils/resolve-package.d.ts +1 -0
- package/dist/utils/uni-platform.d.ts +11 -0
- package/dist/utils-7DUGTFED.mjs +48 -0
- package/dist/utils-DmC9_In3.js +61 -0
- package/dist/vite-BC9U7ahn.js +2199 -0
- package/dist/vite-CrlzCNqz.mjs +2186 -0
- package/dist/vite.d.ts +4 -17
- package/dist/vite.js +5 -14
- package/dist/vite.mjs +2 -14
- package/dist/weapp-tw-css-import-rewrite-loader.js +59 -92
- package/dist/weapp-tw-runtime-classset-loader.js +31 -50
- package/dist/webpack-Bu6M-Hbw.mjs +441 -0
- package/dist/webpack-DD7A6V0u.js +456 -0
- package/dist/webpack.d.ts +4 -25
- package/dist/webpack.js +6 -17
- package/dist/webpack.mjs +2 -17
- package/dist/webpack4.d.ts +4 -26
- package/dist/webpack4.js +375 -481
- package/dist/webpack4.mjs +366 -482
- package/dist/wxml/Tokenizer.d.ts +15 -0
- package/dist/wxml/custom-attributes.d.ts +4 -0
- package/dist/wxml/index.d.ts +2 -0
- package/dist/wxml/shared.d.ts +2 -0
- package/dist/wxml/tokenizer/types.d.ts +18 -0
- package/dist/wxml/utils/codegen/legacy-rewriter.d.ts +2 -0
- package/dist/wxml/utils/codegen/legacy-visitor.d.ts +8 -0
- package/dist/wxml/utils/codegen.d.ts +2 -0
- package/dist/wxml/utils/custom-template.d.ts +3 -0
- package/dist/wxml/utils/fragment-helpers.d.ts +6 -0
- package/dist/wxml/utils/fragment-updater.d.ts +4 -0
- package/dist/wxml/utils/template-fragments.d.ts +3 -0
- package/dist/wxml/utils.d.ts +8 -0
- package/dist/wxml/whitespace.d.ts +2 -0
- package/generator-placeholder.css +1 -0
- package/package.json +19 -8
- package/dist/chunk-24AGZQVR.js +0 -183
- package/dist/chunk-3VQKDHGP.mjs +0 -179
- package/dist/chunk-4AFQP74Z.js +0 -24
- package/dist/chunk-57SOQCAU.mjs +0 -582
- package/dist/chunk-5ZYHNDEK.mjs +0 -2439
- package/dist/chunk-76S2EME4.mjs +0 -34
- package/dist/chunk-A5PB4KZT.js +0 -138
- package/dist/chunk-DUHYLR2R.js +0 -276
- package/dist/chunk-DYLQ6UOI.js +0 -71
- package/dist/chunk-E7I5TW5K.js +0 -52
- package/dist/chunk-FS2NOOEB.js +0 -292
- package/dist/chunk-HVNGIKLS.js +0 -3930
- package/dist/chunk-JZQBZHN5.js +0 -579
- package/dist/chunk-KGTVD4EP.mjs +0 -3930
- package/dist/chunk-NNOQDMUP.mjs +0 -10
- package/dist/chunk-OF6MFURR.js +0 -34
- package/dist/chunk-OFB2KBRP.js +0 -2442
- package/dist/chunk-OOHJLO5M.mjs +0 -71
- package/dist/chunk-PCDYXXSK.mjs +0 -1515
- package/dist/chunk-RKISS72P.js +0 -7
- package/dist/chunk-RRQZL7FQ.mjs +0 -292
- package/dist/chunk-XAKAD2CR.mjs +0 -138
- package/dist/chunk-XZP3MREK.mjs +0 -276
- package/dist/chunk-ZAA5ZG3D.js +0 -1518
- package/dist/chunk-ZCH4YINE.mjs +0 -52
- package/dist/cli.d.mts +0 -2
- package/dist/core.d.mts +0 -26
- package/dist/css-macro/postcss.d.mts +0 -7
- package/dist/css-macro.d.mts +0 -18
- package/dist/defaults.d.mts +0 -11
- package/dist/gulp.d.mts +0 -24
- package/dist/index-BXrmQelt.d.mts +0 -672
- package/dist/index-BXrmQelt.d.ts +0 -672
- package/dist/index.d.mts +0 -15
- package/dist/postcss-html-transform.d.mts +0 -2
- package/dist/presets.d.mts +0 -76
- package/dist/reset.d.mts +0 -1
- package/dist/types.d.mts +0 -150
- package/dist/vite.d.mts +0 -17
- package/dist/webpack.d.mts +0 -25
- package/dist/webpack4.d.mts +0 -26
package/dist/chunk-76S2EME4.mjs
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
// src/bundlers/shared/cache.ts
|
|
2
|
-
async function processCachedTask({
|
|
3
|
-
cache,
|
|
4
|
-
cacheKey,
|
|
5
|
-
hashKey = cacheKey,
|
|
6
|
-
rawSource,
|
|
7
|
-
hash,
|
|
8
|
-
readCache,
|
|
9
|
-
applyResult,
|
|
10
|
-
transform,
|
|
11
|
-
onCacheHit
|
|
12
|
-
}) {
|
|
13
|
-
let cacheHit = false;
|
|
14
|
-
const result = await cache.process({
|
|
15
|
-
key: cacheKey,
|
|
16
|
-
hashKey,
|
|
17
|
-
rawSource,
|
|
18
|
-
hash,
|
|
19
|
-
resolveCache: readCache,
|
|
20
|
-
async onCacheHit(value) {
|
|
21
|
-
cacheHit = true;
|
|
22
|
-
await applyResult(value);
|
|
23
|
-
onCacheHit?.();
|
|
24
|
-
},
|
|
25
|
-
transform
|
|
26
|
-
});
|
|
27
|
-
if (!cacheHit) {
|
|
28
|
-
await applyResult(result);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export {
|
|
33
|
-
processCachedTask
|
|
34
|
-
};
|
package/dist/chunk-A5PB4KZT.js
DELETED
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
-
|
|
3
|
-
var _chunkDYLQ6UOIjs = require('./chunk-DYLQ6UOI.js');
|
|
4
|
-
|
|
5
|
-
// src/defaults.ts
|
|
6
|
-
var _escape = require('@weapp-core/escape');
|
|
7
|
-
var CSS_FILE_PATTERN = /.+\.(?:wx|ac|jx|tt|q|c|ty)ss$/;
|
|
8
|
-
var HTML_FILE_PATTERN = /.+\.(?:(?:wx|ax|jx|ks|tt|q|ty|xhs)ml|swan)$/;
|
|
9
|
-
var JS_FILE_PATTERN = /.+\.[cm]?js?$/;
|
|
10
|
-
var BACKSLASH_RE = /\\/g;
|
|
11
|
-
function normalizePath(p) {
|
|
12
|
-
return p.replace(BACKSLASH_RE, "/");
|
|
13
|
-
}
|
|
14
|
-
var MPX_STYLES_DIR_PATTERN = /(?:^|\/)styles\/.*\.(?:wx|ac|jx|tt|q|c|ty)ss$/i;
|
|
15
|
-
var KBONE_MAIN_CSS_RE = /^(?:common\/)?miniprogram-app/;
|
|
16
|
-
var IMPLICIT_MAIN_CSS_RE = /^(?:app|common\/main|bundle)(?:\.|\/|$)/;
|
|
17
|
-
var MAIN_CSS_CHUNK_MATCHERS = {
|
|
18
|
-
"uni-app": (file) => file.startsWith("common/main") || file.startsWith("app"),
|
|
19
|
-
"uni-app-vite": (file) => file.startsWith("app") || file.startsWith("common/main"),
|
|
20
|
-
"uni-app-x": (file) => file.startsWith("app") || file.startsWith("common/main"),
|
|
21
|
-
"mpx": (file) => {
|
|
22
|
-
const normalized = normalizePath(file);
|
|
23
|
-
if (normalized.startsWith("app")) {
|
|
24
|
-
return true;
|
|
25
|
-
}
|
|
26
|
-
return MPX_STYLES_DIR_PATTERN.test(normalized);
|
|
27
|
-
},
|
|
28
|
-
"taro": (file) => file.startsWith("app"),
|
|
29
|
-
"remax": (file) => file.startsWith("app"),
|
|
30
|
-
"rax": (file) => file.startsWith("bundle"),
|
|
31
|
-
"native": (file) => file.startsWith("app"),
|
|
32
|
-
"weapp-vite": (file) => file.startsWith("app"),
|
|
33
|
-
"kbone": (file) => KBONE_MAIN_CSS_RE.test(file)
|
|
34
|
-
};
|
|
35
|
-
var alwaysFalse = () => false;
|
|
36
|
-
function createMainCssChunkMatcher() {
|
|
37
|
-
return (file, appType) => {
|
|
38
|
-
if (!appType) {
|
|
39
|
-
const normalized = normalizePath(file);
|
|
40
|
-
return IMPLICIT_MAIN_CSS_RE.test(normalized) || MPX_STYLES_DIR_PATTERN.test(normalized) || KBONE_MAIN_CSS_RE.test(normalized);
|
|
41
|
-
}
|
|
42
|
-
const matcher = MAIN_CSS_CHUNK_MATCHERS[appType];
|
|
43
|
-
return matcher ? matcher(file) : true;
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
function getDefaultOptions() {
|
|
47
|
-
return {
|
|
48
|
-
/**
|
|
49
|
-
* wxss 微信小程序
|
|
50
|
-
* acss 支付宝小程序
|
|
51
|
-
* jxss 京东小程序
|
|
52
|
-
* ttss 头条小程序
|
|
53
|
-
* qss QQ小程序
|
|
54
|
-
* css 最正常的样式文件
|
|
55
|
-
* tyss 涂鸦小程序
|
|
56
|
-
*/
|
|
57
|
-
cssMatcher: (file) => CSS_FILE_PATTERN.test(file),
|
|
58
|
-
/**
|
|
59
|
-
* wxml 微信小程序
|
|
60
|
-
* axml 支付宝小程序
|
|
61
|
-
* jxml 京东小程序
|
|
62
|
-
* ksml 快手小程序
|
|
63
|
-
* ttml 头条小程序
|
|
64
|
-
* qml QQ小程序
|
|
65
|
-
* tyml 涂鸦小程序
|
|
66
|
-
* xhsml 小红书小程序
|
|
67
|
-
* swan 百度小程序
|
|
68
|
-
*/
|
|
69
|
-
htmlMatcher: (file) => HTML_FILE_PATTERN.test(file),
|
|
70
|
-
jsMatcher: (file) => {
|
|
71
|
-
if (file.includes("node_modules")) {
|
|
72
|
-
return false;
|
|
73
|
-
}
|
|
74
|
-
return JS_FILE_PATTERN.test(file);
|
|
75
|
-
},
|
|
76
|
-
mainCssChunkMatcher: createMainCssChunkMatcher(),
|
|
77
|
-
wxsMatcher: alwaysFalse,
|
|
78
|
-
// 参考:https://tailwindcss.com/docs/preflight#border-styles-are-reset-globally
|
|
79
|
-
cssPreflight: {
|
|
80
|
-
"box-sizing": "border-box",
|
|
81
|
-
"border-width": "0",
|
|
82
|
-
"border-style": "solid",
|
|
83
|
-
"border-color": "currentColor"
|
|
84
|
-
},
|
|
85
|
-
disabled: false,
|
|
86
|
-
onLoad: _chunkDYLQ6UOIjs.noop,
|
|
87
|
-
onStart: _chunkDYLQ6UOIjs.noop,
|
|
88
|
-
onEnd: _chunkDYLQ6UOIjs.noop,
|
|
89
|
-
onUpdate: _chunkDYLQ6UOIjs.noop,
|
|
90
|
-
customAttributes: {},
|
|
91
|
-
customReplaceDictionary: _escape.MappingChars2String,
|
|
92
|
-
appType: void 0,
|
|
93
|
-
arbitraryValues: {
|
|
94
|
-
allowDoubleQuotes: false
|
|
95
|
-
},
|
|
96
|
-
cssChildCombinatorReplaceValue: ["view", "text"],
|
|
97
|
-
inlineWxs: false,
|
|
98
|
-
injectAdditionalCssVarScope: false,
|
|
99
|
-
rewriteCssImports: true,
|
|
100
|
-
jsPreserveClass: (keyword) => {
|
|
101
|
-
if (keyword === "*") {
|
|
102
|
-
return true;
|
|
103
|
-
}
|
|
104
|
-
return false;
|
|
105
|
-
},
|
|
106
|
-
staleClassNameFallback: void 0,
|
|
107
|
-
disabledDefaultTemplateHandler: false,
|
|
108
|
-
cssSelectorReplacement: {
|
|
109
|
-
root: ["page", ".tw-root", "wx-root-portal-content"],
|
|
110
|
-
universal: ["view", "text"]
|
|
111
|
-
},
|
|
112
|
-
babelParserOptions: {
|
|
113
|
-
sourceType: "unambiguous",
|
|
114
|
-
cache: true,
|
|
115
|
-
// 预计算好的 cacheKey,避免重复对选项进行 JSON.stringify
|
|
116
|
-
cacheKey: "st:unambiguous"
|
|
117
|
-
},
|
|
118
|
-
postcssOptions: {},
|
|
119
|
-
// 开发版本微信小程序工具和小米13手机上 @property 是有效果的
|
|
120
|
-
// 支付宝小程序会直接挂掉
|
|
121
|
-
// https://developer.mozilla.org/en-US/docs/Web/CSS/@property
|
|
122
|
-
cssRemoveProperty: true,
|
|
123
|
-
cssRemoveHoverPseudoClass: true,
|
|
124
|
-
ignoreCallExpressionIdentifiers: [],
|
|
125
|
-
ignoreTaggedTemplateExpressionIdentifiers: ["weappTwIgnore"],
|
|
126
|
-
replaceRuntimePackages: false,
|
|
127
|
-
tailwindcssPatcherOptions: {
|
|
128
|
-
filter(className) {
|
|
129
|
-
return !_escape.isAllowedClassName.call(void 0, className);
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
logLevel: "info"
|
|
133
|
-
};
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
exports.getDefaultOptions = getDefaultOptions;
|
package/dist/chunk-DUHYLR2R.js
DELETED
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
-
|
|
3
|
-
var _chunkOF6MFURRjs = require('./chunk-OF6MFURR.js');
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var _chunkHVNGIKLSjs = require('./chunk-HVNGIKLS.js');
|
|
12
|
-
|
|
13
|
-
// src/bundlers/gulp/index.ts
|
|
14
|
-
var _buffer = require('buffer');
|
|
15
|
-
var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
|
|
16
|
-
var _path = require('path'); var _path2 = _interopRequireDefault(_path);
|
|
17
|
-
var _process = require('process'); var _process2 = _interopRequireDefault(_process);
|
|
18
|
-
var _stream = require('stream'); var _stream2 = _interopRequireDefault(_stream);
|
|
19
|
-
var debug = _chunkHVNGIKLSjs.createDebug.call(void 0, );
|
|
20
|
-
var Transform = _stream2.default.Transform;
|
|
21
|
-
function createPlugins(options = {}) {
|
|
22
|
-
const opts = _chunkHVNGIKLSjs.getCompilerContext.call(void 0, options);
|
|
23
|
-
const { templateHandler, styleHandler, jsHandler, cache, twPatcher: initialTwPatcher, refreshTailwindcssPatcher } = opts;
|
|
24
|
-
const patchRecorderState = _chunkHVNGIKLSjs.setupPatchRecorder.call(void 0, initialTwPatcher, opts.tailwindcssBasedir, {
|
|
25
|
-
source: "runtime",
|
|
26
|
-
cwd: _nullishCoalesce(opts.tailwindcssBasedir, () => ( _process2.default.cwd()))
|
|
27
|
-
});
|
|
28
|
-
let runtimeSet = /* @__PURE__ */ new Set();
|
|
29
|
-
const runtimeState = {
|
|
30
|
-
twPatcher: initialTwPatcher,
|
|
31
|
-
patchPromise: patchRecorderState.patchPromise,
|
|
32
|
-
refreshTailwindcssPatcher,
|
|
33
|
-
onPatchCompleted: patchRecorderState.onPatchCompleted
|
|
34
|
-
};
|
|
35
|
-
const defaultStyleHandlerOptionsCache = /* @__PURE__ */ new Map();
|
|
36
|
-
let cachedDefaultTemplateHandlerOptions;
|
|
37
|
-
let cachedDefaultTemplateRuntimeSet;
|
|
38
|
-
let cachedDefaultModuleGraphOptions;
|
|
39
|
-
const MODULE_EXTENSIONS = [".js", ".mjs", ".cjs", ".ts", ".tsx", ".jsx"];
|
|
40
|
-
let runtimeSetInitialized = false;
|
|
41
|
-
async function refreshRuntimeState(force) {
|
|
42
|
-
await _chunkHVNGIKLSjs.refreshTailwindRuntimeState.call(void 0, runtimeState, force);
|
|
43
|
-
}
|
|
44
|
-
async function refreshRuntimeSet(force = false) {
|
|
45
|
-
if (!force && runtimeSetInitialized) {
|
|
46
|
-
return runtimeSet;
|
|
47
|
-
}
|
|
48
|
-
runtimeSet = await _chunkHVNGIKLSjs.ensureRuntimeClassSet.call(void 0, runtimeState, {
|
|
49
|
-
forceRefresh: force,
|
|
50
|
-
forceCollect: force,
|
|
51
|
-
clearCache: force,
|
|
52
|
-
allowEmpty: false
|
|
53
|
-
});
|
|
54
|
-
runtimeSetInitialized = true;
|
|
55
|
-
return runtimeSet;
|
|
56
|
-
}
|
|
57
|
-
function resolveWithExtensions(base) {
|
|
58
|
-
for (const ext of MODULE_EXTENSIONS) {
|
|
59
|
-
const candidate = `${base}${ext}`;
|
|
60
|
-
try {
|
|
61
|
-
if (_fs2.default.statSync(candidate).isFile()) {
|
|
62
|
-
return candidate;
|
|
63
|
-
}
|
|
64
|
-
} catch (e) {
|
|
65
|
-
continue;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
return void 0;
|
|
69
|
-
}
|
|
70
|
-
function resolveLocalModuleCandidate(base) {
|
|
71
|
-
try {
|
|
72
|
-
const stat = _fs2.default.statSync(base);
|
|
73
|
-
if (stat.isFile()) {
|
|
74
|
-
return base;
|
|
75
|
-
}
|
|
76
|
-
if (stat.isDirectory()) {
|
|
77
|
-
const resolvedIndex = resolveWithExtensions(_path2.default.join(base, "index"));
|
|
78
|
-
if (resolvedIndex) {
|
|
79
|
-
return resolvedIndex;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
} catch (e2) {
|
|
83
|
-
}
|
|
84
|
-
if (!_path2.default.extname(base)) {
|
|
85
|
-
return resolveWithExtensions(base);
|
|
86
|
-
}
|
|
87
|
-
return void 0;
|
|
88
|
-
}
|
|
89
|
-
function createModuleGraphOptionsFor() {
|
|
90
|
-
return {
|
|
91
|
-
resolve(specifier, importer) {
|
|
92
|
-
if (!specifier) {
|
|
93
|
-
return void 0;
|
|
94
|
-
}
|
|
95
|
-
if (!specifier.startsWith(".") && !_path2.default.isAbsolute(specifier)) {
|
|
96
|
-
return void 0;
|
|
97
|
-
}
|
|
98
|
-
const normalized = _path2.default.resolve(_path2.default.dirname(importer), specifier);
|
|
99
|
-
return resolveLocalModuleCandidate(normalized);
|
|
100
|
-
},
|
|
101
|
-
load(id) {
|
|
102
|
-
try {
|
|
103
|
-
return _fs2.default.readFileSync(id, "utf8");
|
|
104
|
-
} catch (e3) {
|
|
105
|
-
return void 0;
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
filter(id) {
|
|
109
|
-
const relative = _path2.default.relative(_process2.default.cwd(), id);
|
|
110
|
-
return opts.jsMatcher(relative) || opts.wxsMatcher(relative);
|
|
111
|
-
}
|
|
112
|
-
};
|
|
113
|
-
}
|
|
114
|
-
function resolveModuleGraphOptions(moduleGraph) {
|
|
115
|
-
if (moduleGraph) {
|
|
116
|
-
return moduleGraph;
|
|
117
|
-
}
|
|
118
|
-
if (!cachedDefaultModuleGraphOptions) {
|
|
119
|
-
cachedDefaultModuleGraphOptions = createModuleGraphOptionsFor();
|
|
120
|
-
}
|
|
121
|
-
return cachedDefaultModuleGraphOptions;
|
|
122
|
-
}
|
|
123
|
-
function createVinylTransform(handler) {
|
|
124
|
-
return new Transform({
|
|
125
|
-
objectMode: true,
|
|
126
|
-
async transform(file, _encoding, callback) {
|
|
127
|
-
try {
|
|
128
|
-
await handler(file);
|
|
129
|
-
callback(null, file);
|
|
130
|
-
} catch (error) {
|
|
131
|
-
callback(error, file);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
});
|
|
135
|
-
}
|
|
136
|
-
function resolveWxssHandlerOptions(options2) {
|
|
137
|
-
const majorVersion = _nullishCoalesce(runtimeState.twPatcher.majorVersion, () => ( "unknown"));
|
|
138
|
-
if (!options2 || Object.keys(options2).length === 0) {
|
|
139
|
-
let cached = defaultStyleHandlerOptionsCache.get(majorVersion);
|
|
140
|
-
if (!cached) {
|
|
141
|
-
cached = {
|
|
142
|
-
isMainChunk: true,
|
|
143
|
-
majorVersion: runtimeState.twPatcher.majorVersion
|
|
144
|
-
};
|
|
145
|
-
defaultStyleHandlerOptionsCache.set(majorVersion, cached);
|
|
146
|
-
}
|
|
147
|
-
return cached;
|
|
148
|
-
}
|
|
149
|
-
return {
|
|
150
|
-
isMainChunk: true,
|
|
151
|
-
majorVersion: runtimeState.twPatcher.majorVersion,
|
|
152
|
-
...options2
|
|
153
|
-
};
|
|
154
|
-
}
|
|
155
|
-
function resolveWxmlHandlerOptions(options2) {
|
|
156
|
-
if (!options2 || Object.keys(options2).length === 0) {
|
|
157
|
-
if (cachedDefaultTemplateRuntimeSet !== runtimeSet || !cachedDefaultTemplateHandlerOptions) {
|
|
158
|
-
cachedDefaultTemplateRuntimeSet = runtimeSet;
|
|
159
|
-
cachedDefaultTemplateHandlerOptions = {
|
|
160
|
-
runtimeSet
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
return cachedDefaultTemplateHandlerOptions;
|
|
164
|
-
}
|
|
165
|
-
return {
|
|
166
|
-
runtimeSet,
|
|
167
|
-
...options2
|
|
168
|
-
};
|
|
169
|
-
}
|
|
170
|
-
const transformWxss = (options2 = {}) => createVinylTransform(async (file) => {
|
|
171
|
-
if (!file.contents) {
|
|
172
|
-
return;
|
|
173
|
-
}
|
|
174
|
-
await refreshRuntimeState(true);
|
|
175
|
-
await runtimeState.patchPromise;
|
|
176
|
-
const rawSource = file.contents.toString();
|
|
177
|
-
await _chunkOF6MFURRjs.processCachedTask.call(void 0, {
|
|
178
|
-
cache,
|
|
179
|
-
cacheKey: file.path,
|
|
180
|
-
rawSource,
|
|
181
|
-
applyResult(source) {
|
|
182
|
-
file.contents = _buffer.Buffer.from(source);
|
|
183
|
-
},
|
|
184
|
-
onCacheHit() {
|
|
185
|
-
debug("css cache hit: %s", file.path);
|
|
186
|
-
},
|
|
187
|
-
async transform() {
|
|
188
|
-
await runtimeState.patchPromise;
|
|
189
|
-
const { css } = await styleHandler(rawSource, resolveWxssHandlerOptions(options2));
|
|
190
|
-
debug("css handle: %s", file.path);
|
|
191
|
-
return {
|
|
192
|
-
result: css
|
|
193
|
-
};
|
|
194
|
-
}
|
|
195
|
-
});
|
|
196
|
-
});
|
|
197
|
-
const transformJs = (options2 = {}) => createVinylTransform(async (file) => {
|
|
198
|
-
if (!file.contents) {
|
|
199
|
-
return;
|
|
200
|
-
}
|
|
201
|
-
await refreshRuntimeSet(false);
|
|
202
|
-
await runtimeState.patchPromise;
|
|
203
|
-
const filename = _path2.default.resolve(file.path);
|
|
204
|
-
const moduleGraph = resolveModuleGraphOptions(options2.moduleGraph);
|
|
205
|
-
const handlerOptions = {
|
|
206
|
-
...options2,
|
|
207
|
-
filename,
|
|
208
|
-
moduleGraph,
|
|
209
|
-
tailwindcssMajorVersion: runtimeState.twPatcher.majorVersion,
|
|
210
|
-
babelParserOptions: {
|
|
211
|
-
..._nullishCoalesce(_optionalChain([options2, 'optionalAccess', _ => _.babelParserOptions]), () => ( {})),
|
|
212
|
-
sourceFilename: filename
|
|
213
|
-
}
|
|
214
|
-
};
|
|
215
|
-
const rawSource = file.contents.toString();
|
|
216
|
-
await _chunkOF6MFURRjs.processCachedTask.call(void 0, {
|
|
217
|
-
cache,
|
|
218
|
-
cacheKey: file.path,
|
|
219
|
-
rawSource,
|
|
220
|
-
applyResult(source) {
|
|
221
|
-
file.contents = _buffer.Buffer.from(source);
|
|
222
|
-
},
|
|
223
|
-
onCacheHit() {
|
|
224
|
-
debug("js cache hit: %s", file.path);
|
|
225
|
-
},
|
|
226
|
-
async transform() {
|
|
227
|
-
await runtimeState.patchPromise;
|
|
228
|
-
const currentSource = _nullishCoalesce(_optionalChain([file, 'access', _2 => _2.contents, 'optionalAccess', _3 => _3.toString, 'call', _4 => _4()]), () => ( rawSource));
|
|
229
|
-
if (_chunkHVNGIKLSjs.shouldSkipJsTransform.call(void 0, currentSource, handlerOptions)) {
|
|
230
|
-
return { result: currentSource };
|
|
231
|
-
}
|
|
232
|
-
const { code } = await jsHandler(currentSource, runtimeSet, handlerOptions);
|
|
233
|
-
debug("js handle: %s", file.path);
|
|
234
|
-
return {
|
|
235
|
-
result: code
|
|
236
|
-
};
|
|
237
|
-
}
|
|
238
|
-
});
|
|
239
|
-
});
|
|
240
|
-
const transformWxml = (options2 = {}) => createVinylTransform(async (file) => {
|
|
241
|
-
if (!file.contents) {
|
|
242
|
-
return;
|
|
243
|
-
}
|
|
244
|
-
await refreshRuntimeSet(false);
|
|
245
|
-
await runtimeState.patchPromise;
|
|
246
|
-
const rawSource = file.contents.toString();
|
|
247
|
-
await _chunkOF6MFURRjs.processCachedTask.call(void 0, {
|
|
248
|
-
cache,
|
|
249
|
-
cacheKey: file.path,
|
|
250
|
-
rawSource,
|
|
251
|
-
applyResult(source) {
|
|
252
|
-
file.contents = _buffer.Buffer.from(source);
|
|
253
|
-
},
|
|
254
|
-
onCacheHit() {
|
|
255
|
-
debug("html cache hit: %s", file.path);
|
|
256
|
-
},
|
|
257
|
-
async transform() {
|
|
258
|
-
await runtimeState.patchPromise;
|
|
259
|
-
const code = await templateHandler(rawSource, resolveWxmlHandlerOptions(options2));
|
|
260
|
-
debug("html handle: %s", file.path);
|
|
261
|
-
return {
|
|
262
|
-
result: code
|
|
263
|
-
};
|
|
264
|
-
}
|
|
265
|
-
});
|
|
266
|
-
});
|
|
267
|
-
return {
|
|
268
|
-
transformWxss,
|
|
269
|
-
transformWxml,
|
|
270
|
-
transformJs
|
|
271
|
-
};
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
exports.createPlugins = createPlugins;
|
package/dist/chunk-DYLQ6UOI.js
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/utils/index.ts
|
|
2
|
-
var _shared = require('@weapp-tailwindcss/shared');
|
|
3
|
-
|
|
4
|
-
// src/utils/hbuilderx.ts
|
|
5
|
-
var _path = require('path'); var _path2 = _interopRequireDefault(_path);
|
|
6
|
-
var _process = require('process'); var _process2 = _interopRequireDefault(_process);
|
|
7
|
-
|
|
8
|
-
// src/utils/uni-platform.ts
|
|
9
|
-
|
|
10
|
-
function normalizePlatform(value) {
|
|
11
|
-
return _optionalChain([value, 'optionalAccess', _ => _.trim, 'call', _2 => _2(), 'access', _3 => _3.toLowerCase, 'call', _4 => _4()]) || void 0;
|
|
12
|
-
}
|
|
13
|
-
function resolveUniUtsPlatform(value = _process2.default.env.UNI_UTS_PLATFORM) {
|
|
14
|
-
const normalized = normalizePlatform(value);
|
|
15
|
-
const isAppAndroid = normalized === "app-android";
|
|
16
|
-
const isAppIos = normalized === "app-ios";
|
|
17
|
-
const isAppHarmony = normalized === "app-harmony";
|
|
18
|
-
const isApp = _optionalChain([normalized, 'optionalAccess', _5 => _5.startsWith, 'call', _6 => _6("app-")]) === true || normalized === "app" || normalized === "app-plus";
|
|
19
|
-
const isMp = _optionalChain([normalized, 'optionalAccess', _7 => _7.startsWith, 'call', _8 => _8("mp-")]) === true;
|
|
20
|
-
const isWeb = _optionalChain([normalized, 'optionalAccess', _9 => _9.startsWith, 'call', _10 => _10("web")]) === true || normalized === "h5";
|
|
21
|
-
return {
|
|
22
|
-
raw: value,
|
|
23
|
-
normalized,
|
|
24
|
-
isApp,
|
|
25
|
-
isAppAndroid,
|
|
26
|
-
isAppHarmony,
|
|
27
|
-
isAppIos,
|
|
28
|
-
isMp,
|
|
29
|
-
isWeb
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// src/utils/index.ts
|
|
34
|
-
function classifyEntry(filename, options) {
|
|
35
|
-
if (options.cssMatcher(filename)) {
|
|
36
|
-
return "css";
|
|
37
|
-
}
|
|
38
|
-
if (options.htmlMatcher(filename)) {
|
|
39
|
-
return "html";
|
|
40
|
-
}
|
|
41
|
-
if (options.jsMatcher(filename) || options.wxsMatcher(filename)) {
|
|
42
|
-
return "js";
|
|
43
|
-
}
|
|
44
|
-
return "other";
|
|
45
|
-
}
|
|
46
|
-
function createEmptyGroups() {
|
|
47
|
-
return {
|
|
48
|
-
css: [],
|
|
49
|
-
html: [],
|
|
50
|
-
js: [],
|
|
51
|
-
other: []
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
function getGroupedEntries(entries, options) {
|
|
55
|
-
const groups = createEmptyGroups();
|
|
56
|
-
for (const entry of entries) {
|
|
57
|
-
const [filename] = entry;
|
|
58
|
-
const group = classifyEntry(filename, options);
|
|
59
|
-
groups[group].push(entry);
|
|
60
|
-
}
|
|
61
|
-
return groups;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
exports.resolveUniUtsPlatform = resolveUniUtsPlatform; exports.defu = _shared.defu; exports.defuOverrideArray = _shared.defuOverrideArray; exports.isMap = _shared.isMap; exports.noop = _shared.noop; exports.getGroupedEntries = getGroupedEntries;
|
package/dist/chunk-E7I5TW5K.js
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/css-macro/constants.ts
|
|
2
|
-
var queryKey = "weapp-tw-platform";
|
|
3
|
-
function createMediaQuery(value) {
|
|
4
|
-
return `@media (${queryKey}:"${value}"){&}`;
|
|
5
|
-
}
|
|
6
|
-
function createNegativeMediaQuery(value) {
|
|
7
|
-
return `@media not screen and (${queryKey}:"${value}"){&}`;
|
|
8
|
-
}
|
|
9
|
-
var UNESCAPED_UNDERSCORE_RE = /(?<!\\)_/g;
|
|
10
|
-
var WHITESPACE_RE = /\s+/g;
|
|
11
|
-
var LOGICAL_OPERATOR_RE = /\s*(\|\||&&)\s*/g;
|
|
12
|
-
function normalComment(text) {
|
|
13
|
-
if (typeof text === "string") {
|
|
14
|
-
const normalized = text.replaceAll(UNESCAPED_UNDERSCORE_RE, " ").replaceAll(WHITESPACE_RE, " ").trim();
|
|
15
|
-
if (normalized.includes("\\")) {
|
|
16
|
-
return normalized;
|
|
17
|
-
}
|
|
18
|
-
return normalized.replaceAll(LOGICAL_OPERATOR_RE, " $1 ").replaceAll(WHITESPACE_RE, " ").trim();
|
|
19
|
-
}
|
|
20
|
-
return text;
|
|
21
|
-
}
|
|
22
|
-
function ifdef(text) {
|
|
23
|
-
return {
|
|
24
|
-
start: `#ifdef ${normalComment(text)}`,
|
|
25
|
-
end: `#endif`
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
function ifndef(text) {
|
|
29
|
-
return {
|
|
30
|
-
start: `#ifndef ${normalComment(text)}`,
|
|
31
|
-
end: `#endif`
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
var QUERY_KEY_REGEX = new RegExp(`\\(\\s*${queryKey}\\s*:\\s*"([^)]*)"\\)`, "g");
|
|
35
|
-
function matchCustomPropertyFromValue(str, cb) {
|
|
36
|
-
let index = 0;
|
|
37
|
-
QUERY_KEY_REGEX.lastIndex = 0;
|
|
38
|
-
let arr = QUERY_KEY_REGEX.exec(str);
|
|
39
|
-
while (arr !== null) {
|
|
40
|
-
cb(arr, index);
|
|
41
|
-
index++;
|
|
42
|
-
arr = QUERY_KEY_REGEX.exec(str);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
exports.createMediaQuery = createMediaQuery; exports.createNegativeMediaQuery = createNegativeMediaQuery; exports.ifdef = ifdef; exports.ifndef = ifndef; exports.matchCustomPropertyFromValue = matchCustomPropertyFromValue;
|