@csszyx/unplugin 0.15.3 → 0.17.0
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/dist/index.cjs +8 -4
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +6 -4
- package/dist/jest-transform.cjs +186 -0
- package/dist/jest-transform.d.cts +112 -0
- package/dist/jest-transform.d.mts +110 -0
- package/dist/jest-transform.mjs +175 -0
- package/dist/next-prebuild.cjs +6 -5
- package/dist/next-prebuild.mjs +5 -4
- package/dist/next-turbo-loader.cjs +10 -8
- package/dist/next-turbo-loader.mjs +7 -5
- package/dist/next-watcher.cjs +3 -2
- package/dist/next-watcher.mjs +3 -2
- package/dist/shared/{unplugin.J6ue_lRJ.cjs → unplugin.2qOISpzl.cjs} +1 -114
- package/dist/shared/{unplugin.C-oQU1jl.mjs → unplugin.2uf-U76p.mjs} +1 -1
- package/dist/shared/{unplugin.Ceq-N4jI.mjs → unplugin.995yC_cN.mjs} +2 -110
- package/dist/shared/{unplugin.ZqxgHk5F.cjs → unplugin.9zs6T4Gf.cjs} +119 -92
- package/dist/shared/{unplugin.nvme_dSL.d.cts → unplugin.BO2_hyS3.d.cts} +54 -5
- package/dist/shared/{unplugin.DH_ij6cf.mjs → unplugin.Ba3O1r8M.mjs} +2 -6
- package/dist/shared/unplugin.BqKLlo1h.cjs +8 -0
- package/dist/shared/{unplugin.Vn9x8SBP.mjs → unplugin.C3bgc29e.mjs} +3 -2
- package/dist/shared/{unplugin.CPo2xrEy.mjs → unplugin.Cs4H9z9v.mjs} +91 -66
- package/dist/shared/{unplugin.BLptVbUe.mjs → unplugin.DPSQP5XG.mjs} +1 -1
- package/dist/shared/{unplugin.DDSWQJYX.cjs → unplugin.DS6CFjim.cjs} +3 -8
- package/dist/shared/{unplugin.gksolKh2.cjs → unplugin.DXzIP7lP.cjs} +5 -4
- package/dist/shared/unplugin.DcXM9sq5.mjs +109 -0
- package/dist/shared/unplugin.Defu9wGh.cjs +115 -0
- package/dist/shared/{unplugin.CInSoHdQ.d.mts → unplugin.DptK3pl4.d.mts} +54 -5
- package/dist/shared/{unplugin.BzF0V2kw.cjs → unplugin.YcnV3Izb.cjs} +6 -6
- package/dist/shared/{unplugin.BWnmKv07.cjs → unplugin.alhYXymJ.cjs} +1 -1
- package/dist/shared/unplugin.wMeicb6E.mjs +6 -0
- package/dist/vite.cjs +6 -4
- package/dist/vite.d.cts +2 -2
- package/dist/vite.d.mts +1 -1
- package/dist/vite.mjs +6 -4
- package/dist/webpack.cjs +6 -4
- package/dist/webpack.d.cts +1 -2
- package/dist/webpack.d.mts +1 -1
- package/dist/webpack.mjs +6 -4
- package/package.json +19 -9
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const LEADING_WHITESPACE_RE = /^\s+/;
|
|
4
|
+
const LINE_COMMENT_RE = /^\/\/[^\n]*(?:\n|$)/;
|
|
5
|
+
const BLOCK_COMMENT_RE = /^\/\*[\s\S]*?\*\//;
|
|
6
|
+
const USE_DIRECTIVE_RE = /^['"]use (?:client|server)['"];?\s*/;
|
|
7
|
+
function insertAfterUseDirective(code, insertion) {
|
|
8
|
+
let offset = 0;
|
|
9
|
+
while (offset < code.length) {
|
|
10
|
+
const triviaLength = leadingTriviaLength(code.slice(offset));
|
|
11
|
+
if (triviaLength === 0) break;
|
|
12
|
+
offset += triviaLength;
|
|
13
|
+
}
|
|
14
|
+
const directive = USE_DIRECTIVE_RE.exec(code.slice(offset));
|
|
15
|
+
if (!directive) return `${insertion}${code}`;
|
|
16
|
+
const insertionOffset = offset + directive[0].length;
|
|
17
|
+
return `${code.slice(0, insertionOffset)}${insertion}${code.slice(insertionOffset)}`;
|
|
18
|
+
}
|
|
19
|
+
function leadingTriviaLength(source) {
|
|
20
|
+
return LEADING_WHITESPACE_RE.exec(source)?.[0].length ?? LINE_COMMENT_RE.exec(source)?.[0].length ?? BLOCK_COMMENT_RE.exec(source)?.[0].length ?? 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const RUNTIME_IMPORT_CLAUSE_RE = /(?:import|export)\s+\{([^{}]*)\}\s*from\s*['"]@csszyx\/runtime['"]/g;
|
|
24
|
+
function clauseNames(clauseBody) {
|
|
25
|
+
const names = [];
|
|
26
|
+
for (const part of clauseBody.split(",")) {
|
|
27
|
+
const trimmed = part.trim();
|
|
28
|
+
if (!trimmed) {
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
const spaceAt = trimmed.search(/\s/);
|
|
32
|
+
names.push(spaceAt === -1 ? trimmed : trimmed.slice(0, spaceAt));
|
|
33
|
+
}
|
|
34
|
+
return names;
|
|
35
|
+
}
|
|
36
|
+
function importsRuntimeHelper(code, helper) {
|
|
37
|
+
RUNTIME_IMPORT_CLAUSE_RE.lastIndex = 0;
|
|
38
|
+
for (let match = RUNTIME_IMPORT_CLAUSE_RE.exec(code); match; match = RUNTIME_IMPORT_CLAUSE_RE.exec(code)) {
|
|
39
|
+
if (clauseNames(match[1]).includes(helper)) {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
const RUNTIME_IMPORT_APPEND_RE = /(import\s+\{[^{}]*)\}\s*from\s*['"]@csszyx\/runtime['"]/;
|
|
46
|
+
function findRuntimeImportClause(code) {
|
|
47
|
+
const match = RUNTIME_IMPORT_APPEND_RE.exec(code);
|
|
48
|
+
return match ? { statement: match[0], prefixWithBody: match[1] } : null;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function runtimeHelperGroupsFromUsage(usage) {
|
|
52
|
+
const slim = usage.usesSzPart === true && usage.szPartArgsProvable === true && usage.usesRuntime !== true && usage.usesMerge !== true;
|
|
53
|
+
const groups = { all: [], barrel: [], merge: [] };
|
|
54
|
+
const append = (helper, toMerge = false) => {
|
|
55
|
+
groups.all.push(helper);
|
|
56
|
+
(toMerge ? groups.merge : groups.barrel).push(helper);
|
|
57
|
+
};
|
|
58
|
+
if (usage.usesRuntime) append("_sz");
|
|
59
|
+
if (usage.usesMerge) append("_szMerge");
|
|
60
|
+
if (usage.usesSzcn) append("_szcn", slim);
|
|
61
|
+
if (usage.usesSzPart) append("_szPart", slim);
|
|
62
|
+
if (usage.usesSzvPick) append("__szvPick");
|
|
63
|
+
if (usage.usesSzvPick1) append("__szvPick1");
|
|
64
|
+
if (usage.usesColorVar) append("__szColorVar");
|
|
65
|
+
if (usage.usesSpacingVar) append("__szSpacingVar");
|
|
66
|
+
if (usage.usesUnitVar) append("__szUnitVar");
|
|
67
|
+
if (usage.usesBoolClass) append("__szBoolClass");
|
|
68
|
+
return groups;
|
|
69
|
+
}
|
|
70
|
+
function injectNextRuntimeImports(code, usage) {
|
|
71
|
+
const groups = runtimeHelperGroupsFromUsage(usage);
|
|
72
|
+
const helpers = groups.all;
|
|
73
|
+
if (helpers.length === 0) {
|
|
74
|
+
return { code, injected: [] };
|
|
75
|
+
}
|
|
76
|
+
const hasRuntimeImport = code.includes("@csszyx/runtime");
|
|
77
|
+
const missing = hasRuntimeImport ? helpers.filter((helper) => !importsRuntimeHelper(code, helper)) : helpers;
|
|
78
|
+
if (missing.length === 0) {
|
|
79
|
+
return { code, injected: [] };
|
|
80
|
+
}
|
|
81
|
+
if (groups.merge.length > 0) {
|
|
82
|
+
const mergeHelpers = missing.filter((helper) => groups.merge.includes(helper));
|
|
83
|
+
const barrelHelpers = missing.filter((helper) => groups.barrel.includes(helper));
|
|
84
|
+
let next = insertRuntimeImport(
|
|
85
|
+
code,
|
|
86
|
+
`import { ${mergeHelpers.join(", ")} } from '@csszyx/runtime/merge';
|
|
87
|
+
`
|
|
88
|
+
);
|
|
89
|
+
if (barrelHelpers.length > 0) {
|
|
90
|
+
next = insertRuntimeImport(
|
|
91
|
+
next,
|
|
92
|
+
`import { ${barrelHelpers.join(", ")} } from '@csszyx/runtime';
|
|
93
|
+
`
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
return { code: next, injected: missing };
|
|
97
|
+
}
|
|
98
|
+
return {
|
|
99
|
+
code: insertRuntimeImport(
|
|
100
|
+
code,
|
|
101
|
+
`import { ${missing.join(", ")} } from '@csszyx/runtime';
|
|
102
|
+
`
|
|
103
|
+
),
|
|
104
|
+
injected: missing
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
function insertRuntimeImport(code, importStmt) {
|
|
108
|
+
return insertAfterUseDirective(code, importStmt);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
exports.findRuntimeImportClause = findRuntimeImportClause;
|
|
112
|
+
exports.importsRuntimeHelper = importsRuntimeHelper;
|
|
113
|
+
exports.injectNextRuntimeImports = injectNextRuntimeImports;
|
|
114
|
+
exports.insertAfterUseDirective = insertAfterUseDirective;
|
|
115
|
+
exports.runtimeHelperGroupsFromUsage = runtimeHelperGroupsFromUsage;
|
|
@@ -523,6 +523,14 @@ interface PluginState {
|
|
|
523
523
|
* by a raw selector consumer.
|
|
524
524
|
*/
|
|
525
525
|
ownedClasses: Set<string>;
|
|
526
|
+
/**
|
|
527
|
+
* Owned classes that a mangle map WOULD carry: `ownedClasses` minus the
|
|
528
|
+
* authored ones and minus `manglePreserve`. Recorded whether or not
|
|
529
|
+
* mangling runs, because the bundle manifest lists them either way and used
|
|
530
|
+
* to read them off the map's keys — which is why the map had to be
|
|
531
|
+
* allocated on a build that never mangles.
|
|
532
|
+
*/
|
|
533
|
+
mangleEligible: string[];
|
|
526
534
|
/**
|
|
527
535
|
* Classes written through author-facing class/className attributes. Any
|
|
528
536
|
* overlap with ownedClasses must keep its original name because bundled
|
|
@@ -751,9 +759,18 @@ declare function unscopedMonorepoMessage(): string;
|
|
|
751
759
|
/**
|
|
752
760
|
* Whether a diagnostic is an advisory one — the class a build may hold back.
|
|
753
761
|
*
|
|
754
|
-
*
|
|
755
|
-
*
|
|
756
|
-
*
|
|
762
|
+
* Advisory means one thing: the styles are THERE, and the note is about how
|
|
763
|
+
* they got there. An `sz`-site nudge fallback took the runtime path where a
|
|
764
|
+
* compiled one was possible; the precedence advisory says which of two sources
|
|
765
|
+
* won. Everything else describes output that is absent or dead, and a
|
|
766
|
+
* production build has to print it.
|
|
767
|
+
*
|
|
768
|
+
* Asked positively on purpose. The predicate used to be "not one of three known
|
|
769
|
+
* kinds", which quietly made every key and value diagnostic advisory: a
|
|
770
|
+
* production build of a file with five typo'd keys printed nothing but a census
|
|
771
|
+
* calling them fallbacks, while `csszyx check` on the same tree named all six.
|
|
772
|
+
* A classifier written by exclusion cannot stay right as diagnostics are added,
|
|
773
|
+
* because a new one joins the silent side by default.
|
|
757
774
|
*
|
|
758
775
|
* @param message - One raw diagnostic line as an engine emitted it.
|
|
759
776
|
* @returns True when the diagnostic is advisory rather than a build result.
|
|
@@ -772,7 +789,7 @@ declare function isAdvisoryDiagnostic(message: string): boolean;
|
|
|
772
789
|
* Suppression is the right default; implying zero is not. One line costs
|
|
773
790
|
* nothing and keeps the difference visible.
|
|
774
791
|
*
|
|
775
|
-
* @param count - Advisory
|
|
792
|
+
* @param count - Advisory notes the build declined to list.
|
|
776
793
|
* @returns The disclosure, or null when nothing was held back.
|
|
777
794
|
*/
|
|
778
795
|
declare function suppressedAdvisoryMessage(count: number): string | null;
|
|
@@ -807,6 +824,22 @@ declare function resolveQuietMode(quiet: boolean | 'nudges' | QuietMode | undefi
|
|
|
807
824
|
* @returns true when the warning should be printed.
|
|
808
825
|
*/
|
|
809
826
|
declare function shouldEmitWarning(quiet: QuietMode, devOnly: boolean, isProduction: boolean): boolean;
|
|
827
|
+
/**
|
|
828
|
+
* Emit one key or value diagnostic — the family that says a class is dead.
|
|
829
|
+
*
|
|
830
|
+
* Its own channel because the two that existed both answer a different
|
|
831
|
+
* question: `emitMissingCssFallback` handles fallback sites, and the advisory
|
|
832
|
+
* channel handles notes about styles that ARE present. A typo'd key matched
|
|
833
|
+
* neither, so a production build dropped it on the floor while `csszyx check`
|
|
834
|
+
* on the same tree exited 1 and named it. Muted only by `quiet: true`, on the
|
|
835
|
+
* same reasoning as the missing-css channel: wrong output is not a usage nudge.
|
|
836
|
+
*
|
|
837
|
+
* @param quiet - Resolved quiet mode.
|
|
838
|
+
* @param message - Compiler diagnostic to classify and emit.
|
|
839
|
+
* @param id - Bundler module identifier included in the warning.
|
|
840
|
+
* @param emit - Warning output channel.
|
|
841
|
+
*/
|
|
842
|
+
declare function emitKeyValueDiagnostic(quiet: QuietMode, message: string, id: string, emit: (message: string) => void): void;
|
|
810
843
|
/**
|
|
811
844
|
* Whether a transform diagnostic describes missing CSS and may be printed.
|
|
812
845
|
*
|
|
@@ -820,6 +853,22 @@ declare function shouldEmitWarning(quiet: QuietMode, devOnly: boolean, isProduct
|
|
|
820
853
|
* @returns True when the diagnostic is an unsilenced missing-CSS failure.
|
|
821
854
|
*/
|
|
822
855
|
declare function shouldEmitMissingCssFallback(quiet: QuietMode, message: string): boolean;
|
|
856
|
+
/**
|
|
857
|
+
* Whether this run holds the advisory fallback list back and counts it instead.
|
|
858
|
+
*
|
|
859
|
+
* A build prints the count once the bundle closes, so holding the list back
|
|
860
|
+
* still leaves a reader a number to act on. A dev server never closes a bundle:
|
|
861
|
+
* anything held back there is held back for good, which is why serving lists
|
|
862
|
+
* its fallbacks whatever the environment says. `NODE_ENV` alone was the whole
|
|
863
|
+
* test, and a monorepo script that exports it while running a dev server turned
|
|
864
|
+
* every advisory into a number nothing would print.
|
|
865
|
+
*
|
|
866
|
+
* @param quiet - Resolved quiet mode.
|
|
867
|
+
* @param serving - Whether this is a dev server rather than a build.
|
|
868
|
+
* @param nodeEnv - `process.env.NODE_ENV` as the process sees it.
|
|
869
|
+
* @returns True when the list is withheld in favour of a count.
|
|
870
|
+
*/
|
|
871
|
+
declare function shouldHoldAdvisories(quiet: QuietMode, serving: boolean, nodeEnv: string | undefined): boolean;
|
|
823
872
|
/**
|
|
824
873
|
* Emit one missing-CSS fallback through the caller's output channel.
|
|
825
874
|
*
|
|
@@ -1063,5 +1112,5 @@ declare const rollupPlugin: (options?: PartialCsszyxConfig) => InputPluginOption
|
|
|
1063
1112
|
*/
|
|
1064
1113
|
declare const esbuildPlugin: (options?: PartialCsszyxConfig) => Plugin;
|
|
1065
1114
|
|
|
1066
|
-
export {
|
|
1115
|
+
export { isPackagesSkippedSource as $, unplugin as A, deleteRSCModuleRecord as B, emitKeyValueDiagnostic as D, emitMissingCssFallback as E, esbuildPlugin as F, extractGlobalVarAliasesForManifest as H, fileMayContainSafelistableSz as I, findLocalImportSources as J, findRSCBoundaryViolation as K, findRSCGraphViolation as L, hasInjectableTailwindCandidate as N, hasTokens as O, hasUseClientDirective as T, hasUseServerDirective as U, isAdvisoryDiagnostic as W, isCompileSourceOptedIn as X, isHardIgnoredPath as Y, isMangleableCssId as Z, isMonorepoPackage as _, isRSCServerModule as a0, lateMangleCensusMessage as a1, mangleCodeClassesSync as a2, mangleEligibleClasses as a3, mangleHybridHazardMessage as a4, mergeThemes as a5, missingTailwindEntryMessage as a6, normalizeGlobalVarAliasesForCache as a7, parseThemeBlocks as a8, parseUtilityBlocks as a9, realContentHashDisabledMessage as aa, recordGlobalVarSourceFile as ab, resolveCompileSourceDirs as ac, resolveNativeCacheIdentity as ad, resolveQuietMode as ae, rollupPlugin as af, scanCustomPropertyNames as ag, shouldEmitMissingCssFallback as ah, shouldEmitWarning as ai, shouldHoldAdvisories as aj, shouldTrackGlobalVarSources as ak, shouldWarnMissingTailwindEntry as al, shouldWarnUnscopedMonorepo as am, skippedSzFilesMessage as an, suppressedAdvisoryMessage as ao, unscopedMonorepoMessage as ap, vitePlugin as aq, watchModeMangleMessage as ar, webpackPlugin as as, allocateMangleTokens as t, assertNoRSCBoundaryViolation as u, assertNoRSCGraphViolation as v, collectMangleHybridHazards as w, createGlobalVarMapAssetSource as x, createRSCModuleRecord as y, cssHasContentScope as z };
|
|
1067
1116
|
export type { CssVarScanResult as C, GlobalVarScanCacheKeyInput as G, MangleHybridHazards as M, PlanGlobalVarAliasesInput as P, QuietMode as Q, RewriteGlobalVarCssAliasesOptions as R, ScanGlobalVarCssOptions as S, ValidateGlobalVarAliasInputsOptions as V, GlobalVarAliasPlan as a, GlobalVarCssAliasRewriteResult as b, CreateGlobalVarAliasValidationOptionsInput as c, GlobalVarAliasValidationResult as d, CssVarDefinition as e, CssVarLocation as f, CssVarReference as g, GlobalVarAliasDiagnostic as h, GlobalVarAliasDiagnosticSeverity as i, GlobalVarAliasEntry as j, GlobalVarCodeSource as k, GlobalVarCssAssetSource as l, GlobalVarCssSource as m, GlobalVarScanCacheEntry as n, MangleSelectorHazard as o, ParsedTheme as p, ParsedUtilities as q, RSCBoundaryViolation as r, RSCModuleRecord as s };
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const path = require('node:path');
|
|
4
4
|
const compiler = require('@csszyx/compiler');
|
|
5
|
-
const
|
|
5
|
+
const pathNormalization = require('./unplugin.BqKLlo1h.cjs');
|
|
6
6
|
const fs = require('node:fs');
|
|
7
7
|
const node_crypto = require('node:crypto');
|
|
8
8
|
|
|
@@ -111,12 +111,12 @@ function aliasedSpecifierBases(specifier, aliases) {
|
|
|
111
111
|
continue;
|
|
112
112
|
}
|
|
113
113
|
if (!specifier.startsWith(alias.find)) continue;
|
|
114
|
-
bases.push(
|
|
114
|
+
bases.push(pathNormalization.normalizePathSeparators(alias.replacement + specifier.slice(alias.find.length)));
|
|
115
115
|
}
|
|
116
116
|
return bases;
|
|
117
117
|
}
|
|
118
118
|
function absolute(directory, target) {
|
|
119
|
-
const resolved =
|
|
119
|
+
const resolved = pathNormalization.normalizePathSeparators(path__namespace.resolve(directory, target));
|
|
120
120
|
const declaredTrailingSlash = target.endsWith("/") || target.endsWith("\\");
|
|
121
121
|
return declaredTrailingSlash && !resolved.endsWith("/") ? `${resolved}/` : resolved;
|
|
122
122
|
}
|
|
@@ -185,7 +185,7 @@ function recordSzObjectRegistryFile(registry, filePath, content) {
|
|
|
185
185
|
);
|
|
186
186
|
}
|
|
187
187
|
function replaceEntriesOfKind(registry, filePath, kind, entries) {
|
|
188
|
-
const key =
|
|
188
|
+
const key = pathNormalization.normalizePathSeparators(filePath);
|
|
189
189
|
const byName = emptyNameIndex();
|
|
190
190
|
for (const [name, recorded] of Object.entries(registry.get(key) ?? {})) {
|
|
191
191
|
if (recorded.kind !== kind) byName[name] = recorded;
|
|
@@ -207,7 +207,7 @@ const EMITTED_EXTENSION_SOURCES = [
|
|
|
207
207
|
[".cjs", [".cts"]]
|
|
208
208
|
];
|
|
209
209
|
function recordCrossModuleForwards(index, filePath, content) {
|
|
210
|
-
const key =
|
|
210
|
+
const key = pathNormalization.normalizePathSeparators(filePath);
|
|
211
211
|
const forwards = compiler.extractCrossModuleForwards(content, filePath);
|
|
212
212
|
if (forwards.length === 0) index.delete(key);
|
|
213
213
|
else index.set(key, forwards);
|
|
@@ -317,7 +317,7 @@ function importedSpecifiersIn(source) {
|
|
|
317
317
|
}
|
|
318
318
|
function specifierBases(specifier, directory, aliases) {
|
|
319
319
|
if (specifier.startsWith(".")) {
|
|
320
|
-
return [
|
|
320
|
+
return [pathNormalization.normalizePathSeparators(path__namespace.resolve(directory, specifier))];
|
|
321
321
|
}
|
|
322
322
|
return aliasedSpecifierBases(specifier, aliases);
|
|
323
323
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const path = require('node:path');
|
|
4
4
|
const fs = require('node:fs');
|
|
5
|
-
const safelistSource = require('./unplugin.
|
|
5
|
+
const safelistSource = require('./unplugin.DS6CFjim.cjs');
|
|
6
6
|
const node_crypto = require('node:crypto');
|
|
7
7
|
const node_os = require('node:os');
|
|
8
8
|
const lockfile = require('proper-lockfile');
|
package/dist/vite.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const unplugin = require('./shared/unplugin.
|
|
5
|
+
const unplugin = require('./shared/unplugin.9zs6T4Gf.cjs');
|
|
6
6
|
require('node:crypto');
|
|
7
7
|
require('node:fs');
|
|
8
8
|
require('node:module');
|
|
@@ -16,12 +16,14 @@ require('@csszyx/svelte-adapter');
|
|
|
16
16
|
require('@csszyx/types');
|
|
17
17
|
require('@csszyx/vue-adapter');
|
|
18
18
|
require('unplugin');
|
|
19
|
-
require('./shared/unplugin.
|
|
20
|
-
require('./shared/unplugin.
|
|
19
|
+
require('./shared/unplugin.DS6CFjim.cjs');
|
|
20
|
+
require('./shared/unplugin.BqKLlo1h.cjs');
|
|
21
|
+
require('./shared/unplugin.YcnV3Izb.cjs');
|
|
21
22
|
require('./css-mangler.cjs');
|
|
22
23
|
require('postcss');
|
|
23
24
|
require('postcss-selector-parser');
|
|
24
|
-
require('./shared/unplugin.
|
|
25
|
+
require('./shared/unplugin.Defu9wGh.cjs');
|
|
26
|
+
require('./shared/unplugin.2qOISpzl.cjs');
|
|
25
27
|
require('node:zlib');
|
|
26
28
|
require('postcss-value-parser');
|
|
27
29
|
|
package/dist/vite.d.cts
CHANGED
package/dist/vite.d.mts
CHANGED
package/dist/vite.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { a3 as default } from './shared/unplugin.Cs4H9z9v.mjs';
|
|
2
2
|
import 'node:crypto';
|
|
3
3
|
import 'node:fs';
|
|
4
4
|
import 'node:module';
|
|
@@ -12,11 +12,13 @@ import '@csszyx/svelte-adapter';
|
|
|
12
12
|
import '@csszyx/types';
|
|
13
13
|
import '@csszyx/vue-adapter';
|
|
14
14
|
import 'unplugin';
|
|
15
|
-
import './shared/unplugin.
|
|
16
|
-
import './shared/unplugin.
|
|
15
|
+
import './shared/unplugin.Ba3O1r8M.mjs';
|
|
16
|
+
import './shared/unplugin.wMeicb6E.mjs';
|
|
17
|
+
import './shared/unplugin.2uf-U76p.mjs';
|
|
17
18
|
import './css-mangler.mjs';
|
|
18
19
|
import 'postcss';
|
|
19
20
|
import 'postcss-selector-parser';
|
|
20
|
-
import './shared/unplugin.
|
|
21
|
+
import './shared/unplugin.DcXM9sq5.mjs';
|
|
22
|
+
import './shared/unplugin.995yC_cN.mjs';
|
|
21
23
|
import 'node:zlib';
|
|
22
24
|
import 'postcss-value-parser';
|
package/dist/webpack.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const unplugin = require('./shared/unplugin.
|
|
5
|
+
const unplugin = require('./shared/unplugin.9zs6T4Gf.cjs');
|
|
6
6
|
require('node:crypto');
|
|
7
7
|
require('node:fs');
|
|
8
8
|
require('node:module');
|
|
@@ -16,12 +16,14 @@ require('@csszyx/svelte-adapter');
|
|
|
16
16
|
require('@csszyx/types');
|
|
17
17
|
require('@csszyx/vue-adapter');
|
|
18
18
|
require('unplugin');
|
|
19
|
-
require('./shared/unplugin.
|
|
20
|
-
require('./shared/unplugin.
|
|
19
|
+
require('./shared/unplugin.DS6CFjim.cjs');
|
|
20
|
+
require('./shared/unplugin.BqKLlo1h.cjs');
|
|
21
|
+
require('./shared/unplugin.YcnV3Izb.cjs');
|
|
21
22
|
require('./css-mangler.cjs');
|
|
22
23
|
require('postcss');
|
|
23
24
|
require('postcss-selector-parser');
|
|
24
|
-
require('./shared/unplugin.
|
|
25
|
+
require('./shared/unplugin.Defu9wGh.cjs');
|
|
26
|
+
require('./shared/unplugin.2qOISpzl.cjs');
|
|
25
27
|
require('node:zlib');
|
|
26
28
|
require('postcss-value-parser');
|
|
27
29
|
|
package/dist/webpack.d.cts
CHANGED
package/dist/webpack.d.mts
CHANGED
package/dist/webpack.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { a5 as default } from './shared/unplugin.Cs4H9z9v.mjs';
|
|
2
2
|
import 'node:crypto';
|
|
3
3
|
import 'node:fs';
|
|
4
4
|
import 'node:module';
|
|
@@ -12,11 +12,13 @@ import '@csszyx/svelte-adapter';
|
|
|
12
12
|
import '@csszyx/types';
|
|
13
13
|
import '@csszyx/vue-adapter';
|
|
14
14
|
import 'unplugin';
|
|
15
|
-
import './shared/unplugin.
|
|
16
|
-
import './shared/unplugin.
|
|
15
|
+
import './shared/unplugin.Ba3O1r8M.mjs';
|
|
16
|
+
import './shared/unplugin.wMeicb6E.mjs';
|
|
17
|
+
import './shared/unplugin.2uf-U76p.mjs';
|
|
17
18
|
import './css-mangler.mjs';
|
|
18
19
|
import 'postcss';
|
|
19
20
|
import 'postcss-selector-parser';
|
|
20
|
-
import './shared/unplugin.
|
|
21
|
+
import './shared/unplugin.DcXM9sq5.mjs';
|
|
22
|
+
import './shared/unplugin.995yC_cN.mjs';
|
|
21
23
|
import 'node:zlib';
|
|
22
24
|
import 'postcss-value-parser';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csszyx/unplugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Vite and Webpack integration for csszyx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"csszyx",
|
|
@@ -104,6 +104,16 @@
|
|
|
104
104
|
"default": "./dist/next-watcher.cjs"
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
|
+
"./jest": {
|
|
108
|
+
"import": {
|
|
109
|
+
"types": "./dist/jest-transform.d.mts",
|
|
110
|
+
"default": "./dist/jest-transform.mjs"
|
|
111
|
+
},
|
|
112
|
+
"require": {
|
|
113
|
+
"types": "./dist/jest-transform.d.cts",
|
|
114
|
+
"default": "./dist/jest-transform.cjs"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
107
117
|
"./postcss": {
|
|
108
118
|
"import": {
|
|
109
119
|
"types": "./dist/postcss.d.mts",
|
|
@@ -122,11 +132,11 @@
|
|
|
122
132
|
"dist"
|
|
123
133
|
],
|
|
124
134
|
"dependencies": {
|
|
125
|
-
"@csszyx/compiler": "0.
|
|
126
|
-
"@csszyx/core": "0.
|
|
127
|
-
"@csszyx/svelte-adapter": "0.
|
|
128
|
-
"@csszyx/types": "0.
|
|
129
|
-
"@csszyx/vue-adapter": "0.
|
|
135
|
+
"@csszyx/compiler": "0.17.0",
|
|
136
|
+
"@csszyx/core": "0.17.0",
|
|
137
|
+
"@csszyx/svelte-adapter": "0.17.0",
|
|
138
|
+
"@csszyx/types": "0.17.0",
|
|
139
|
+
"@csszyx/vue-adapter": "0.17.0",
|
|
130
140
|
"postcss": "^8.5.26",
|
|
131
141
|
"postcss-selector-parser": "^7.1.5",
|
|
132
142
|
"postcss-value-parser": "^4.2.0",
|
|
@@ -134,7 +144,7 @@
|
|
|
134
144
|
"unplugin": "^3.3.0"
|
|
135
145
|
},
|
|
136
146
|
"peerDependencies": {
|
|
137
|
-
"@csszyx/runtime": "^0.
|
|
147
|
+
"@csszyx/runtime": "^0.17.0",
|
|
138
148
|
"vite": ">=5.0.0"
|
|
139
149
|
},
|
|
140
150
|
"peerDependenciesMeta": {
|
|
@@ -143,8 +153,8 @@
|
|
|
143
153
|
}
|
|
144
154
|
},
|
|
145
155
|
"devDependencies": {
|
|
146
|
-
"@csszyx/runtime": "0.
|
|
147
|
-
"@csszyx/tooling-metadata": "0.
|
|
156
|
+
"@csszyx/runtime": "0.17.0",
|
|
157
|
+
"@csszyx/tooling-metadata": "0.17.0",
|
|
148
158
|
"@tailwindcss/node": "4.3.3",
|
|
149
159
|
"@types/node": "^22.20.1",
|
|
150
160
|
"@types/proper-lockfile": "^4.1.4",
|