@devup-ui/vite-plugin 0.1.57 → 0.1.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin.cjs +1 -1
- package/dist/plugin.d.ts +2 -1
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +41 -35
- package/package.json +4 -4
package/dist/plugin.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("node:fs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("node:fs"),v=require("node:fs/promises"),a=require("node:path"),u=require("@devup-ui/wasm"),p=require("vite");function g(e){var n;if(s.existsSync(e.interfacePath)||s.mkdirSync(e.interfacePath),s.existsSync(e.devupPath)){u.registerTheme((n=JSON.parse(s.readFileSync(e.devupPath,"utf-8")))==null?void 0:n.theme);const i=u.getThemeInterface(e.package,"DevupThemeColors","DevupThemeTypography","DevupTheme");i&&s.writeFileSync(a.join(e.interfacePath,"theme.d.ts"),i,{encoding:"utf-8"})}s.existsSync(e.cssFile)||s.writeFileSync(e.cssFile,"",{encoding:"utf-8"})}let o="";function y({package:e="@devup-ui/react",devupPath:n="devup.json",interfacePath:i=".df",cssFile:c=a.resolve(i,"devup-ui.css"),extractCss:f=!0,debug:h=!1,include:d=[]}={}){u.setDebug(h);try{g({package:e,cssFile:c,devupPath:n,interfacePath:i})}catch(r){console.error(r)}return{name:"devup-ui",config(){const r={server:{watch:{ignored:[`!${n}`]}},define:{"process.env.DEVUP_UI_DEFAULT_THEME":JSON.stringify(u.getDefaultTheme())}};return f&&(r.build={rollupOptions:{output:{manualChunks(t){if(t.startsWith("devup-ui.css"))return"devup-ui.css"}}}}),r},apply(){return!0},watchChange(r){if(a.resolve(r)===a.resolve(n)&&s.existsSync(n))try{g({package:e,cssFile:c,devupPath:n,interfacePath:i})}catch(t){console.error(t)}},resolveId(r){if(p.normalizePath(r)===p.normalizePath(c))return`devup-ui.css?t=${Date.now().toString()+o.length}`},load(r){if(r.split("?")[0]==="devup-ui.css")return o=u.getCss()},enforce:"pre",async transform(r,t){if(!f||(d.length?new RegExp(`node_modules(?!(.*${d.join("|").replaceAll("/","[\\/\\\\_]")})([\\/\\\\.]|$))`).test(t):t.includes("node_modules"))||!/\.(tsx|ts|js|mjs|jsx)$/i.test(t.split("?")[0]))return;const{code:m,css:l}=u.codeExtract(t,r,e,c);return l&&o.length<l.length&&(o=l,await v.writeFile(c,`/* ${t} ${Date.now()} */`,{encoding:"utf-8"})),{code:m}}}}exports.DevupUI=y;
|
package/dist/plugin.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface DevupUIPluginOptions {
|
|
|
6
6
|
interfacePath: string;
|
|
7
7
|
extractCss: boolean;
|
|
8
8
|
debug: boolean;
|
|
9
|
+
include: string[];
|
|
9
10
|
}
|
|
10
|
-
export declare function DevupUI({ package: libPackage, devupPath, interfacePath, cssFile, extractCss, debug, }?: Partial<DevupUIPluginOptions>): PluginOption;
|
|
11
|
+
export declare function DevupUI({ package: libPackage, devupPath, interfacePath, cssFile, extractCss, debug, include, }?: Partial<DevupUIPluginOptions>): PluginOption;
|
|
11
12
|
//# sourceMappingURL=plugin.d.ts.map
|
package/dist/plugin.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAYA,OAAO,EAAiB,KAAK,YAAY,EAAmB,MAAM,MAAM,CAAA;AAExE,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,aAAa,EAAE,MAAM,CAAA;IACrB,UAAU,EAAE,OAAO,CAAA;IACnB,KAAK,EAAE,OAAO,CAAA;IACd,OAAO,EAAE,MAAM,EAAE,CAAA;CAClB;AA8BD,wBAAgB,OAAO,CAAC,EACtB,OAAO,EAAE,UAA8B,EACvC,SAAwB,EACxB,aAAqB,EACrB,OAAgD,EAChD,UAAiB,EACjB,KAAa,EACb,OAAY,GACb,GAAE,OAAO,CAAC,oBAAoB,CAAM,GAAG,YAAY,CAiGnD"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,43 +1,44 @@
|
|
|
1
|
-
import { existsSync as
|
|
2
|
-
import { writeFile as
|
|
3
|
-
import { resolve as
|
|
4
|
-
import { setDebug as
|
|
5
|
-
import { normalizePath as
|
|
1
|
+
import { existsSync as s, mkdirSync as v, readFileSync as y, writeFileSync as p } from "node:fs";
|
|
2
|
+
import { writeFile as D } from "node:fs/promises";
|
|
3
|
+
import { resolve as f, join as w } from "node:path";
|
|
4
|
+
import { setDebug as T, codeExtract as S, getCss as $, getDefaultTheme as j, registerTheme as C, getThemeInterface as E } from "@devup-ui/wasm";
|
|
5
|
+
import { normalizePath as m } from "vite";
|
|
6
6
|
function d(e) {
|
|
7
|
-
var
|
|
8
|
-
if (
|
|
9
|
-
|
|
10
|
-
(
|
|
7
|
+
var n;
|
|
8
|
+
if (s(e.interfacePath) || v(e.interfacePath), s(e.devupPath)) {
|
|
9
|
+
C(
|
|
10
|
+
(n = JSON.parse(y(e.devupPath, "utf-8"))) == null ? void 0 : n.theme
|
|
11
11
|
);
|
|
12
|
-
const u =
|
|
12
|
+
const u = E(
|
|
13
13
|
e.package,
|
|
14
14
|
"DevupThemeColors",
|
|
15
15
|
"DevupThemeTypography",
|
|
16
16
|
"DevupTheme"
|
|
17
17
|
);
|
|
18
|
-
u &&
|
|
18
|
+
u && p(w(e.interfacePath, "theme.d.ts"), u, {
|
|
19
19
|
encoding: "utf-8"
|
|
20
20
|
});
|
|
21
21
|
}
|
|
22
|
-
|
|
22
|
+
s(e.cssFile) || p(e.cssFile, "", {
|
|
23
23
|
encoding: "utf-8"
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
26
|
let o = "";
|
|
27
|
-
function
|
|
27
|
+
function F({
|
|
28
28
|
package: e = "@devup-ui/react",
|
|
29
|
-
devupPath:
|
|
29
|
+
devupPath: n = "devup.json",
|
|
30
30
|
interfacePath: u = ".df",
|
|
31
|
-
cssFile: i =
|
|
32
|
-
extractCss:
|
|
33
|
-
debug:
|
|
31
|
+
cssFile: i = f(u, "devup-ui.css"),
|
|
32
|
+
extractCss: a = !0,
|
|
33
|
+
debug: g = !1,
|
|
34
|
+
include: l = []
|
|
34
35
|
} = {}) {
|
|
35
|
-
|
|
36
|
+
T(g);
|
|
36
37
|
try {
|
|
37
38
|
d({
|
|
38
39
|
package: e,
|
|
39
40
|
cssFile: i,
|
|
40
|
-
devupPath:
|
|
41
|
+
devupPath: n,
|
|
41
42
|
interfacePath: u
|
|
42
43
|
});
|
|
43
44
|
} catch (r) {
|
|
@@ -49,15 +50,18 @@ function O({
|
|
|
49
50
|
const r = {
|
|
50
51
|
server: {
|
|
51
52
|
watch: {
|
|
52
|
-
ignored: [`!${
|
|
53
|
+
ignored: [`!${n}`]
|
|
53
54
|
}
|
|
55
|
+
},
|
|
56
|
+
define: {
|
|
57
|
+
"process.env.DEVUP_UI_DEFAULT_THEME": JSON.stringify(j())
|
|
54
58
|
}
|
|
55
59
|
};
|
|
56
|
-
return
|
|
60
|
+
return a && (r.build = {
|
|
57
61
|
rollupOptions: {
|
|
58
62
|
output: {
|
|
59
|
-
manualChunks(
|
|
60
|
-
if (
|
|
63
|
+
manualChunks(t) {
|
|
64
|
+
if (t.startsWith("devup-ui.css"))
|
|
61
65
|
return "devup-ui.css";
|
|
62
66
|
}
|
|
63
67
|
}
|
|
@@ -68,38 +72,40 @@ function O({
|
|
|
68
72
|
return !0;
|
|
69
73
|
},
|
|
70
74
|
watchChange(r) {
|
|
71
|
-
if (
|
|
75
|
+
if (f(r) === f(n) && s(n))
|
|
72
76
|
try {
|
|
73
77
|
d({
|
|
74
78
|
package: e,
|
|
75
79
|
cssFile: i,
|
|
76
|
-
devupPath:
|
|
80
|
+
devupPath: n,
|
|
77
81
|
interfacePath: u
|
|
78
82
|
});
|
|
79
|
-
} catch (
|
|
80
|
-
console.error(
|
|
83
|
+
} catch (t) {
|
|
84
|
+
console.error(t);
|
|
81
85
|
}
|
|
82
86
|
},
|
|
83
87
|
resolveId(r) {
|
|
84
|
-
if (
|
|
88
|
+
if (m(r) === m(i))
|
|
85
89
|
return `devup-ui.css?t=${Date.now().toString() + o.length}`;
|
|
86
90
|
},
|
|
87
91
|
load(r) {
|
|
88
92
|
if (r.split("?")[0] === "devup-ui.css")
|
|
89
|
-
return o =
|
|
93
|
+
return o = $();
|
|
90
94
|
},
|
|
91
95
|
enforce: "pre",
|
|
92
|
-
async transform(r,
|
|
93
|
-
if (!
|
|
94
|
-
|
|
95
|
-
|
|
96
|
+
async transform(r, t) {
|
|
97
|
+
if (!a || (l.length ? new RegExp(
|
|
98
|
+
`node_modules(?!(.*${l.join("|").replaceAll("/", "[\\/\\\\_]")})([\\/\\\\.]|$))`
|
|
99
|
+
).test(t) : t.includes("node_modules")) || !/\.(tsx|ts|js|mjs|jsx)$/i.test(t.split("?")[0])) return;
|
|
100
|
+
const { code: h, css: c } = S(t, r, e, i);
|
|
101
|
+
return c && o.length < c.length && (o = c, await D(i, `/* ${t} ${Date.now()} */`, {
|
|
96
102
|
encoding: "utf-8"
|
|
97
103
|
})), {
|
|
98
|
-
code:
|
|
104
|
+
code: h
|
|
99
105
|
};
|
|
100
106
|
}
|
|
101
107
|
};
|
|
102
108
|
}
|
|
103
109
|
export {
|
|
104
|
-
|
|
110
|
+
F as DevupUI
|
|
105
111
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devup-ui/vite-plugin",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.59",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@devup-ui/wasm": "0.1.
|
|
22
|
+
"@devup-ui/wasm": "0.1.54"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"vite-plugin-dts": "^4.5.
|
|
26
|
-
"typescript": "^5.
|
|
25
|
+
"vite-plugin-dts": "^4.5.3",
|
|
26
|
+
"typescript": "^5.8.2"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"vite": "*",
|