@devup-ui/vite-plugin 0.1.58 → 0.1.60
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 +47 -34
- package/package.json +1 -1
package/dist/plugin.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("node:fs"),D=require("node:fs/promises"),a=require("node:path"),u=require("@devup-ui/wasm"),g=require("vite");function m(e){var t;if(n.existsSync(e.interfacePath)||n.mkdirSync(e.interfacePath),n.existsSync(e.devupPath)){u.registerTheme((t=JSON.parse(n.readFileSync(e.devupPath,"utf-8")))==null?void 0:t.theme);const i=u.getThemeInterface(e.package,"DevupThemeColors","DevupThemeTypography","DevupTheme");i&&n.writeFileSync(a.join(e.interfacePath,"theme.d.ts"),i,{encoding:"utf-8"})}n.existsSync(e.cssFile)||n.writeFileSync(e.cssFile,"",{encoding:"utf-8"})}let o="";function S({package:e="@devup-ui/react",devupPath:t="devup.json",interfacePath:i=".df",cssFile:c=a.resolve(i,"devup-ui.css"),extractCss:p=!0,debug:h=!1,include:l=[]}={}){u.setDebug(h);try{m({package:e,cssFile:c,devupPath:t,interfacePath:i})}catch(r){console.error(r)}return{name:"devup-ui",config(){const r={server:{watch:{ignored:[`!${t}`]}},define:{"process.env.DEVUP_UI_DEFAULT_THEME":JSON.stringify(u.getDefaultTheme())},optimizeDeps:{exclude:l}};return p&&(r.build={rollupOptions:{output:{manualChunks(s){if(s.startsWith("devup-ui.css"))return"devup-ui.css"}}}}),r},apply(){return!0},watchChange(r){if(a.resolve(r)===a.resolve(t)&&n.existsSync(t))try{m({package:e,cssFile:c,devupPath:t,interfacePath:i})}catch(s){console.error(s)}},resolveId(r){if(g.normalizePath(r)===g.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,s){if(!p)return;const f=s.split("?")[0];if((l.length?new RegExp(`node_modules(?!(${l.map(y=>`.*${y}`).join("|").replaceAll("/","[\\/\\\\_]")})([\\/\\\\.]|$))`).test(f):s.includes("node_modules"))||!/\.(tsx|ts|js|mjs|jsx)$/i.test(f))return;const{code:v,css:d}=u.codeExtract(f,r,e,c);return d&&o.length<d.length&&(o=d,await D.writeFile(c,`/* ${s} ${Date.now()} */`,{encoding:"utf-8"})),{code:v}}}}exports.DevupUI=S;
|
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":"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;
|
|
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,CA6GnD"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { existsSync as s, mkdirSync as
|
|
2
|
-
import { writeFile as
|
|
3
|
-
import { resolve as
|
|
4
|
-
import { setDebug as
|
|
5
|
-
import { normalizePath as
|
|
6
|
-
function
|
|
1
|
+
import { existsSync as s, mkdirSync as y, readFileSync as w, writeFileSync as m } from "node:fs";
|
|
2
|
+
import { writeFile as T } from "node:fs/promises";
|
|
3
|
+
import { resolve as p, join as $ } from "node:path";
|
|
4
|
+
import { setDebug as S, codeExtract as j, getCss as x, getDefaultTheme as C, registerTheme as E, getThemeInterface as _ } from "@devup-ui/wasm";
|
|
5
|
+
import { normalizePath as d } from "vite";
|
|
6
|
+
function g(e) {
|
|
7
7
|
var t;
|
|
8
|
-
if (s(e.interfacePath) ||
|
|
9
|
-
|
|
10
|
-
(t = JSON.parse(
|
|
8
|
+
if (s(e.interfacePath) || y(e.interfacePath), s(e.devupPath)) {
|
|
9
|
+
E(
|
|
10
|
+
(t = JSON.parse(w(e.devupPath, "utf-8"))) == null ? void 0 : t.theme
|
|
11
11
|
);
|
|
12
|
-
const
|
|
12
|
+
const i = _(
|
|
13
13
|
e.package,
|
|
14
14
|
"DevupThemeColors",
|
|
15
15
|
"DevupThemeTypography",
|
|
16
16
|
"DevupTheme"
|
|
17
17
|
);
|
|
18
|
-
|
|
18
|
+
i && m($(e.interfacePath, "theme.d.ts"), i, {
|
|
19
19
|
encoding: "utf-8"
|
|
20
20
|
});
|
|
21
21
|
}
|
|
@@ -23,22 +23,23 @@ function d(e) {
|
|
|
23
23
|
encoding: "utf-8"
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
|
-
let
|
|
27
|
-
function
|
|
26
|
+
let u = "";
|
|
27
|
+
function O({
|
|
28
28
|
package: e = "@devup-ui/react",
|
|
29
29
|
devupPath: t = "devup.json",
|
|
30
|
-
interfacePath:
|
|
31
|
-
cssFile:
|
|
32
|
-
extractCss:
|
|
33
|
-
debug:
|
|
30
|
+
interfacePath: i = ".df",
|
|
31
|
+
cssFile: o = p(i, "devup-ui.css"),
|
|
32
|
+
extractCss: l = !0,
|
|
33
|
+
debug: h = !1,
|
|
34
|
+
include: c = []
|
|
34
35
|
} = {}) {
|
|
35
|
-
|
|
36
|
+
S(h);
|
|
36
37
|
try {
|
|
37
|
-
|
|
38
|
+
g({
|
|
38
39
|
package: e,
|
|
39
|
-
cssFile:
|
|
40
|
+
cssFile: o,
|
|
40
41
|
devupPath: t,
|
|
41
|
-
interfacePath:
|
|
42
|
+
interfacePath: i
|
|
42
43
|
});
|
|
43
44
|
} catch (r) {
|
|
44
45
|
console.error(r);
|
|
@@ -54,9 +55,12 @@ function _({
|
|
|
54
55
|
},
|
|
55
56
|
define: {
|
|
56
57
|
"process.env.DEVUP_UI_DEFAULT_THEME": JSON.stringify(C())
|
|
58
|
+
},
|
|
59
|
+
optimizeDeps: {
|
|
60
|
+
exclude: c
|
|
57
61
|
}
|
|
58
62
|
};
|
|
59
|
-
return
|
|
63
|
+
return l && (r.build = {
|
|
60
64
|
rollupOptions: {
|
|
61
65
|
output: {
|
|
62
66
|
manualChunks(n) {
|
|
@@ -71,38 +75,47 @@ function _({
|
|
|
71
75
|
return !0;
|
|
72
76
|
},
|
|
73
77
|
watchChange(r) {
|
|
74
|
-
if (
|
|
78
|
+
if (p(r) === p(t) && s(t))
|
|
75
79
|
try {
|
|
76
|
-
|
|
80
|
+
g({
|
|
77
81
|
package: e,
|
|
78
|
-
cssFile:
|
|
82
|
+
cssFile: o,
|
|
79
83
|
devupPath: t,
|
|
80
|
-
interfacePath:
|
|
84
|
+
interfacePath: i
|
|
81
85
|
});
|
|
82
86
|
} catch (n) {
|
|
83
87
|
console.error(n);
|
|
84
88
|
}
|
|
85
89
|
},
|
|
86
90
|
resolveId(r) {
|
|
87
|
-
if (
|
|
88
|
-
return `devup-ui.css?t=${Date.now().toString() +
|
|
91
|
+
if (d(r) === d(o))
|
|
92
|
+
return `devup-ui.css?t=${Date.now().toString() + u.length}`;
|
|
89
93
|
},
|
|
90
94
|
load(r) {
|
|
91
95
|
if (r.split("?")[0] === "devup-ui.css")
|
|
92
|
-
return
|
|
96
|
+
return u = x();
|
|
93
97
|
},
|
|
94
98
|
enforce: "pre",
|
|
95
99
|
async transform(r, n) {
|
|
96
|
-
if (!
|
|
97
|
-
const
|
|
98
|
-
|
|
100
|
+
if (!l) return;
|
|
101
|
+
const a = n.split("?")[0];
|
|
102
|
+
if ((c.length ? new RegExp(
|
|
103
|
+
`node_modules(?!(${c.map((D) => `.*${D}`).join("|").replaceAll("/", "[\\/\\\\_]")})([\\/\\\\.]|$))`
|
|
104
|
+
).test(a) : n.includes("node_modules")) || !/\.(tsx|ts|js|mjs|jsx)$/i.test(a)) return;
|
|
105
|
+
const { code: v, css: f } = j(
|
|
106
|
+
a,
|
|
107
|
+
r,
|
|
108
|
+
e,
|
|
109
|
+
o
|
|
110
|
+
);
|
|
111
|
+
return f && u.length < f.length && (u = f, await T(o, `/* ${n} ${Date.now()} */`, {
|
|
99
112
|
encoding: "utf-8"
|
|
100
113
|
})), {
|
|
101
|
-
code:
|
|
114
|
+
code: v
|
|
102
115
|
};
|
|
103
116
|
}
|
|
104
117
|
};
|
|
105
118
|
}
|
|
106
119
|
export {
|
|
107
|
-
|
|
120
|
+
O as DevupUI
|
|
108
121
|
};
|