@salty-css/webpack 0.0.1-alpha.84 → 0.0.1-alpha.86
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/index-41n1R3xS.js +317 -0
- package/index-BTFjlOua.cjs +18 -0
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/loader.cjs +1 -1
- package/loader.js +1 -1
- package/package.json +2 -2
- package/index-BMmpNOqR.cjs +0 -18
- package/index-ePp5EJ2T.js +0 -303
@@ -0,0 +1,317 @@
|
|
1
|
+
import * as K from "esbuild";
|
2
|
+
import { execSync as nt } from "child_process";
|
3
|
+
import { join as f } from "path";
|
4
|
+
import { existsSync as L, writeFileSync as E, readFileSync as V, mkdirSync as A, statSync as ot, readdirSync as rt } from "fs";
|
5
|
+
import { readFile as ct, writeFile as it } from "fs/promises";
|
6
|
+
import { createLogger as at, format as R, transports as lt } from "winston";
|
7
|
+
const G = (t) => String.fromCharCode(t + (t > 25 ? 39 : 97)), ft = (t, e) => {
|
8
|
+
let s = "", o;
|
9
|
+
for (o = Math.abs(t); o > 52; o = o / 52 | 0) s = G(o % 52) + s;
|
10
|
+
return s = G(o % 52) + s, s.length < e ? s = s.padStart(e, "a") : s.length > e && (s = s.slice(-e)), s;
|
11
|
+
}, pt = (t, e) => {
|
12
|
+
let s = e.length;
|
13
|
+
for (; s; ) t = t * 33 ^ e.charCodeAt(--s);
|
14
|
+
return t;
|
15
|
+
}, W = (t, e = 3) => {
|
16
|
+
const s = pt(5381, JSON.stringify(t)) >>> 0;
|
17
|
+
return ft(s, e);
|
18
|
+
};
|
19
|
+
function N(t) {
|
20
|
+
return t ? typeof t != "string" ? N(String(t)) : t.replace(/\s/g, "-").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g, (e, s) => (s > 0 ? "-" : "") + e.toLowerCase()) : "";
|
21
|
+
}
|
22
|
+
const ut = (t, e) => {
|
23
|
+
if (typeof t != "string") return { result: t };
|
24
|
+
if (!e) return { result: t };
|
25
|
+
const s = [];
|
26
|
+
return Object.values(e).forEach((o) => {
|
27
|
+
const { pattern: r, transform: i } = o;
|
28
|
+
t = t.replace(r, (y) => {
|
29
|
+
const { value: a, css: h } = i(y);
|
30
|
+
return h && s.push(h), a;
|
31
|
+
});
|
32
|
+
}), { result: t, additionalCss: s };
|
33
|
+
}, q = (t) => typeof t != "string" ? { result: t } : /\{[^{}]+\}/g.test(t) ? { result: t.replace(/\{([^{}]+)\}/g, (...o) => `var(--${N(o[1].replaceAll(".", "-"))})`) } : { result: t }, D = (t, e, s, o) => {
|
34
|
+
if (!t) return "";
|
35
|
+
const r = [], i = Object.entries(t).reduce((a, [h, n]) => {
|
36
|
+
const g = h.trim();
|
37
|
+
if (typeof n == "function" && (n = n()), typeof n == "object") {
|
38
|
+
if (!n) return a;
|
39
|
+
if (g === "variants")
|
40
|
+
return Object.entries(n).forEach(([p, c]) => {
|
41
|
+
c && Object.entries(c).forEach(([m, u]) => {
|
42
|
+
if (!u) return;
|
43
|
+
const x = `${e}.${p}-${m}`, C = D(u, x);
|
44
|
+
r.push(C);
|
45
|
+
});
|
46
|
+
}), a;
|
47
|
+
if (g === "defaultVariants")
|
48
|
+
return a;
|
49
|
+
if (g === "compoundVariants")
|
50
|
+
return n.forEach((p) => {
|
51
|
+
const { css: c, ...m } = p, u = Object.entries(m).reduce((C, [j, k]) => `${C}.${j}-${k}`, e), x = D(c, u);
|
52
|
+
r.push(x);
|
53
|
+
}), a;
|
54
|
+
if (g.startsWith("@")) {
|
55
|
+
const p = D(n, e), c = `${g} {
|
56
|
+
${p.replace(`
|
57
|
+
`, `
|
58
|
+
`)}
|
59
|
+
}`;
|
60
|
+
return r.push(c), a;
|
61
|
+
}
|
62
|
+
const d = h.includes("&") ? g.replace("&", e) : g.startsWith(":") ? `${e}${g}` : `${e} ${g}`, $ = D(n, d);
|
63
|
+
return r.push($), a;
|
64
|
+
}
|
65
|
+
const b = g.startsWith("-") ? g : N(g), w = (d, $ = ";") => a = `${a}${d}${$}`, F = (d) => w(`${b}:${d}`);
|
66
|
+
if (typeof n == "number") return F(n);
|
67
|
+
if (typeof n != "string")
|
68
|
+
if ("toString" in n) n = n.toString();
|
69
|
+
else return a;
|
70
|
+
const { modifiers: l } = {}, P = function* () {
|
71
|
+
yield q(n), yield ut(n, l);
|
72
|
+
}();
|
73
|
+
for (const { result: d, additionalCss: $ = [] } of P)
|
74
|
+
n = d, $.forEach((p) => {
|
75
|
+
const c = D(p, "");
|
76
|
+
w(c, "");
|
77
|
+
});
|
78
|
+
return F(n);
|
79
|
+
}, "");
|
80
|
+
if (!i) return r.join(`
|
81
|
+
`);
|
82
|
+
if (!e) return i;
|
83
|
+
let y = "";
|
84
|
+
return y = `${e} { ${i} }`, [y, ...r].join(`
|
85
|
+
`);
|
86
|
+
}, U = (t, e = []) => {
|
87
|
+
if (!t) return "";
|
88
|
+
const s = [], o = {};
|
89
|
+
if (Object.entries(t).forEach(([r, i]) => {
|
90
|
+
if (typeof i == "object") {
|
91
|
+
if (!i) return;
|
92
|
+
const y = r.trim(), a = U(i, [...e, y]);
|
93
|
+
s.push(a);
|
94
|
+
} else
|
95
|
+
o[r] = i;
|
96
|
+
}), Object.keys(o).length) {
|
97
|
+
const r = e.map(N).join("-"), i = D(o, `.${r}`);
|
98
|
+
s.push(i);
|
99
|
+
}
|
100
|
+
return s.join(`
|
101
|
+
`);
|
102
|
+
}, X = (t) => {
|
103
|
+
if (!t || t === "/") throw new Error("Could not find package.json file");
|
104
|
+
const e = f(t, "package.json");
|
105
|
+
return L(e) ? e : X(f(t, ".."));
|
106
|
+
}, gt = async (t) => {
|
107
|
+
const e = X(t);
|
108
|
+
return await ct(e, "utf-8").then(JSON.parse).catch(() => {
|
109
|
+
});
|
110
|
+
}, dt = async (t) => {
|
111
|
+
const e = await gt(t);
|
112
|
+
if (e)
|
113
|
+
return e.type;
|
114
|
+
};
|
115
|
+
let T;
|
116
|
+
const Y = async (t) => {
|
117
|
+
if (T) return T;
|
118
|
+
const e = await dt(t);
|
119
|
+
return e === "module" ? T = "esm" : (e === "commonjs" || import.meta.url.endsWith(".cjs")) && (T = "cjs"), T || "esm";
|
120
|
+
}, H = at({
|
121
|
+
level: "debug",
|
122
|
+
format: R.combine(R.colorize(), R.cli()),
|
123
|
+
transports: [new lt.Console({})]
|
124
|
+
}), _ = {
|
125
|
+
externalModules: []
|
126
|
+
}, Q = (t) => {
|
127
|
+
if (_.externalModules.length > 0) return _.externalModules;
|
128
|
+
const e = f(t, "salty.config.ts"), o = V(e, "utf8").match(/externalModules:\s?\[(.*)\]/);
|
129
|
+
if (!o) return [];
|
130
|
+
const r = o[1].split(",").map((i) => i.replace(/['"`]/g, "").trim());
|
131
|
+
return _.externalModules = r, r;
|
132
|
+
}, J = (t) => f(t, "./saltygen"), yt = ["salty", "css", "styles", "styled"], mt = (t = []) => new RegExp(`\\.(${[...yt, ...t].join("|")})\\.`), B = (t, e = []) => mt(e).test(t), ht = async (t) => {
|
133
|
+
const e = J(t), s = f(t, "salty.config.ts"), o = f(e, "salty.config.js"), r = await Y(t), i = Q(t);
|
134
|
+
await K.build({
|
135
|
+
entryPoints: [s],
|
136
|
+
minify: !0,
|
137
|
+
treeShaking: !0,
|
138
|
+
bundle: !0,
|
139
|
+
outfile: o,
|
140
|
+
format: r,
|
141
|
+
external: i
|
142
|
+
});
|
143
|
+
const y = Date.now(), { config: a } = await import(`${o}?t=${y}`);
|
144
|
+
return a;
|
145
|
+
}, $t = async (t) => {
|
146
|
+
const e = await ht(t), s = /* @__PURE__ */ new Set(), o = (p, c = []) => p ? Object.entries(p).flatMap(([m, u]) => {
|
147
|
+
if (!u) return;
|
148
|
+
if (typeof u == "object") return o(u, [...c, m]);
|
149
|
+
const x = [...c, m].join(".");
|
150
|
+
s.add(`"${x}"`);
|
151
|
+
const C = [...c.map(N), N(m)].join("-"), { result: j } = q(u);
|
152
|
+
return `--${C}: ${j};`;
|
153
|
+
}) : [], r = (p) => p ? Object.entries(p).flatMap(([c, m]) => {
|
154
|
+
const u = o(m);
|
155
|
+
return c === "base" ? u.join("") : `${c} { ${u.join("")} }`;
|
156
|
+
}) : [], i = (p) => p ? Object.entries(p).flatMap(([c, m]) => Object.entries(m).flatMap(([u, x]) => {
|
157
|
+
const C = o(x, [c]), j = `.${c}-${u}, [data-${c}="${u}"]`, k = C.join("");
|
158
|
+
return `${j} { ${k} }`;
|
159
|
+
})) : [], y = o(e.variables), a = r(e.responsiveVariables), h = i(e.conditionalVariables), n = J(t), g = f(n, "css/variables.css"), b = `:root { ${y.join("")} ${a.join("")} } ${h.join("")}`;
|
160
|
+
E(g, b);
|
161
|
+
const w = f(n, "types/css-tokens.d.ts"), l = `type VariableTokens = ${[...s].join("|") || '""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;
|
162
|
+
E(w, l);
|
163
|
+
const S = f(n, "css/global.css"), P = D(e.global, "");
|
164
|
+
E(S, P);
|
165
|
+
const d = f(n, "css/templates.css"), $ = U(e.templates);
|
166
|
+
E(d, $);
|
167
|
+
}, I = async (t, e, s) => {
|
168
|
+
const o = W(e), r = f(s, "js", o + ".js"), i = await Y(t), y = Q(t);
|
169
|
+
await K.build({
|
170
|
+
entryPoints: [e],
|
171
|
+
minify: !0,
|
172
|
+
treeShaking: !0,
|
173
|
+
bundle: !0,
|
174
|
+
outfile: r,
|
175
|
+
format: i,
|
176
|
+
target: ["es2022"],
|
177
|
+
keepNames: !0,
|
178
|
+
external: y
|
179
|
+
});
|
180
|
+
const a = Date.now();
|
181
|
+
return await import(`${r}?t=${a}`);
|
182
|
+
}, Z = async (t) => {
|
183
|
+
const e = J(t), s = f(e, "salty.config.js"), { config: o } = await import(s);
|
184
|
+
return o;
|
185
|
+
}, v = () => {
|
186
|
+
try {
|
187
|
+
return process.env.NODE_ENV === "production";
|
188
|
+
} catch {
|
189
|
+
return !1;
|
190
|
+
}
|
191
|
+
}, Ft = async (t, e = v()) => {
|
192
|
+
try {
|
193
|
+
e ? H.info("Generating CSS in production mode! 🔥") : H.info("Generating CSS in development mode! 🚀");
|
194
|
+
const s = [], o = [], r = J(t), i = f(r, "index.css");
|
195
|
+
(() => {
|
196
|
+
L(r) && nt("rm -rf " + r), A(r), A(f(r, "css")), A(f(r, "types"));
|
197
|
+
})(), await $t(t);
|
198
|
+
const a = await Z(t);
|
199
|
+
async function h(l, S) {
|
200
|
+
const P = ["node_modules", "saltygen"], d = ot(l);
|
201
|
+
if (d.isDirectory()) {
|
202
|
+
const $ = rt(l);
|
203
|
+
if (P.some((c) => l.includes(c))) return;
|
204
|
+
await Promise.all($.map((c) => h(f(l, c), f(S, c))));
|
205
|
+
} else if (d.isFile() && B(l)) {
|
206
|
+
const p = await I(t, l, r), c = [];
|
207
|
+
Object.entries(p).forEach(([C, j]) => {
|
208
|
+
if (j.isKeyframes && j.css) {
|
209
|
+
const z = `${j.animationName}.css`, et = `css/${z}`, st = f(r, et);
|
210
|
+
s.push(z), E(st, j.css);
|
211
|
+
return;
|
212
|
+
}
|
213
|
+
if (!j.generator) return;
|
214
|
+
const k = j.generator._withBuildContext({
|
215
|
+
name: C,
|
216
|
+
config: a,
|
217
|
+
prod: e
|
218
|
+
}), M = `${k.hash}-${k.priority}.css`;
|
219
|
+
o[k.priority] || (o[k.priority] = []), o[k.priority].push(M), c.push(M);
|
220
|
+
const O = `css/${M}`, tt = f(r, O);
|
221
|
+
E(tt, k.css);
|
222
|
+
});
|
223
|
+
const m = c.map((C) => `@import url('./${C}');`).join(`
|
224
|
+
`), u = W(l, 6), x = f(r, `css/${u}.css`);
|
225
|
+
E(x, m);
|
226
|
+
}
|
227
|
+
}
|
228
|
+
await h(t, r);
|
229
|
+
const n = s.map((l) => `@import url('./css/${l}');`).join(`
|
230
|
+
`);
|
231
|
+
let F = `@layer l0, l1, l2, l3, l4, l5, l6, l7, l8;
|
232
|
+
|
233
|
+
${["variables.css", "global.css", "templates.css"].filter((l) => {
|
234
|
+
try {
|
235
|
+
return V(f(r, "css", l), "utf8").length > 0;
|
236
|
+
} catch {
|
237
|
+
return !1;
|
238
|
+
}
|
239
|
+
}).map((l) => `@import url('./css/${l}');`).join(`
|
240
|
+
`)}
|
241
|
+
${n}`;
|
242
|
+
if (a.importStrategy !== "component") {
|
243
|
+
const l = o.flat().map((S) => `@import url('./css/${S}');`).join(`
|
244
|
+
`);
|
245
|
+
F += l;
|
246
|
+
}
|
247
|
+
E(i, F);
|
248
|
+
} catch (s) {
|
249
|
+
console.error(s);
|
250
|
+
}
|
251
|
+
}, kt = async (t, e) => {
|
252
|
+
try {
|
253
|
+
const s = [], o = f(t, "./saltygen"), r = f(o, "index.css");
|
254
|
+
if (B(e)) {
|
255
|
+
const y = await Z(t), a = await I(t, e, o);
|
256
|
+
Object.entries(a).forEach(([w, F]) => {
|
257
|
+
if (!F.generator) return;
|
258
|
+
const l = F.generator._withBuildContext({
|
259
|
+
name: w,
|
260
|
+
config: y
|
261
|
+
}), S = `${l.hash}-${l.priority}.css`, P = `css/${S}`, d = f(o, P);
|
262
|
+
s.push(S), E(d, l.css);
|
263
|
+
});
|
264
|
+
const h = V(r, "utf8").split(`
|
265
|
+
`), n = s.map((w) => `@import url('../saltygen/css/${w}');`), b = [.../* @__PURE__ */ new Set([...h, ...n])].join(`
|
266
|
+
`);
|
267
|
+
E(r, b);
|
268
|
+
}
|
269
|
+
} catch (s) {
|
270
|
+
console.error(s);
|
271
|
+
}
|
272
|
+
}, xt = async (t, e, s = v()) => {
|
273
|
+
try {
|
274
|
+
const o = f(t, "./saltygen");
|
275
|
+
if (B(e)) {
|
276
|
+
const i = V(e, "utf8");
|
277
|
+
i.replace(/^(?!export\s)const\s.*/gm, (b) => `export ${b}`) !== i && await it(e, i);
|
278
|
+
const a = await Z(t), h = await I(t, e, o);
|
279
|
+
let n = i;
|
280
|
+
Object.entries(h).forEach(([b, w]) => {
|
281
|
+
var M;
|
282
|
+
if (w.isKeyframes || !w.generator) return;
|
283
|
+
const F = w.generator._withBuildContext({
|
284
|
+
name: b,
|
285
|
+
config: a,
|
286
|
+
prod: s
|
287
|
+
}), l = new RegExp(`\\s${b}[=\\s]+[^()]+styled\\(([^,]+),`, "g").exec(i);
|
288
|
+
if (!l) return console.error("Could not find the original declaration");
|
289
|
+
const S = (M = l.at(1)) == null ? void 0 : M.trim(), P = new RegExp(`\\s${b}[=\\s]+styled\\(`, "g").exec(n);
|
290
|
+
if (!P) return console.error("Could not find the original declaration");
|
291
|
+
const { index: d } = P;
|
292
|
+
let $ = !1;
|
293
|
+
const p = setTimeout(() => $ = !0, 5e3);
|
294
|
+
let c = 0, m = !1, u = 0;
|
295
|
+
for (; !m && !$; ) {
|
296
|
+
const O = n[d + c];
|
297
|
+
O === "(" && u++, O === ")" && u--, u === 0 && O === ")" && (m = !0), c > n.length && ($ = !0), c++;
|
298
|
+
}
|
299
|
+
if (!$) clearTimeout(p);
|
300
|
+
else throw new Error("Failed to find the end of the styled call and timed out");
|
301
|
+
const x = d + c, C = n.slice(d, x), j = n, k = ` ${b} = styled(${S}, "${F.classNames}", ${JSON.stringify(F.props)});`;
|
302
|
+
n = n.replace(C, k), j === n && console.error("Minimize file failed to change content", { name: b, tagName: S });
|
303
|
+
});
|
304
|
+
const g = W(e, 6);
|
305
|
+
return a.importStrategy === "component" && (n = `import '../../saltygen/css/${g}.css';
|
306
|
+
${n}`), n = n.replace("{ styled }", "{ styledClient as styled }"), n = n.replace("@salty-css/react/styled", "@salty-css/react/styled-client"), n;
|
307
|
+
}
|
308
|
+
} catch (o) {
|
309
|
+
console.error("Error in minimizeFile:", o);
|
310
|
+
}
|
311
|
+
};
|
312
|
+
export {
|
313
|
+
kt as a,
|
314
|
+
Ft as g,
|
315
|
+
xt as m,
|
316
|
+
mt as s
|
317
|
+
};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";const nt=require("esbuild"),ot=require("child_process"),f=require("path"),d=require("fs"),L=require("fs/promises"),V=require("winston");var J=typeof document<"u"?document.currentScript:null;function rt(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const s in t)if(s!=="default"){const n=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,n.get?n:{enumerable:!0,get:()=>t[s]})}}return e.default=t,Object.freeze(e)}const U=rt(nt),B=t=>String.fromCharCode(t+(t>25?39:97)),it=(t,e)=>{let s="",n;for(n=Math.abs(t);n>52;n=n/52|0)s=B(n%52)+s;return s=B(n%52)+s,s.length<e?s=s.padStart(e,"a"):s.length>e&&(s=s.slice(-e)),s},ct=(t,e)=>{let s=e.length;for(;s;)t=t*33^e.charCodeAt(--s);return t},A=(t,e=3)=>{const s=ct(5381,JSON.stringify(t))>>>0;return it(s,e)};function M(t){return t?typeof t!="string"?M(String(t)):t.replace(/\s/g,"-").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g,(e,s)=>(s>0?"-":"")+e.toLowerCase()):""}const at=(t,e)=>{if(typeof t!="string")return{result:t};if(!e)return{result:t};const s=[];return Object.values(e).forEach(n=>{const{pattern:r,transform:c}=n;t=t.replace(r,m=>{const{value:a,css:j}=c(m);return j&&s.push(j),a})}),{result:t,additionalCss:s}},G=t=>typeof t!="string"?{result:t}:/\{[^{}]+\}/g.test(t)?{result:t.replace(/\{([^{}]+)\}/g,(...n)=>`var(--${M(n[1].replaceAll(".","-"))})`)}:{result:t},T=(t,e,s,n)=>{if(!t)return"";const r=[],c=Object.entries(t).reduce((a,[j,o])=>{const g=j.trim();if(typeof o=="function"&&(o=o()),typeof o=="object"){if(!o)return a;if(g==="variants")return Object.entries(o).forEach(([u,i])=>{i&&Object.entries(i).forEach(([h,p])=>{if(!p)return;const P=`${e}.${u}-${h}`,C=T(p,P);r.push(C)})}),a;if(g==="defaultVariants")return a;if(g==="compoundVariants")return o.forEach(u=>{const{css:i,...h}=u,p=Object.entries(h).reduce((C,[S,x])=>`${C}.${S}-${x}`,e),P=T(i,p);r.push(P)}),a;if(g.startsWith("@")){const u=T(o,e),i=`${g} {
|
2
|
+
${u.replace(`
|
3
|
+
`,`
|
4
|
+
`)}
|
5
|
+
}`;return r.push(i),a}const y=j.includes("&")?g.replace("&",e):g.startsWith(":")?`${e}${g}`:`${e} ${g}`,$=T(o,y);return r.push($),a}const b=g.startsWith("-")?g:M(g),w=(y,$=";")=>a=`${a}${y}${$}`,k=y=>w(`${b}:${y}`);if(typeof o=="number")return k(o);if(typeof o!="string")if("toString"in o)o=o.toString();else return a;const{modifiers:l}={},O=function*(){yield G(o),yield at(o,l)}();for(const{result:y,additionalCss:$=[]}of O)o=y,$.forEach(u=>{const i=T(u,"");w(i,"")});return k(o)},"");if(!c)return r.join(`
|
6
|
+
`);if(!e)return c;let m="";return m=`${e} { ${c} }`,[m,...r].join(`
|
7
|
+
`)},H=(t,e=[])=>{if(!t)return"";const s=[],n={};if(Object.entries(t).forEach(([r,c])=>{if(typeof c=="object"){if(!c)return;const m=r.trim(),a=H(c,[...e,m]);s.push(a)}else n[r]=c}),Object.keys(n).length){const r=e.map(M).join("-"),c=T(n,`.${r}`);s.push(c)}return s.join(`
|
8
|
+
`)},K=t=>{if(!t||t==="/")throw new Error("Could not find package.json file");const e=f.join(t,"package.json");return d.existsSync(e)?e:K(f.join(t,".."))},lt=async t=>{const e=K(t);return await L.readFile(e,"utf-8").then(JSON.parse).catch(()=>{})},ft=async t=>{const e=await lt(t);if(e)return e.type};let E;const X=async t=>{if(E)return E;const e=await ft(t);return e==="module"?E="esm":(e==="commonjs"||(typeof document>"u"?require("url").pathToFileURL(__filename).href:J&&J.tagName.toUpperCase()==="SCRIPT"&&J.src||new URL("index-BTFjlOua.cjs",document.baseURI).href).endsWith(".cjs"))&&(E="cjs"),E||"esm"},Z=V.createLogger({level:"debug",format:V.format.combine(V.format.colorize(),V.format.cli()),transports:[new V.transports.Console({})]}),R={externalModules:[]},Y=t=>{if(R.externalModules.length>0)return R.externalModules;const e=f.join(t,"salty.config.ts"),n=d.readFileSync(e,"utf8").match(/externalModules:\s?\[(.*)\]/);if(!n)return[];const r=n[1].split(",").map(c=>c.replace(/['"`]/g,"").trim());return R.externalModules=r,r},_=t=>f.join(t,"./saltygen"),ut=["salty","css","styles","styled"],Q=(t=[])=>new RegExp(`\\.(${[...ut,...t].join("|")})\\.`),q=(t,e=[])=>Q(e).test(t),pt=async t=>{const e=_(t),s=f.join(t,"salty.config.ts"),n=f.join(e,"salty.config.js"),r=await X(t),c=Y(t);await U.build({entryPoints:[s],minify:!0,treeShaking:!0,bundle:!0,outfile:n,format:r,external:c});const m=Date.now(),{config:a}=await import(`${n}?t=${m}`);return a},dt=async t=>{const e=await pt(t),s=new Set,n=(u,i=[])=>u?Object.entries(u).flatMap(([h,p])=>{if(!p)return;if(typeof p=="object")return n(p,[...i,h]);const P=[...i,h].join(".");s.add(`"${P}"`);const C=[...i.map(M),M(h)].join("-"),{result:S}=G(p);return`--${C}: ${S};`}):[],r=u=>u?Object.entries(u).flatMap(([i,h])=>{const p=n(h);return i==="base"?p.join(""):`${i} { ${p.join("")} }`}):[],c=u=>u?Object.entries(u).flatMap(([i,h])=>Object.entries(h).flatMap(([p,P])=>{const C=n(P,[i]),S=`.${i}-${p}, [data-${i}="${p}"]`,x=C.join("");return`${S} { ${x} }`})):[],m=n(e.variables),a=r(e.responsiveVariables),j=c(e.conditionalVariables),o=_(t),g=f.join(o,"css/variables.css"),b=`:root { ${m.join("")} ${a.join("")} } ${j.join("")}`;d.writeFileSync(g,b);const w=f.join(o,"types/css-tokens.d.ts"),l=`type VariableTokens = ${[...s].join("|")||'""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;d.writeFileSync(w,l);const F=f.join(o,"css/global.css"),O=T(e.global,"");d.writeFileSync(F,O);const y=f.join(o,"css/templates.css"),$=H(e.templates);d.writeFileSync(y,$)},I=async(t,e,s)=>{const n=A(e),r=f.join(s,"js",n+".js"),c=await X(t),m=Y(t);await U.build({entryPoints:[e],minify:!0,treeShaking:!0,bundle:!0,outfile:r,format:c,target:["es2022"],keepNames:!0,external:m});const a=Date.now();return await import(`${r}?t=${a}`)},z=async t=>{const e=_(t),s=f.join(e,"salty.config.js"),{config:n}=await import(s);return n},v=()=>{try{return process.env.NODE_ENV==="production"}catch{return!1}},gt=async(t,e=v())=>{try{e?Z.info("Generating CSS in production mode! 🔥"):Z.info("Generating CSS in development mode! 🚀");const s=[],n=[],r=_(t),c=f.join(r,"index.css");(()=>{d.existsSync(r)&&ot.execSync("rm -rf "+r),d.mkdirSync(r),d.mkdirSync(f.join(r,"css")),d.mkdirSync(f.join(r,"types"))})(),await dt(t);const a=await z(t);async function j(l,F){const O=["node_modules","saltygen"],y=d.statSync(l);if(y.isDirectory()){const $=d.readdirSync(l);if(O.some(i=>l.includes(i)))return;await Promise.all($.map(i=>j(f.join(l,i),f.join(F,i))))}else if(y.isFile()&&q(l)){const u=await I(t,l,r),i=[];Object.entries(u).forEach(([C,S])=>{if(S.isKeyframes&&S.css){const W=`${S.animationName}.css`,et=`css/${W}`,st=f.join(r,et);s.push(W),d.writeFileSync(st,S.css);return}if(!S.generator)return;const x=S.generator._withBuildContext({name:C,config:a,prod:e}),D=`${x.hash}-${x.priority}.css`;n[x.priority]||(n[x.priority]=[]),n[x.priority].push(D),i.push(D);const N=`css/${D}`,tt=f.join(r,N);d.writeFileSync(tt,x.css)});const h=i.map(C=>`@import url('./${C}');`).join(`
|
9
|
+
`),p=A(l,6),P=f.join(r,`css/${p}.css`);d.writeFileSync(P,h)}}await j(t,r);const o=s.map(l=>`@import url('./css/${l}');`).join(`
|
10
|
+
`);let k=`@layer l0, l1, l2, l3, l4, l5, l6, l7, l8;
|
11
|
+
|
12
|
+
${["variables.css","global.css","templates.css"].filter(l=>{try{return d.readFileSync(f.join(r,"css",l),"utf8").length>0}catch{return!1}}).map(l=>`@import url('./css/${l}');`).join(`
|
13
|
+
`)}
|
14
|
+
${o}`;if(a.importStrategy!=="component"){const l=n.flat().map(F=>`@import url('./css/${F}');`).join(`
|
15
|
+
`);k+=l}d.writeFileSync(c,k)}catch(s){console.error(s)}},yt=async(t,e)=>{try{const s=[],n=f.join(t,"./saltygen"),r=f.join(n,"index.css");if(q(e)){const m=await z(t),a=await I(t,e,n);Object.entries(a).forEach(([w,k])=>{if(!k.generator)return;const l=k.generator._withBuildContext({name:w,config:m}),F=`${l.hash}-${l.priority}.css`,O=`css/${F}`,y=f.join(n,O);s.push(F),d.writeFileSync(y,l.css)});const j=d.readFileSync(r,"utf8").split(`
|
16
|
+
`),o=s.map(w=>`@import url('../saltygen/css/${w}');`),b=[...new Set([...j,...o])].join(`
|
17
|
+
`);d.writeFileSync(r,b)}}catch(s){console.error(s)}},mt=async(t,e,s=v())=>{try{const n=f.join(t,"./saltygen");if(q(e)){const c=d.readFileSync(e,"utf8");c.replace(/^(?!export\s)const\s.*/gm,b=>`export ${b}`)!==c&&await L.writeFile(e,c);const a=await z(t),j=await I(t,e,n);let o=c;Object.entries(j).forEach(([b,w])=>{var D;if(w.isKeyframes||!w.generator)return;const k=w.generator._withBuildContext({name:b,config:a,prod:s}),l=new RegExp(`\\s${b}[=\\s]+[^()]+styled\\(([^,]+),`,"g").exec(c);if(!l)return console.error("Could not find the original declaration");const F=(D=l.at(1))==null?void 0:D.trim(),O=new RegExp(`\\s${b}[=\\s]+styled\\(`,"g").exec(o);if(!O)return console.error("Could not find the original declaration");const{index:y}=O;let $=!1;const u=setTimeout(()=>$=!0,5e3);let i=0,h=!1,p=0;for(;!h&&!$;){const N=o[y+i];N==="("&&p++,N===")"&&p--,p===0&&N===")"&&(h=!0),i>o.length&&($=!0),i++}if(!$)clearTimeout(u);else throw new Error("Failed to find the end of the styled call and timed out");const P=y+i,C=o.slice(y,P),S=o,x=` ${b} = styled(${F}, "${k.classNames}", ${JSON.stringify(k.props)});`;o=o.replace(C,x),S===o&&console.error("Minimize file failed to change content",{name:b,tagName:F})});const g=A(e,6);return a.importStrategy==="component"&&(o=`import '../../saltygen/css/${g}.css';
|
18
|
+
${o}`),o=o.replace("{ styled }","{ styledClient as styled }"),o=o.replace("@salty-css/react/styled","@salty-css/react/styled-client"),o}}catch(n){console.error("Error in minimizeFile:",n)}};exports.generateCss=gt;exports.generateFile=yt;exports.minimizeFile=mt;exports.saltyFileRegExp=Q;
|
package/index.cjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const p=require("path"),u=require("./index-
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const p=require("path"),u=require("./index-BTFjlOua.cjs"),r=(e,s,o=!1,n=!1)=>{var a,l,t;(l=(a=e.module)==null?void 0:a.rules)==null||l.push({test:u.saltyFileRegExp(),use:[{loader:p.resolve(__dirname,n?"./loader.cjs":"./loader.js"),options:{dir:s}}]}),o||(t=e.plugins)==null||t.push({apply:i=>{i.hooks.afterPlugins.tap({name:"generateCss"},async()=>{await u.generateCss(s)})}})};exports.default=r;exports.saltyPlugin=r;
|
package/index.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { resolve as n } from "path";
|
2
|
-
import { s as u, g as i } from "./index-
|
2
|
+
import { s as u, g as i } from "./index-41n1R3xS.js";
|
3
3
|
const g = (s, e, o = !1, r = !1) => {
|
4
4
|
var a, l, t;
|
5
5
|
(l = (a = s.module) == null ? void 0 : a.rules) == null || l.push({
|
package/loader.cjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";const i=require("./index-
|
1
|
+
"use strict";const i=require("./index-BTFjlOua.cjs");async function n(){const{dir:e}=this.getOptions(),{resourcePath:t}=this;return await i.generateFile(e,t),await i.minimizeFile(e,t)}module.exports=n;
|
package/loader.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salty-css/webpack",
|
3
|
-
"version": "0.0.1-alpha.
|
3
|
+
"version": "0.0.1-alpha.86",
|
4
4
|
"main": "./dist/index.js",
|
5
5
|
"module": "./dist/index.mjs",
|
6
6
|
"typings": "./dist/index.d.ts",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
}
|
35
35
|
},
|
36
36
|
"dependencies": {
|
37
|
-
"@salty-css/core": "^0.0.1-alpha.
|
37
|
+
"@salty-css/core": "^0.0.1-alpha.86",
|
38
38
|
"webpack": ">=5.x"
|
39
39
|
}
|
40
40
|
}
|
package/index-BMmpNOqR.cjs
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
"use strict";const v=require("esbuild"),tt=require("child_process"),f=require("path"),y=require("fs"),z=require("fs/promises");var V=typeof document<"u"?document.currentScript:null;function et(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const s in t)if(s!=="default"){const n=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,n.get?n:{enumerable:!0,get:()=>t[s]})}}return e.default=t,Object.freeze(e)}const B=et(v),W=t=>String.fromCharCode(t+(t>25?39:97)),st=(t,e)=>{let s="",n;for(n=Math.abs(t);n>52;n=n/52|0)s=W(n%52)+s;return s=W(n%52)+s,s.length<e?s=s.padStart(e,"a"):s.length>e&&(s=s.slice(-e)),s},nt=(t,e)=>{let s=e.length;for(;s;)t=t*33^e.charCodeAt(--s);return t},J=(t,e=3)=>{const s=nt(5381,JSON.stringify(t))>>>0;return st(s,e)};function M(t){return t?typeof t!="string"?M(String(t)):t.replace(/\s/g,"-").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g,(e,s)=>(s>0?"-":"")+e.toLowerCase()):""}const ot=(t,e)=>{if(typeof t!="string")return{result:t};if(!e)return{result:t};const s=[];return Object.values(e).forEach(n=>{const{pattern:o,transform:d}=n;t=t.replace(o,g=>{const{value:a,css:c}=d(g);return c&&s.push(c),a})}),{result:t,additionalCss:s}},Z=t=>typeof t!="string"?{result:t}:/\{[^{}]+\}/g.test(t)?{result:t.replace(/\{([^{}]+)\}/g,(...n)=>`var(--${M(n[1].replaceAll(".","-"))})`)}:{result:t},O=(t,e,s,n)=>{if(!t)return"";const o=[],d=Object.entries(t).reduce((a,[c,r])=>{const u=c.trim();if(typeof r=="function"&&(r=r()),typeof r=="object"){if(!r)return a;if(u==="variants")return Object.entries(r).forEach(([i,p])=>{p&&Object.entries(p).forEach(([j,m])=>{if(!m)return;const F=`${e}.${i}-${j}`,$=O(m,F);o.push($)})}),a;if(u==="defaultVariants")return a;if(u==="compoundVariants")return r.forEach(i=>{const{css:p,...j}=i,m=Object.entries(j).reduce(($,[w,T])=>`${$}.${w}-${T}`,e),F=O(p,m);o.push(F)}),a;if(u.startsWith("@")){const i=O(r,e),p=`${u} {
|
2
|
-
${i.replace(`
|
3
|
-
`,`
|
4
|
-
`)}
|
5
|
-
}`;return o.push(p),a}const h=c.includes("&")?u.replace("&",e):u.startsWith(":")?`${e}${u}`:`${e} ${u}`,C=O(r,h);return o.push(C),a}const x=u.startsWith("-")?u:M(u),b=(h,C=";")=>a=`${a}${h}${C}`,l=h=>b(`${x}:${h}`);if(typeof r=="number")return l(r);if(typeof r!="string")if("toString"in r)r=r.toString();else return a;const{modifiers:S}={},k=function*(){yield Z(r),yield ot(r,S)}();for(const{result:h,additionalCss:C=[]}of k)r=h,C.forEach(i=>{const p=O(i,"");b(p,"")});return l(r)},"");if(!d)return o.join(`
|
6
|
-
`);if(!e)return d;let g="";return g=`${e} { ${d} }`,[g,...o].join(`
|
7
|
-
`)},U=(t,e=[])=>{if(!t)return"";const s=[],n={};if(Object.entries(t).forEach(([o,d])=>{if(typeof d=="object"){if(!d)return;const g=o.trim(),a=U(d,[...e,g]);s.push(a)}else n[o]=d}),Object.keys(n).length){const o=e.map(M).join("-"),d=O(n,`.${o}`);s.push(d)}return s.join(`
|
8
|
-
`)},H=t=>{if(!t||t==="/")throw new Error("Could not find package.json file");const e=f.join(t,"package.json");return y.existsSync(e)?e:H(f.join(t,".."))},rt=async t=>{const e=H(t);return await z.readFile(e,"utf-8").then(JSON.parse).catch(()=>{})},it=async t=>{const e=await rt(t);if(e)return e.type};let D;const L=async t=>{if(D)return D;const e=await it(t);return e==="module"?D="esm":(e==="commonjs"||(typeof document>"u"?require("url").pathToFileURL(__filename).href:V&&V.tagName.toUpperCase()==="SCRIPT"&&V.src||new URL("index-BMmpNOqR.cjs",document.baseURI).href).endsWith(".cjs"))&&(D="cjs"),D||"esm"},_={externalModules:[]},K=t=>{if(_.externalModules.length>0)return _.externalModules;const e=f.join(t,"salty.config.ts"),n=y.readFileSync(e,"utf8").match(/externalModules:\s?\[(.*)\]/);if(!n)return[];const o=n[1].split(",").map(d=>d.replace(/['"`]/g,"").trim());return _.externalModules=o,o},N=t=>f.join(t,"./saltygen"),ct=["salty","css","styles","styled"],G=(t=[])=>new RegExp(`\\.(${[...ct,...t].join("|")})\\.`),R=(t,e=[])=>G(e).test(t),at=async t=>{const e=N(t),s=f.join(t,"salty.config.ts"),n=f.join(e,"salty.config.js"),o=await L(t),d=K(t);await B.build({entryPoints:[s],minify:!0,treeShaking:!0,bundle:!0,outfile:n,format:o,external:d});const g=Date.now(),{config:a}=await import(`${n}?t=${g}`);return a},lt=async t=>{const e=await at(t),s=new Set,n=(i,p=[])=>i?Object.entries(i).flatMap(([j,m])=>{if(!m)return;if(typeof m=="object")return n(m,[...p,j]);const F=[...p,j].join(".");s.add(`"${F}"`);const $=[...p.map(M),M(j)].join("-"),{result:w}=Z(m);return`--${$}: ${w};`}):[],o=i=>i?Object.entries(i).flatMap(([p,j])=>{const m=n(j);return p==="base"?m.join(""):`${p} { ${m.join("")} }`}):[],d=i=>i?Object.entries(i).flatMap(([p,j])=>Object.entries(j).flatMap(([m,F])=>{const $=n(F,[p]),w=`.${p}-${m}, [data-${p}="${m}"]`,T=$.join("");return`${w} { ${T} }`})):[],g=n(e.variables),a=o(e.responsiveVariables),c=d(e.conditionalVariables),r=N(t),u=f.join(r,"css/variables.css"),x=`:root { ${g.join("")} ${a.join("")} } ${c.join("")}`;y.writeFileSync(u,x);const b=f.join(r,"types/css-tokens.d.ts"),S=`type VariableTokens = ${[...s].join("|")||'""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;y.writeFileSync(b,S);const P=f.join(r,"css/global.css"),k=O(e.global,"");y.writeFileSync(P,k);const h=f.join(r,"css/templates.css"),C=U(e.templates);y.writeFileSync(h,C)},A=async(t,e,s)=>{const n=J(e),o=f.join(s,"js",n+".js"),d=await L(t),g=K(t);await B.build({entryPoints:[e],minify:!0,treeShaking:!0,bundle:!0,outfile:o,format:d,target:["es2022"],keepNames:!0,external:g});const a=Date.now();return await import(`${o}?t=${a}`)},q=async t=>{const e=N(t),s=f.join(e,"salty.config.js"),{config:n}=await import(s);return n},ft=async t=>{try{const e=[],s=[],n=N(t),o=f.join(n,"index.css");(()=>{y.existsSync(n)&&tt.execSync("rm -rf "+n),y.mkdirSync(n),y.mkdirSync(f.join(n,"css")),y.mkdirSync(f.join(n,"types"))})(),await lt(t);const g=await q(t);async function a(l,S){const P=["node_modules","saltygen"],k=y.statSync(l);if(k.isDirectory()){const h=y.readdirSync(l);if(P.some(i=>l.includes(i)))return;await Promise.all(h.map(i=>a(f.join(l,i),f.join(S,i))))}else if(k.isFile()&&R(l)){const C=await A(t,l,n),i=[];Object.entries(C).forEach(([F,$])=>{if($.isKeyframes&&$.css){const I=`${$.animationName}.css`,Y=`css/${I}`,Q=f.join(n,Y);e.push(I),y.writeFileSync(Q,$.css);return}if(!$.generator)return;const w=$.generator._withBuildContext({name:F,config:g}),T=`${w.hash}-${w.priority}.css`;s[w.priority]||(s[w.priority]=[]),s[w.priority].push(T),i.push(T);const E=`css/${T}`,X=f.join(n,E);y.writeFileSync(X,w.css)});const p=i.map(F=>`@import url('./${F}');`).join(`
|
9
|
-
`),j=J(l,6),m=f.join(n,`css/${j}.css`);y.writeFileSync(m,p)}}await a(t,n);const c=e.map(l=>`@import url('./css/${l}');`).join(`
|
10
|
-
`);let b=`@layer l0, l1, l2, l3, l4, l5, l6, l7, l8;
|
11
|
-
|
12
|
-
${["variables.css","global.css","templates.css"].filter(l=>{try{return y.readFileSync(f.join(n,"css",l),"utf8").length>0}catch{return!1}}).map(l=>`@import url('./css/${l}');`).join(`
|
13
|
-
`)}
|
14
|
-
${c}`;if(g.importStrategy!=="component"){const l=s.flat().map(S=>`@import url('./css/${S}');`).join(`
|
15
|
-
`);b+=l}y.writeFileSync(o,b)}catch(e){console.error(e)}},ut=async(t,e)=>{try{const s=[],n=f.join(t,"./saltygen"),o=f.join(n,"index.css");if(R(e)){const g=await q(t),a=await A(t,e,n);Object.entries(a).forEach(([b,l])=>{if(!l.generator)return;const S=l.generator._withBuildContext({name:b,config:g}),P=`${S.hash}-${S.priority}.css`,k=`css/${P}`,h=f.join(n,k);s.push(P),y.writeFileSync(h,S.css)});const c=y.readFileSync(o,"utf8").split(`
|
16
|
-
`),r=s.map(b=>`@import url('../saltygen/css/${b}');`),x=[...new Set([...c,...r])].join(`
|
17
|
-
`);y.writeFileSync(o,x)}}catch(s){console.error(s)}},pt=async(t,e)=>{try{const s=f.join(t,"./saltygen");if(R(e)){const o=y.readFileSync(e,"utf8");o.replace(/^(?!export\s)const\s.*/gm,u=>`export ${u}`)!==o&&await z.writeFile(e,o);const g=await q(t),a=await A(t,e,s);let c=o;Object.entries(a).forEach(([u,x])=>{var T;if(x.isKeyframes||!x.generator)return;const b=x.generator._withBuildContext({name:u,config:g}),l=new RegExp(`\\s${u}[=\\s]+[^()]+styled\\(([^,]+),`,"g").exec(o);if(!l)return console.error("Could not find the original declaration");const S=(T=l.at(1))==null?void 0:T.trim(),P=new RegExp(`\\s${u}[=\\s]+styled\\(`,"g").exec(c);if(!P)return console.error("Could not find the original declaration");const{index:k}=P;let h=!1;const C=setTimeout(()=>h=!0,5e3);let i=0,p=!1,j=0;for(;!p&&!h;){const E=c[k+i];E==="("&&j++,E===")"&&j--,j===0&&E===")"&&(p=!0),i>c.length&&(h=!0),i++}if(!h)clearTimeout(C);else throw new Error("Failed to find the end of the styled call and timed out");const m=k+i,F=c.slice(k,m),$=c,w=` ${u} = styled(${S}, "${b.classNames}", "${b._callerName}", ${JSON.stringify(b.props)});`;c=c.replace(F,w),$===c&&console.error("Minimize file failed to change content",{name:u,tagName:S})});const r=J(e,6);return g.importStrategy==="component"&&(c=`import '../../saltygen/css/${r}.css';
|
18
|
-
${c}`),c=c.replace("{ styled }","{ styledClient as styled }"),c=c.replace("@salty-css/react/styled","@salty-css/react/styled-client"),c}}catch(s){console.error("Error in minimizeFile:",s)}};exports.generateCss=ft;exports.generateFile=ut;exports.minimizeFile=pt;exports.saltyFileRegExp=G;
|
package/index-ePp5EJ2T.js
DELETED
@@ -1,303 +0,0 @@
|
|
1
|
-
import * as z from "esbuild";
|
2
|
-
import { execSync as v } from "child_process";
|
3
|
-
import { join as f } from "path";
|
4
|
-
import { existsSync as H, writeFileSync as M, readFileSync as O, mkdirSync as J, statSync as tt, readdirSync as st } from "fs";
|
5
|
-
import { readFile as et, writeFile as nt } from "fs/promises";
|
6
|
-
const Z = (t) => String.fromCharCode(t + (t > 25 ? 39 : 97)), ot = (t, s) => {
|
7
|
-
let e = "", n;
|
8
|
-
for (n = Math.abs(t); n > 52; n = n / 52 | 0) e = Z(n % 52) + e;
|
9
|
-
return e = Z(n % 52) + e, e.length < s ? e = e.padStart(s, "a") : e.length > s && (e = e.slice(-s)), e;
|
10
|
-
}, rt = (t, s) => {
|
11
|
-
let e = s.length;
|
12
|
-
for (; e; ) t = t * 33 ^ s.charCodeAt(--e);
|
13
|
-
return t;
|
14
|
-
}, R = (t, s = 3) => {
|
15
|
-
const e = rt(5381, JSON.stringify(t)) >>> 0;
|
16
|
-
return ot(e, s);
|
17
|
-
};
|
18
|
-
function E(t) {
|
19
|
-
return t ? typeof t != "string" ? E(String(t)) : t.replace(/\s/g, "-").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g, (s, e) => (e > 0 ? "-" : "") + s.toLowerCase()) : "";
|
20
|
-
}
|
21
|
-
const ct = (t, s) => {
|
22
|
-
if (typeof t != "string") return { result: t };
|
23
|
-
if (!s) return { result: t };
|
24
|
-
const e = [];
|
25
|
-
return Object.values(s).forEach((n) => {
|
26
|
-
const { pattern: o, transform: g } = n;
|
27
|
-
t = t.replace(o, (y) => {
|
28
|
-
const { value: a, css: i } = g(y);
|
29
|
-
return i && e.push(i), a;
|
30
|
-
});
|
31
|
-
}), { result: t, additionalCss: e };
|
32
|
-
}, K = (t) => typeof t != "string" ? { result: t } : /\{[^{}]+\}/g.test(t) ? { result: t.replace(/\{([^{}]+)\}/g, (...n) => `var(--${E(n[1].replaceAll(".", "-"))})`) } : { result: t }, T = (t, s, e, n) => {
|
33
|
-
if (!t) return "";
|
34
|
-
const o = [], g = Object.entries(t).reduce((a, [i, r]) => {
|
35
|
-
const p = i.trim();
|
36
|
-
if (typeof r == "function" && (r = r()), typeof r == "object") {
|
37
|
-
if (!r) return a;
|
38
|
-
if (p === "variants")
|
39
|
-
return Object.entries(r).forEach(([c, u]) => {
|
40
|
-
u && Object.entries(u).forEach(([m, h]) => {
|
41
|
-
if (!h) return;
|
42
|
-
const S = `${s}.${c}-${m}`, $ = T(h, S);
|
43
|
-
o.push($);
|
44
|
-
});
|
45
|
-
}), a;
|
46
|
-
if (p === "defaultVariants")
|
47
|
-
return a;
|
48
|
-
if (p === "compoundVariants")
|
49
|
-
return r.forEach((c) => {
|
50
|
-
const { css: u, ...m } = c, h = Object.entries(m).reduce(($, [w, P]) => `${$}.${w}-${P}`, s), S = T(u, h);
|
51
|
-
o.push(S);
|
52
|
-
}), a;
|
53
|
-
if (p.startsWith("@")) {
|
54
|
-
const c = T(r, s), u = `${p} {
|
55
|
-
${c.replace(`
|
56
|
-
`, `
|
57
|
-
`)}
|
58
|
-
}`;
|
59
|
-
return o.push(u), a;
|
60
|
-
}
|
61
|
-
const d = i.includes("&") ? p.replace("&", s) : p.startsWith(":") ? `${s}${p}` : `${s} ${p}`, k = T(r, d);
|
62
|
-
return o.push(k), a;
|
63
|
-
}
|
64
|
-
const x = p.startsWith("-") ? p : E(p), b = (d, k = ";") => a = `${a}${d}${k}`, l = (d) => b(`${x}:${d}`);
|
65
|
-
if (typeof r == "number") return l(r);
|
66
|
-
if (typeof r != "string")
|
67
|
-
if ("toString" in r) r = r.toString();
|
68
|
-
else return a;
|
69
|
-
const { modifiers: j } = {}, F = function* () {
|
70
|
-
yield K(r), yield ct(r, j);
|
71
|
-
}();
|
72
|
-
for (const { result: d, additionalCss: k = [] } of F)
|
73
|
-
r = d, k.forEach((c) => {
|
74
|
-
const u = T(c, "");
|
75
|
-
b(u, "");
|
76
|
-
});
|
77
|
-
return l(r);
|
78
|
-
}, "");
|
79
|
-
if (!g) return o.join(`
|
80
|
-
`);
|
81
|
-
if (!s) return g;
|
82
|
-
let y = "";
|
83
|
-
return y = `${s} { ${g} }`, [y, ...o].join(`
|
84
|
-
`);
|
85
|
-
}, q = (t, s = []) => {
|
86
|
-
if (!t) return "";
|
87
|
-
const e = [], n = {};
|
88
|
-
if (Object.entries(t).forEach(([o, g]) => {
|
89
|
-
if (typeof g == "object") {
|
90
|
-
if (!g) return;
|
91
|
-
const y = o.trim(), a = q(g, [...s, y]);
|
92
|
-
e.push(a);
|
93
|
-
} else
|
94
|
-
n[o] = g;
|
95
|
-
}), Object.keys(n).length) {
|
96
|
-
const o = s.map(E).join("-"), g = T(n, `.${o}`);
|
97
|
-
e.push(g);
|
98
|
-
}
|
99
|
-
return e.join(`
|
100
|
-
`);
|
101
|
-
}, G = (t) => {
|
102
|
-
if (!t || t === "/") throw new Error("Could not find package.json file");
|
103
|
-
const s = f(t, "package.json");
|
104
|
-
return H(s) ? s : G(f(t, ".."));
|
105
|
-
}, it = async (t) => {
|
106
|
-
const s = G(t);
|
107
|
-
return await et(s, "utf-8").then(JSON.parse).catch(() => {
|
108
|
-
});
|
109
|
-
}, at = async (t) => {
|
110
|
-
const s = await it(t);
|
111
|
-
if (s)
|
112
|
-
return s.type;
|
113
|
-
};
|
114
|
-
let D;
|
115
|
-
const L = async (t) => {
|
116
|
-
if (D) return D;
|
117
|
-
const s = await at(t);
|
118
|
-
return s === "module" ? D = "esm" : (s === "commonjs" || import.meta.url.endsWith(".cjs")) && (D = "cjs"), D || "esm";
|
119
|
-
}, A = {
|
120
|
-
externalModules: []
|
121
|
-
}, U = (t) => {
|
122
|
-
if (A.externalModules.length > 0) return A.externalModules;
|
123
|
-
const s = f(t, "salty.config.ts"), n = O(s, "utf8").match(/externalModules:\s?\[(.*)\]/);
|
124
|
-
if (!n) return [];
|
125
|
-
const o = n[1].split(",").map((g) => g.replace(/['"`]/g, "").trim());
|
126
|
-
return A.externalModules = o, o;
|
127
|
-
}, V = (t) => f(t, "./saltygen"), lt = ["salty", "css", "styles", "styled"], ft = (t = []) => new RegExp(`\\.(${[...lt, ...t].join("|")})\\.`), _ = (t, s = []) => ft(s).test(t), pt = async (t) => {
|
128
|
-
const s = V(t), e = f(t, "salty.config.ts"), n = f(s, "salty.config.js"), o = await L(t), g = U(t);
|
129
|
-
await z.build({
|
130
|
-
entryPoints: [e],
|
131
|
-
minify: !0,
|
132
|
-
treeShaking: !0,
|
133
|
-
bundle: !0,
|
134
|
-
outfile: n,
|
135
|
-
format: o,
|
136
|
-
external: g
|
137
|
-
});
|
138
|
-
const y = Date.now(), { config: a } = await import(`${n}?t=${y}`);
|
139
|
-
return a;
|
140
|
-
}, ut = async (t) => {
|
141
|
-
const s = await pt(t), e = /* @__PURE__ */ new Set(), n = (c, u = []) => c ? Object.entries(c).flatMap(([m, h]) => {
|
142
|
-
if (!h) return;
|
143
|
-
if (typeof h == "object") return n(h, [...u, m]);
|
144
|
-
const S = [...u, m].join(".");
|
145
|
-
e.add(`"${S}"`);
|
146
|
-
const $ = [...u.map(E), E(m)].join("-"), { result: w } = K(h);
|
147
|
-
return `--${$}: ${w};`;
|
148
|
-
}) : [], o = (c) => c ? Object.entries(c).flatMap(([u, m]) => {
|
149
|
-
const h = n(m);
|
150
|
-
return u === "base" ? h.join("") : `${u} { ${h.join("")} }`;
|
151
|
-
}) : [], g = (c) => c ? Object.entries(c).flatMap(([u, m]) => Object.entries(m).flatMap(([h, S]) => {
|
152
|
-
const $ = n(S, [u]), w = `.${u}-${h}, [data-${u}="${h}"]`, P = $.join("");
|
153
|
-
return `${w} { ${P} }`;
|
154
|
-
})) : [], y = n(s.variables), a = o(s.responsiveVariables), i = g(s.conditionalVariables), r = V(t), p = f(r, "css/variables.css"), x = `:root { ${y.join("")} ${a.join("")} } ${i.join("")}`;
|
155
|
-
M(p, x);
|
156
|
-
const b = f(r, "types/css-tokens.d.ts"), j = `type VariableTokens = ${[...e].join("|") || '""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;
|
157
|
-
M(b, j);
|
158
|
-
const C = f(r, "css/global.css"), F = T(s.global, "");
|
159
|
-
M(C, F);
|
160
|
-
const d = f(r, "css/templates.css"), k = q(s.templates);
|
161
|
-
M(d, k);
|
162
|
-
}, W = async (t, s, e) => {
|
163
|
-
const n = R(s), o = f(e, "js", n + ".js"), g = await L(t), y = U(t);
|
164
|
-
await z.build({
|
165
|
-
entryPoints: [s],
|
166
|
-
minify: !0,
|
167
|
-
treeShaking: !0,
|
168
|
-
bundle: !0,
|
169
|
-
outfile: o,
|
170
|
-
format: g,
|
171
|
-
target: ["es2022"],
|
172
|
-
keepNames: !0,
|
173
|
-
external: y
|
174
|
-
});
|
175
|
-
const a = Date.now();
|
176
|
-
return await import(`${o}?t=${a}`);
|
177
|
-
}, B = async (t) => {
|
178
|
-
const s = V(t), e = f(s, "salty.config.js"), { config: n } = await import(e);
|
179
|
-
return n;
|
180
|
-
}, mt = async (t) => {
|
181
|
-
try {
|
182
|
-
const s = [], e = [], n = V(t), o = f(n, "index.css");
|
183
|
-
(() => {
|
184
|
-
H(n) && v("rm -rf " + n), J(n), J(f(n, "css")), J(f(n, "types"));
|
185
|
-
})(), await ut(t);
|
186
|
-
const y = await B(t);
|
187
|
-
async function a(l, j) {
|
188
|
-
const C = ["node_modules", "saltygen"], F = tt(l);
|
189
|
-
if (F.isDirectory()) {
|
190
|
-
const d = st(l);
|
191
|
-
if (C.some((c) => l.includes(c))) return;
|
192
|
-
await Promise.all(d.map((c) => a(f(l, c), f(j, c))));
|
193
|
-
} else if (F.isFile() && _(l)) {
|
194
|
-
const k = await W(t, l, n), c = [];
|
195
|
-
Object.entries(k).forEach(([S, $]) => {
|
196
|
-
if ($.isKeyframes && $.css) {
|
197
|
-
const I = `${$.animationName}.css`, Y = `css/${I}`, Q = f(n, Y);
|
198
|
-
s.push(I), M(Q, $.css);
|
199
|
-
return;
|
200
|
-
}
|
201
|
-
if (!$.generator) return;
|
202
|
-
const w = $.generator._withBuildContext({
|
203
|
-
name: S,
|
204
|
-
config: y
|
205
|
-
}), P = `${w.hash}-${w.priority}.css`;
|
206
|
-
e[w.priority] || (e[w.priority] = []), e[w.priority].push(P), c.push(P);
|
207
|
-
const N = `css/${P}`, X = f(n, N);
|
208
|
-
M(X, w.css);
|
209
|
-
});
|
210
|
-
const u = c.map((S) => `@import url('./${S}');`).join(`
|
211
|
-
`), m = R(l, 6), h = f(n, `css/${m}.css`);
|
212
|
-
M(h, u);
|
213
|
-
}
|
214
|
-
}
|
215
|
-
await a(t, n);
|
216
|
-
const i = s.map((l) => `@import url('./css/${l}');`).join(`
|
217
|
-
`);
|
218
|
-
let b = `@layer l0, l1, l2, l3, l4, l5, l6, l7, l8;
|
219
|
-
|
220
|
-
${["variables.css", "global.css", "templates.css"].filter((l) => {
|
221
|
-
try {
|
222
|
-
return O(f(n, "css", l), "utf8").length > 0;
|
223
|
-
} catch {
|
224
|
-
return !1;
|
225
|
-
}
|
226
|
-
}).map((l) => `@import url('./css/${l}');`).join(`
|
227
|
-
`)}
|
228
|
-
${i}`;
|
229
|
-
if (y.importStrategy !== "component") {
|
230
|
-
const l = e.flat().map((j) => `@import url('./css/${j}');`).join(`
|
231
|
-
`);
|
232
|
-
b += l;
|
233
|
-
}
|
234
|
-
M(o, b);
|
235
|
-
} catch (s) {
|
236
|
-
console.error(s);
|
237
|
-
}
|
238
|
-
}, $t = async (t, s) => {
|
239
|
-
try {
|
240
|
-
const e = [], n = f(t, "./saltygen"), o = f(n, "index.css");
|
241
|
-
if (_(s)) {
|
242
|
-
const y = await B(t), a = await W(t, s, n);
|
243
|
-
Object.entries(a).forEach(([b, l]) => {
|
244
|
-
if (!l.generator) return;
|
245
|
-
const j = l.generator._withBuildContext({
|
246
|
-
name: b,
|
247
|
-
config: y
|
248
|
-
}), C = `${j.hash}-${j.priority}.css`, F = `css/${C}`, d = f(n, F);
|
249
|
-
e.push(C), M(d, j.css);
|
250
|
-
});
|
251
|
-
const i = O(o, "utf8").split(`
|
252
|
-
`), r = e.map((b) => `@import url('../saltygen/css/${b}');`), x = [.../* @__PURE__ */ new Set([...i, ...r])].join(`
|
253
|
-
`);
|
254
|
-
M(o, x);
|
255
|
-
}
|
256
|
-
} catch (e) {
|
257
|
-
console.error(e);
|
258
|
-
}
|
259
|
-
}, bt = async (t, s) => {
|
260
|
-
try {
|
261
|
-
const e = f(t, "./saltygen");
|
262
|
-
if (_(s)) {
|
263
|
-
const o = O(s, "utf8");
|
264
|
-
o.replace(/^(?!export\s)const\s.*/gm, (p) => `export ${p}`) !== o && await nt(s, o);
|
265
|
-
const y = await B(t), a = await W(t, s, e);
|
266
|
-
let i = o;
|
267
|
-
Object.entries(a).forEach(([p, x]) => {
|
268
|
-
var P;
|
269
|
-
if (x.isKeyframes || !x.generator) return;
|
270
|
-
const b = x.generator._withBuildContext({
|
271
|
-
name: p,
|
272
|
-
config: y
|
273
|
-
}), l = new RegExp(`\\s${p}[=\\s]+[^()]+styled\\(([^,]+),`, "g").exec(o);
|
274
|
-
if (!l) return console.error("Could not find the original declaration");
|
275
|
-
const j = (P = l.at(1)) == null ? void 0 : P.trim(), C = new RegExp(`\\s${p}[=\\s]+styled\\(`, "g").exec(i);
|
276
|
-
if (!C) return console.error("Could not find the original declaration");
|
277
|
-
const { index: F } = C;
|
278
|
-
let d = !1;
|
279
|
-
const k = setTimeout(() => d = !0, 5e3);
|
280
|
-
let c = 0, u = !1, m = 0;
|
281
|
-
for (; !u && !d; ) {
|
282
|
-
const N = i[F + c];
|
283
|
-
N === "(" && m++, N === ")" && m--, m === 0 && N === ")" && (u = !0), c > i.length && (d = !0), c++;
|
284
|
-
}
|
285
|
-
if (!d) clearTimeout(k);
|
286
|
-
else throw new Error("Failed to find the end of the styled call and timed out");
|
287
|
-
const h = F + c, S = i.slice(F, h), $ = i, w = ` ${p} = styled(${j}, "${b.classNames}", "${b._callerName}", ${JSON.stringify(b.props)});`;
|
288
|
-
i = i.replace(S, w), $ === i && console.error("Minimize file failed to change content", { name: p, tagName: j });
|
289
|
-
});
|
290
|
-
const r = R(s, 6);
|
291
|
-
return y.importStrategy === "component" && (i = `import '../../saltygen/css/${r}.css';
|
292
|
-
${i}`), i = i.replace("{ styled }", "{ styledClient as styled }"), i = i.replace("@salty-css/react/styled", "@salty-css/react/styled-client"), i;
|
293
|
-
}
|
294
|
-
} catch (e) {
|
295
|
-
console.error("Error in minimizeFile:", e);
|
296
|
-
}
|
297
|
-
};
|
298
|
-
export {
|
299
|
-
$t as a,
|
300
|
-
mt as g,
|
301
|
-
bt as m,
|
302
|
-
ft as s
|
303
|
-
};
|