ms-vite-plugin 0.3.1 → 0.3.2
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/build.js +2 -1
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -115,8 +115,9 @@ function prodReturnMain() {
|
|
|
115
115
|
*/
|
|
116
116
|
function detectPython314() {
|
|
117
117
|
const candidates = [
|
|
118
|
-
{ cmd: "
|
|
118
|
+
{ cmd: "python", args: ["--version"] },
|
|
119
119
|
{ cmd: "python3", args: ["--version"] },
|
|
120
|
+
{ cmd: "python3.14", args: ["--version"] },
|
|
120
121
|
];
|
|
121
122
|
for (const c of candidates) {
|
|
122
123
|
try {
|