@salty-css/vite 0.0.1-alpha.10 → 0.0.1-alpha.100
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 +83 -8
- package/index.cjs +14 -14
- package/index.d.ts +1 -0
- package/index.js +259 -211
- package/package.json +11 -2
package/README.md
CHANGED
@@ -1,15 +1,90 @@
|
|
1
|
-
# Salty
|
1
|
+
# Salty CSS - Kinda sweet but yet spicy CSS-in-JS library
|
2
2
|
|
3
|
-
|
3
|
+
In the world of frontend dev is there anything saltier than CSS? Salty CSS is built to provide better developer experience for developers looking for performant and feature rich CSS-in-JS solutions.
|
4
4
|
|
5
|
-
|
5
|
+
## Features
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
- Build time compilation to achieve awesome runtime performance and minimal size
|
8
|
+
- Next.js, React Server Components, Vite and Webpack support
|
9
|
+
- Type safety with out of the box TypeScript and ESLint plugin
|
10
|
+
- Advanced CSS variables configuration to allow smooth token usage
|
11
|
+
- Style templates to create reusable styles easily
|
11
12
|
|
12
|
-
|
13
|
+
## Get started
|
14
|
+
|
15
|
+
- Initialize: `npx salty-css init [directory]`
|
16
|
+
- Create component: `npx salty-css generate [filePath]`
|
17
|
+
- Build: `npx salty-css build [directory]`
|
18
|
+
|
19
|
+
### Packages
|
20
|
+
|
21
|
+
Note: Fastest way to get started with any framework is [npx salty-css init [directory]](#initialize-salty-css-for-a-project) command
|
22
|
+
|
23
|
+
- [Next.js](#nextjs) → `npm install @salty-css/next` + [Next.js install guide](#nextjs) + [Next.js example app](https://github.com/margarita-form/salty-css-website)
|
24
|
+
- [React](#react) → `npm install @salty-css/react` + [React install guide](#react) + [React example code](#code-examples)
|
25
|
+
- [Vite](#vite) → `npm install @salty-css/vite` + [(Vite install guide)](#vite)
|
26
|
+
- [Webpack](https://www.npmjs.com/package/@salty-css/webpack) → `npm install @salty-css/webpack` + Guide coming soon
|
27
|
+
- [ESLint](https://www.npmjs.com/package/@salty-css/eslint-plugin-core) → `npm install @salty-css/eslint-plugin-core` + Guide coming soon
|
28
|
+
- [Core](https://www.npmjs.com/package/@salty-css/react) → `npm install @salty-css/core` (This package contains code for internal use)
|
29
|
+
|
30
|
+
### Add Salty CSS to your project with `salty-css` CLI
|
31
|
+
|
32
|
+
#### Initialize Salty CSS for a project
|
33
|
+
|
34
|
+
In your existing repository run `npx salty-css init [directory]` which installs required salty-css packages to the current directory, detects framework in use (current support for vite and next.js) and creates project files to the provided directory. Directory can be left blank if you want files to be created to the current directory. Init will also create `.saltyrc.json` which contains some metadata for future CLI commands.
|
35
|
+
|
36
|
+
#### Create components
|
37
|
+
|
38
|
+
Components can be created with `npx salty-css generate [filePath]` which then creates a new Salty CSS component file to the specified path. Additional options like `--dir, --tag, --name and --className` are also supported. Read more about them with `npx salty-css generate --help`
|
39
|
+
|
40
|
+
#### Build / Compile Salty CSS
|
41
|
+
|
42
|
+
If you want to manually build your project that can be done by running `npx salty-css build [directory]`. Directory is not required as CLI can use default directory defined in `.saltyrc.json`. Note that build generates css files but Vite / Webpack plugin is still required for full support.
|
43
|
+
|
44
|
+
#### Update Salty CSS packages
|
45
|
+
|
46
|
+
To ease the pain of package updates all Salty CSS packages can be updated with `npx salty-css update`
|
47
|
+
|
48
|
+
### Manual work
|
49
|
+
|
50
|
+
#### Next.js
|
51
|
+
|
52
|
+
1. For Next.js support install `npm i @salty-css/next @salty-css/core @salty-css/react`
|
53
|
+
2. Create `salty.config.ts` to your app directory
|
54
|
+
3. Add Salty CSS plugin to next.js config
|
55
|
+
|
56
|
+
- **Next.js 15:** In `next.config.ts` add import for salty plugin `import { withSaltyCss } from '@salty-css/next';` and then add `withSaltyCss` to wrap your nextConfig export like so `export default withSaltyCss(nextConfig);`
|
57
|
+
- **Next.js 14 and older:** In `next.config.js` add import for salty plugin `const { withSaltyCss } = require('@salty-css/next');` and then add `withSaltyCss` to wrap your nextConfig export like so `module.exports = withSaltyCss(nextConfig);`
|
58
|
+
|
59
|
+
4. Make sure that `salty.config.ts` and `next.config.ts` are in the same folder!
|
60
|
+
5. Build `saltygen` directory by running your app once or with cli `npx salty-css build [directory]`
|
61
|
+
6. Import global styles from `saltygen/index.css` to some global css file with `@import 'insert_path_to_index_css';`.
|
62
|
+
|
63
|
+
[Check out Next.js demo project](https://github.com/margarita-form/salty-css-website) or [react example code](#code-examples)
|
64
|
+
|
65
|
+
#### React
|
66
|
+
|
67
|
+
1. Install related dependencies: `npm i @salty-css/core @salty-css/react`
|
68
|
+
2. Create `salty.config.ts` to your app directory
|
69
|
+
3. Configure your build tool to support Salty CSS ([Vite](#vite) or Webpack)
|
70
|
+
|
71
|
+
[Check out react example code](#code-examples)
|
72
|
+
|
73
|
+
#### Vite
|
74
|
+
|
75
|
+
1. For Vite support install `npm i @salty-css/vite @salty-css/core`
|
76
|
+
2. In `vite.config` add import for salty plugin `import { saltyPlugin } from '@salty-css/vite';` and then add `saltyPlugin(__dirname)` to your vite configuration plugins
|
77
|
+
3. Make sure that `salty.config.ts` and `vite.config.ts` are in the same folder!
|
78
|
+
4. Build `saltygen` directory by running your app once or with cli `npx salty-css build [directory]`
|
79
|
+
5. Import global styles from `saltygen/index.css` to some global css file with `@import 'insert_path_to_index_css';`.
|
80
|
+
|
81
|
+
### Create components
|
82
|
+
|
83
|
+
1. Create salty components with styled only inside files that end with `.css.ts`, `.salty.ts` `.styled.ts` or `.styles.ts`
|
84
|
+
|
85
|
+
## Code examples
|
86
|
+
|
87
|
+
### Basic usage example with Button
|
13
88
|
|
14
89
|
**Salty config**
|
15
90
|
|
package/index.cjs
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
"use strict";Object.
|
2
|
-
${
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const ot=require("esbuild"),rt=require("child_process"),u=require("path"),d=require("fs"),L=require("fs/promises"),V=require("winston");var R=typeof document<"u"?document.currentScript:null;function it(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=it(ot),B=t=>String.fromCharCode(t+(t>25?39:97)),ct=(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},at=(t,e)=>{let s=e.length;for(;s;)t=t*33^e.charCodeAt(--s);return t},q=(t,e=3)=>{const s=at(5381,JSON.stringify(t))>>>0;return ct(s,e)};function E(t){return t?typeof t!="string"?E(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 lt=(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(--${E(n[1].replaceAll(".","-"))})`)}:{result:t},T=(t,e,s,n)=>{if(!t)return"";const r=[],c=Object.entries(t).reduce((a,[j,o])=>{const y=j.trim();if(typeof o=="function"&&(o=o()),typeof o=="object"){if(!o)return a;if(y==="variants")return Object.entries(o).forEach(([f,i])=>{i&&Object.entries(i).forEach(([h,p])=>{if(!p)return;const P=`${e}.${f}-${h}`,C=T(p,P);r.push(C)})}),a;if(y==="defaultVariants")return a;if(y==="compoundVariants")return o.forEach(f=>{const{css:i,...h}=f,p=Object.entries(h).reduce((C,[S,x])=>`${C}.${S}-${x}`,e),P=T(i,p);r.push(P)}),a;if(y.startsWith("@")){const f=T(o,e),i=`${y} {
|
2
|
+
${f.replace(`
|
3
3
|
`,`
|
4
4
|
`)}
|
5
|
-
}`;return
|
6
|
-
`);if(!
|
7
|
-
`)},
|
8
|
-
`)};
|
9
|
-
`),
|
10
|
-
`);let
|
5
|
+
}`;return r.push(i),a}const g=j.includes("&")?y.replace("&",e):y.startsWith(":")?`${e}${y}`:`${e} ${y}`,b=T(o,g);return r.push(b),a}const $=y.startsWith("-")?y:E(y),w=(g,b=";")=>a=`${a}${g}${b}`,k=g=>w(`${$}:${g}`);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 lt(o,l)}();for(const{result:g,additionalCss:b=[]}of O)o=g,b.forEach(f=>{const i=T(f,"");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(E).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=u.join(t,"package.json");return d.existsSync(e)?e:K(u.join(t,".."))},ut=async t=>{const e=K(t);return await L.readFile(e,"utf-8").then(JSON.parse).catch(()=>{})},ft=async t=>{const e=await ut(t);if(e)return e.type};let D;const X=async t=>{if(D)return D;const e=await ft(t);return e==="module"?D="esm":(e==="commonjs"||(typeof document>"u"?require("url").pathToFileURL(__filename).href:R&&R.tagName.toUpperCase()==="SCRIPT"&&R.src||new URL("index.cjs",document.baseURI).href).endsWith(".cjs"))&&(D="cjs"),D||"esm"},Z=V.createLogger({level:"debug",format:V.format.combine(V.format.colorize(),V.format.cli()),transports:[new V.transports.Console({})]}),A={externalModules:[]},Y=t=>{if(A.externalModules.length>0)return A.externalModules;const e=u.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 A.externalModules=r,r},J=t=>u.join(t,"./saltygen"),pt=["salty","css","styles","styled"],dt=(t=[])=>new RegExp(`\\.(${[...pt,...t].join("|")})\\.`),_=(t,e=[])=>dt(e).test(t),yt=async t=>{const e=J(t),s=u.join(t,"salty.config.ts"),n=u.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},Q=async t=>{const e=await yt(t),s=new Set,n=(f,i=[])=>f?Object.entries(f).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(E),E(h)].join("-"),{result:S}=G(p);return`--${C}: ${S};`}):[],r=f=>f?Object.entries(f).flatMap(([i,h])=>{const p=n(h);return i==="base"?p.join(""):`${i} { ${p.join("")} }`}):[],c=f=>f?Object.entries(f).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=J(t),y=u.join(o,"css/variables.css"),$=`:root { ${m.join("")} ${a.join("")} } ${j.join("")}`;d.writeFileSync(y,$);const w=u.join(o,"types/css-tokens.d.ts"),l=`type VariableTokens = ${[...s].join("|")||'""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;d.writeFileSync(w,l);const F=u.join(o,"css/global.css"),O=T(e.global,"");d.writeFileSync(F,O);const g=u.join(o,"css/templates.css"),b=H(e.templates);d.writeFileSync(g,b)},I=async(t,e,s)=>{const n=q(e),r=u.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}`)},W=async t=>{const e=J(t),s=u.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=J(t),c=u.join(r,"index.css");(()=>{d.existsSync(r)&&rt.execSync("rm -rf "+r),d.mkdirSync(r),d.mkdirSync(u.join(r,"css")),d.mkdirSync(u.join(r,"types"))})(),await Q(t);const a=await W(t);async function j(l,F){const O=["node_modules","saltygen"],g=d.statSync(l);if(g.isDirectory()){const b=d.readdirSync(l);if(O.some(i=>l.includes(i)))return;await Promise.all(b.map(i=>j(u.join(l,i),u.join(F,i))))}else if(g.isFile()&&_(l)){const f=await I(t,l,r),i=[];Object.entries(f).forEach(([C,S])=>{if(S.isKeyframes&&S.css){const z=`${S.animationName}.css`,st=`css/${z}`,nt=u.join(r,st);s.push(z),d.writeFileSync(nt,S.css);return}if(!S.generator)return;const x=S.generator._withBuildContext({name:C,config:a,prod:e}),M=`${x.hash}-${x.priority}.css`;n[x.priority]||(n[x.priority]=[]),n[x.priority].push(M),i.push(M);const N=`css/${M}`,et=u.join(r,N);d.writeFileSync(et,x.css)});const h=i.map(C=>`@import url('./${C}');`).join(`
|
9
|
+
`),p=q(l,6),P=u.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
11
|
|
12
|
-
${["
|
12
|
+
${["variables.css","global.css","templates.css"].filter(l=>{try{return d.readFileSync(u.join(r,"css",l),"utf8").length>0}catch{return!1}}).map(l=>`@import url('./css/${l}');`).join(`
|
13
13
|
`)}
|
14
|
-
${
|
15
|
-
`);
|
16
|
-
`),
|
17
|
-
`);d.writeFileSync(
|
18
|
-
${
|
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)}},mt=async(t,e)=>{try{const s=[],n=u.join(t,"./saltygen"),r=u.join(n,"index.css");if(_(e)){const m=await W(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}`,g=u.join(n,O);s.push(F),d.writeFileSync(g,l.css)});const j=d.readFileSync(r,"utf8").split(`
|
16
|
+
`),o=s.map(w=>`@import url('../saltygen/css/${w}');`),$=[...new Set([...j,...o])].join(`
|
17
|
+
`);d.writeFileSync(r,$)}}catch(s){console.error(s)}},ht=async(t,e,s=v())=>{try{const n=u.join(t,"./saltygen");if(_(e)){const c=d.readFileSync(e,"utf8");c.replace(/^(?!export\s)const\s.*/gm,$=>`export ${$}`)!==c&&await L.writeFile(e,c);const a=await W(t),j=await I(t,e,n);let o=c;Object.entries(j).forEach(([$,w])=>{var M;if(w.isKeyframes||!w.generator)return;const k=w.generator._withBuildContext({name:$,config:a,prod:s}),l=new RegExp(`\\s${$}[=\\s]+[^()]+styled\\(([^,]+),`,"g").exec(c);if(!l)return console.error("Could not find the original declaration");const F=(M=l.at(1))==null?void 0:M.trim(),O=new RegExp(`\\s${$}[=\\s]+styled\\(`,"g").exec(o);if(!O)return console.error("Could not find the original declaration");const{index:g}=O;let b=!1;const f=setTimeout(()=>b=!0,5e3);let i=0,h=!1,p=0;for(;!h&&!b;){const N=o[g+i];N==="("&&p++,N===")"&&p--,p===0&&N===")"&&(h=!0),i>o.length&&(b=!0),i++}if(!b)clearTimeout(f);else throw new Error("Failed to find the end of the styled call and timed out");const P=g+i,C=o.slice(g,P),S=o,x=` ${$} = styled(${F}, "${k.classNames}", ${JSON.stringify(k.props)});`;o=o.replace(C,x),S===o&&console.error("Minimize file failed to change content",{name:$,tagName:F})});const y=q(e,6);return a.importStrategy==="component"&&(o=`import '../../saltygen/css/${y}.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)}},tt=t=>({name:"stylegen",buildStart:()=>gt(t),load:async e=>{if(_(e))return await ht(t,e)},watchChange:{handler:async e=>{_(e)&&await mt(t,e),e.includes("salty.config")&&await Q(t)}}});exports.default=tt;exports.saltyPlugin=tt;
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
@@ -1,279 +1,327 @@
|
|
1
|
-
import * as
|
2
|
-
import
|
3
|
-
import {
|
4
|
-
import {
|
5
|
-
import {
|
6
|
-
import {
|
7
|
-
const
|
8
|
-
let
|
9
|
-
for (
|
10
|
-
return
|
11
|
-
},
|
12
|
-
let
|
13
|
-
for (;
|
1
|
+
import * as K from "esbuild";
|
2
|
+
import { execSync as ot } from "child_process";
|
3
|
+
import { join as f } from "path";
|
4
|
+
import { existsSync as L, writeFileSync as E, mkdirSync as R, statSync as rt, readdirSync as ct, readFileSync as J } from "fs";
|
5
|
+
import { readFile as it, writeFile as at } from "fs/promises";
|
6
|
+
import { createLogger as lt, format as _, transports as ft } from "winston";
|
7
|
+
const G = (t) => String.fromCharCode(t + (t > 25 ? 39 : 97)), ut = (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
14
|
return t;
|
15
|
-
},
|
16
|
-
const
|
17
|
-
return
|
15
|
+
}, B = (t, e = 3) => {
|
16
|
+
const s = pt(5381, JSON.stringify(t)) >>> 0;
|
17
|
+
return ut(s, e);
|
18
18
|
};
|
19
|
-
function
|
20
|
-
return t ? typeof t != "string" ? String(t) : t.replace(/\s/g, "-").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g, (
|
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
21
|
}
|
22
|
-
const
|
22
|
+
const gt = (t, e) => {
|
23
23
|
if (typeof t != "string") return { result: t };
|
24
|
-
if (!
|
25
|
-
const
|
26
|
-
return Object.values(
|
27
|
-
const { pattern: r, transform:
|
28
|
-
t = t.replace(r, (
|
29
|
-
const { value: a, css:
|
30
|
-
return
|
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, (d) => {
|
29
|
+
const { value: a, css: h } = i(d);
|
30
|
+
return h && s.push(h), a;
|
31
31
|
});
|
32
|
-
}), { result: t, additionalCss:
|
33
|
-
},
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
if (
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
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(([u, c]) => {
|
41
|
+
c && Object.entries(c).forEach(([m, p]) => {
|
42
|
+
if (!p) return;
|
43
|
+
const x = `${e}.${u}-${m}`, F = D(p, x);
|
44
|
+
r.push(F);
|
44
45
|
});
|
45
46
|
}), a;
|
46
|
-
if (
|
47
|
+
if (g === "defaultVariants")
|
47
48
|
return a;
|
48
|
-
if (
|
49
|
-
return
|
50
|
-
const { css: c, ...m } =
|
51
|
-
r.push(
|
49
|
+
if (g === "compoundVariants")
|
50
|
+
return n.forEach((u) => {
|
51
|
+
const { css: c, ...m } = u, p = Object.entries(m).reduce((F, [w, k]) => `${F}.${w}-${k}`, e), x = D(c, p);
|
52
|
+
r.push(x);
|
52
53
|
}), a;
|
53
|
-
if (
|
54
|
-
const
|
55
|
-
${
|
54
|
+
if (g.startsWith("@")) {
|
55
|
+
const u = D(n, e), c = `${g} {
|
56
|
+
${u.replace(`
|
56
57
|
`, `
|
57
58
|
`)}
|
58
59
|
}`;
|
59
60
|
return r.push(c), a;
|
60
61
|
}
|
61
|
-
const
|
62
|
-
return r.push(
|
62
|
+
const y = h.includes("&") ? g.replace("&", e) : g.startsWith(":") ? `${e}${g}` : `${e} ${g}`, $ = D(n, y);
|
63
|
+
return r.push($), a;
|
63
64
|
}
|
64
|
-
const
|
65
|
-
if (typeof
|
66
|
-
if (typeof
|
67
|
-
if ("toString" in
|
65
|
+
const b = g.startsWith("-") ? g : N(g), S = (y, $ = ";") => a = `${a}${y}${$}`, C = (y) => S(`${b}:${y}`);
|
66
|
+
if (typeof n == "number") return C(n);
|
67
|
+
if (typeof n != "string")
|
68
|
+
if ("toString" in n) n = n.toString();
|
68
69
|
else return a;
|
69
|
-
const { modifiers:
|
70
|
-
yield
|
70
|
+
const { modifiers: l } = {}, P = function* () {
|
71
|
+
yield q(n), yield gt(n, l);
|
71
72
|
}();
|
72
|
-
for (const { result:
|
73
|
-
|
74
|
-
const c =
|
75
|
-
|
73
|
+
for (const { result: y, additionalCss: $ = [] } of P)
|
74
|
+
n = y, $.forEach((u) => {
|
75
|
+
const c = D(u, "");
|
76
|
+
S(c, "");
|
76
77
|
});
|
77
|
-
return
|
78
|
+
return C(n);
|
78
79
|
}, "");
|
79
|
-
if (!
|
80
|
+
if (!i) return r.join(`
|
80
81
|
`);
|
81
|
-
if (!
|
82
|
-
let
|
83
|
-
return
|
82
|
+
if (!e) return i;
|
83
|
+
let d = "";
|
84
|
+
return d = `${e} { ${i} }`, [d, ...r].join(`
|
84
85
|
`);
|
85
|
-
},
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
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 d = r.trim(), a = U(i, [...e, d]);
|
93
|
+
s.push(a);
|
92
94
|
} else
|
93
|
-
|
94
|
-
}), Object.keys(
|
95
|
-
const r =
|
96
|
-
|
95
|
+
o[r] = i;
|
96
|
+
}), Object.keys(o).length) {
|
97
|
+
const r = e.map(N).join("-"), i = D(o, `.${r}`);
|
98
|
+
s.push(i);
|
97
99
|
}
|
98
|
-
return
|
100
|
+
return s.join(`
|
99
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
|
+
}, yt = async (t) => {
|
107
|
+
const e = X(t);
|
108
|
+
return await it(e, "utf-8").then(JSON.parse).catch(() => {
|
109
|
+
});
|
110
|
+
}, dt = async (t) => {
|
111
|
+
const e = await yt(t);
|
112
|
+
if (e)
|
113
|
+
return e.type;
|
100
114
|
};
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
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 = lt({
|
121
|
+
level: "debug",
|
122
|
+
format: _.combine(_.colorize(), _.cli()),
|
123
|
+
transports: [new ft.Console({})]
|
124
|
+
}), W = {
|
125
|
+
externalModules: []
|
126
|
+
}, Q = (t) => {
|
127
|
+
if (W.externalModules.length > 0) return W.externalModules;
|
128
|
+
const e = f(t, "salty.config.ts"), o = J(e, "utf8").match(/externalModules:\s?\[(.*)\]/);
|
129
|
+
if (!o) return [];
|
130
|
+
const r = o[1].split(",").map((i) => i.replace(/['"`]/g, "").trim());
|
131
|
+
return W.externalModules = r, r;
|
132
|
+
}, A = (t) => f(t, "./saltygen"), mt = ["salty", "css", "styles", "styled"], ht = (t = []) => new RegExp(`\\.(${[...mt, ...t].join("|")})\\.`), V = (t, e = []) => ht(e).test(t), $t = async (t) => {
|
133
|
+
const e = A(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],
|
110
136
|
minify: !0,
|
111
137
|
treeShaking: !0,
|
112
138
|
bundle: !0,
|
113
|
-
outfile:
|
114
|
-
format:
|
115
|
-
external:
|
139
|
+
outfile: o,
|
140
|
+
format: r,
|
141
|
+
external: i
|
116
142
|
});
|
117
|
-
const
|
118
|
-
return
|
119
|
-
},
|
120
|
-
const
|
121
|
-
if (!
|
122
|
-
if (typeof
|
123
|
-
const
|
124
|
-
|
125
|
-
const
|
126
|
-
return `--${
|
127
|
-
}) : [], r = (
|
128
|
-
const
|
129
|
-
return c === "base" ?
|
130
|
-
}) : [],
|
131
|
-
const
|
132
|
-
return `${
|
133
|
-
})) : [],
|
134
|
-
|
135
|
-
const
|
136
|
-
|
137
|
-
const
|
138
|
-
|
139
|
-
const
|
140
|
-
|
141
|
-
},
|
142
|
-
const
|
143
|
-
await
|
144
|
-
entryPoints: [
|
143
|
+
const d = Date.now(), { config: a } = await import(`${o}?t=${d}`);
|
144
|
+
return a;
|
145
|
+
}, v = async (t) => {
|
146
|
+
const e = await $t(t), s = /* @__PURE__ */ new Set(), o = (u, c = []) => u ? Object.entries(u).flatMap(([m, p]) => {
|
147
|
+
if (!p) return;
|
148
|
+
if (typeof p == "object") return o(p, [...c, m]);
|
149
|
+
const x = [...c, m].join(".");
|
150
|
+
s.add(`"${x}"`);
|
151
|
+
const F = [...c.map(N), N(m)].join("-"), { result: w } = q(p);
|
152
|
+
return `--${F}: ${w};`;
|
153
|
+
}) : [], r = (u) => u ? Object.entries(u).flatMap(([c, m]) => {
|
154
|
+
const p = o(m);
|
155
|
+
return c === "base" ? p.join("") : `${c} { ${p.join("")} }`;
|
156
|
+
}) : [], i = (u) => u ? Object.entries(u).flatMap(([c, m]) => Object.entries(m).flatMap(([p, x]) => {
|
157
|
+
const F = o(x, [c]), w = `.${c}-${p}, [data-${c}="${p}"]`, k = F.join("");
|
158
|
+
return `${w} { ${k} }`;
|
159
|
+
})) : [], d = o(e.variables), a = r(e.responsiveVariables), h = i(e.conditionalVariables), n = A(t), g = f(n, "css/variables.css"), b = `:root { ${d.join("")} ${a.join("")} } ${h.join("")}`;
|
160
|
+
E(g, b);
|
161
|
+
const S = f(n, "types/css-tokens.d.ts"), l = `type VariableTokens = ${[...s].join("|") || '""'}; type PropertyValueToken = \`{\${VariableTokens}}\``;
|
162
|
+
E(S, l);
|
163
|
+
const j = f(n, "css/global.css"), P = D(e.global, "");
|
164
|
+
E(j, P);
|
165
|
+
const y = f(n, "css/templates.css"), $ = U(e.templates);
|
166
|
+
E(y, $);
|
167
|
+
}, I = async (t, e, s) => {
|
168
|
+
const o = B(e), r = f(s, "js", o + ".js"), i = await Y(t), d = Q(t);
|
169
|
+
await K.build({
|
170
|
+
entryPoints: [e],
|
145
171
|
minify: !0,
|
146
172
|
treeShaking: !0,
|
147
173
|
bundle: !0,
|
148
|
-
outfile:
|
149
|
-
format:
|
174
|
+
outfile: r,
|
175
|
+
format: i,
|
150
176
|
target: ["es2022"],
|
151
177
|
keepNames: !0,
|
152
|
-
external:
|
178
|
+
external: d
|
153
179
|
});
|
154
|
-
const
|
155
|
-
return await import(`${
|
156
|
-
},
|
157
|
-
const
|
158
|
-
return
|
159
|
-
},
|
180
|
+
const a = Date.now();
|
181
|
+
return await import(`${r}?t=${a}`);
|
182
|
+
}, Z = async (t) => {
|
183
|
+
const e = A(t), s = f(e, "salty.config.js"), { config: o } = await import(s);
|
184
|
+
return o;
|
185
|
+
}, tt = () => {
|
160
186
|
try {
|
161
|
-
|
187
|
+
return process.env.NODE_ENV === "production";
|
188
|
+
} catch {
|
189
|
+
return !1;
|
190
|
+
}
|
191
|
+
}, bt = async (t, e = tt()) => {
|
192
|
+
try {
|
193
|
+
e ? H.info("Generating CSS in production mode! 🔥") : H.info("Generating CSS in development mode! 🚀");
|
194
|
+
const s = [], o = [], r = A(t), i = f(r, "index.css");
|
162
195
|
(() => {
|
163
|
-
|
164
|
-
})(), await
|
165
|
-
const
|
166
|
-
async function
|
167
|
-
const
|
168
|
-
if (
|
169
|
-
const
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
196
|
+
L(r) && ot("rm -rf " + r), R(r), R(f(r, "css")), R(f(r, "types"));
|
197
|
+
})(), await v(t);
|
198
|
+
const a = await Z(t);
|
199
|
+
async function h(l, j) {
|
200
|
+
const P = ["node_modules", "saltygen"], y = rt(l);
|
201
|
+
if (y.isDirectory()) {
|
202
|
+
const $ = ct(l);
|
203
|
+
if (P.some((c) => l.includes(c))) return;
|
204
|
+
await Promise.all($.map((c) => h(f(l, c), f(j, c))));
|
205
|
+
} else if (y.isFile() && V(l)) {
|
206
|
+
const u = await I(t, l, r), c = [];
|
207
|
+
Object.entries(u).forEach(([F, w]) => {
|
208
|
+
if (w.isKeyframes && w.css) {
|
209
|
+
const z = `${w.animationName}.css`, st = `css/${z}`, nt = f(r, st);
|
210
|
+
s.push(z), E(nt, w.css);
|
177
211
|
return;
|
178
212
|
}
|
179
|
-
if (!
|
180
|
-
const
|
181
|
-
name:
|
182
|
-
config:
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
213
|
+
if (!w.generator) return;
|
214
|
+
const k = w.generator._withBuildContext({
|
215
|
+
name: F,
|
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}`, et = f(r, O);
|
221
|
+
E(et, k.css);
|
187
222
|
});
|
188
|
-
const
|
189
|
-
`),
|
190
|
-
x
|
223
|
+
const m = c.map((F) => `@import url('./${F}');`).join(`
|
224
|
+
`), p = B(l, 6), x = f(r, `css/${p}.css`);
|
225
|
+
E(x, m);
|
191
226
|
}
|
192
227
|
}
|
193
|
-
await
|
194
|
-
const
|
228
|
+
await h(t, r);
|
229
|
+
const n = s.map((l) => `@import url('./css/${l}');`).join(`
|
195
230
|
`);
|
196
|
-
let
|
231
|
+
let C = `@layer l0, l1, l2, l3, l4, l5, l6, l7, l8;
|
197
232
|
|
198
|
-
${["
|
233
|
+
${["variables.css", "global.css", "templates.css"].filter((l) => {
|
234
|
+
try {
|
235
|
+
return J(f(r, "css", l), "utf8").length > 0;
|
236
|
+
} catch {
|
237
|
+
return !1;
|
238
|
+
}
|
239
|
+
}).map((l) => `@import url('./css/${l}');`).join(`
|
199
240
|
`)}
|
200
|
-
${
|
201
|
-
if (
|
202
|
-
const
|
241
|
+
${n}`;
|
242
|
+
if (a.importStrategy !== "component") {
|
243
|
+
const l = o.flat().map((j) => `@import url('./css/${j}');`).join(`
|
203
244
|
`);
|
204
|
-
|
245
|
+
C += l;
|
205
246
|
}
|
206
|
-
|
247
|
+
E(i, C);
|
207
248
|
} catch (s) {
|
208
249
|
console.error(s);
|
209
250
|
}
|
210
|
-
},
|
251
|
+
}, wt = async (t, e) => {
|
211
252
|
try {
|
212
|
-
const
|
213
|
-
if (
|
214
|
-
const
|
215
|
-
Object.entries(a).forEach(([
|
216
|
-
if (!
|
217
|
-
const
|
218
|
-
name:
|
219
|
-
config:
|
220
|
-
}),
|
221
|
-
|
253
|
+
const s = [], o = f(t, "./saltygen"), r = f(o, "index.css");
|
254
|
+
if (V(e)) {
|
255
|
+
const d = await Z(t), a = await I(t, e, o);
|
256
|
+
Object.entries(a).forEach(([S, C]) => {
|
257
|
+
if (!C.generator) return;
|
258
|
+
const l = C.generator._withBuildContext({
|
259
|
+
name: S,
|
260
|
+
config: d
|
261
|
+
}), j = `${l.hash}-${l.priority}.css`, P = `css/${j}`, y = f(o, P);
|
262
|
+
s.push(j), E(y, l.css);
|
222
263
|
});
|
223
|
-
const
|
224
|
-
`),
|
264
|
+
const h = J(r, "utf8").split(`
|
265
|
+
`), n = s.map((S) => `@import url('../saltygen/css/${S}');`), b = [.../* @__PURE__ */ new Set([...h, ...n])].join(`
|
225
266
|
`);
|
226
|
-
|
267
|
+
E(r, b);
|
227
268
|
}
|
228
|
-
} catch (
|
229
|
-
console.error(
|
269
|
+
} catch (s) {
|
270
|
+
console.error(s);
|
230
271
|
}
|
231
|
-
},
|
272
|
+
}, St = async (t, e, s = tt()) => {
|
232
273
|
try {
|
233
|
-
const
|
234
|
-
if (
|
235
|
-
|
236
|
-
|
237
|
-
const
|
238
|
-
let
|
239
|
-
Object.entries(
|
240
|
-
var
|
241
|
-
if (
|
242
|
-
|
243
|
-
|
274
|
+
const o = f(t, "./saltygen");
|
275
|
+
if (V(e)) {
|
276
|
+
const i = J(e, "utf8");
|
277
|
+
i.replace(/^(?!export\s)const\s.*/gm, (b) => `export ${b}`) !== i && await at(e, i);
|
278
|
+
const a = await Z(t), h = await I(t, e, o);
|
279
|
+
let n = i;
|
280
|
+
Object.entries(h).forEach(([b, S]) => {
|
281
|
+
var M;
|
282
|
+
if (S.isKeyframes || !S.generator) return;
|
283
|
+
const C = S.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 j = (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: y } = P;
|
292
|
+
let $ = !1;
|
293
|
+
const u = setTimeout(() => $ = !0, 5e3);
|
294
|
+
let c = 0, m = !1, p = 0;
|
295
|
+
for (; !m && !$; ) {
|
296
|
+
const O = n[y + c];
|
297
|
+
O === "(" && p++, O === ")" && p--, p === 0 && O === ")" && (m = !0), c > n.length && ($ = !0), c++;
|
244
298
|
}
|
245
|
-
if (
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
}), b = new RegExp(`${i}[=\\s]+[^()]+styled\\(([^,]+),`, "g").exec(r);
|
250
|
-
if (!b)
|
251
|
-
return console.error("Could not find the original declaration");
|
252
|
-
const j = (y = b.at(1)) == null ? void 0 : y.trim(), { element: w, variantKeys: C } = h.props, d = `${i} = styled(${j}, "${h.classNames}", "${h._callerName}", ${JSON.stringify(w)}, ${JSON.stringify(
|
253
|
-
C
|
254
|
-
)});`, S = new RegExp(`${i}[=\\s]+[^()]+styled\\(([^,]+),[^;]+;`, "g");
|
255
|
-
f = f.replace(S, d);
|
299
|
+
if (!$) clearTimeout(u);
|
300
|
+
else throw new Error("Failed to find the end of the styled call and timed out");
|
301
|
+
const x = y + c, F = n.slice(y, x), w = n, k = ` ${b} = styled(${j}, "${C.classNames}", ${JSON.stringify(C.props)});`;
|
302
|
+
n = n.replace(F, k), w === n && console.error("Minimize file failed to change content", { name: b, tagName: j });
|
256
303
|
});
|
257
|
-
const
|
258
|
-
return
|
259
|
-
${
|
304
|
+
const g = B(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;
|
260
307
|
}
|
261
|
-
} catch (
|
262
|
-
console.error(
|
308
|
+
} catch (o) {
|
309
|
+
console.error("Error in minimizeFile:", o);
|
263
310
|
}
|
264
|
-
},
|
311
|
+
}, Pt = (t) => ({
|
265
312
|
name: "stylegen",
|
266
|
-
buildStart: () =>
|
267
|
-
load: async (
|
268
|
-
if (
|
269
|
-
return await
|
313
|
+
buildStart: () => bt(t),
|
314
|
+
load: async (e) => {
|
315
|
+
if (V(e))
|
316
|
+
return await St(t, e);
|
270
317
|
},
|
271
318
|
watchChange: {
|
272
|
-
handler: async (
|
273
|
-
|
319
|
+
handler: async (e) => {
|
320
|
+
V(e) && await wt(t, e), e.includes("salty.config") && await v(t);
|
274
321
|
}
|
275
322
|
}
|
276
323
|
});
|
277
324
|
export {
|
278
|
-
|
325
|
+
Pt as default,
|
326
|
+
Pt as saltyPlugin
|
279
327
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salty-css/vite",
|
3
|
-
"version": "0.0.1-alpha.
|
3
|
+
"version": "0.0.1-alpha.100",
|
4
4
|
"main": "./dist/index.js",
|
5
5
|
"module": "./dist/index.mjs",
|
6
6
|
"typings": "./dist/index.d.ts",
|
@@ -10,7 +10,12 @@
|
|
10
10
|
"publishConfig": {
|
11
11
|
"access": "public"
|
12
12
|
},
|
13
|
-
"
|
13
|
+
"description": "Vite plugin for Salty CSS",
|
14
|
+
"homepage": "https://salty-css.dev/",
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "git+https://github.com/margarita-form/salty-css.git"
|
18
|
+
},
|
14
19
|
"bugs": {
|
15
20
|
"url": "https://github.com/margarita-form/salty-css/issues"
|
16
21
|
},
|
@@ -19,6 +24,7 @@
|
|
19
24
|
"!**/*.tsbuildinfo"
|
20
25
|
],
|
21
26
|
"nx": {
|
27
|
+
"sourceRoot": "libs/vite/src",
|
22
28
|
"name": "vite"
|
23
29
|
},
|
24
30
|
"exports": {
|
@@ -26,5 +32,8 @@
|
|
26
32
|
"import": "./index.js",
|
27
33
|
"require": "./index.cjs"
|
28
34
|
}
|
35
|
+
},
|
36
|
+
"dependencies": {
|
37
|
+
"@salty-css/core": "^0.0.1-alpha.100"
|
29
38
|
}
|
30
39
|
}
|