@xpufx/paseo-plugin-updates 0.1.1 → 0.1.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/client/updates.tsx +1 -1
- package/index.client.tsx +1 -1
- package/package.json +1 -1
- package/server/updates.ts +1 -1
- package/shared/updates.ts +1 -1
package/client/updates.tsx
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
SectionHeader,
|
|
18
18
|
StatusDot,
|
|
19
19
|
usePluginTheme,
|
|
20
|
-
} from "paseo-plugin-helper/
|
|
20
|
+
} from "./vendor/paseo-plugin-helper/index";
|
|
21
21
|
import { useQuery } from "@tanstack/react-query";
|
|
22
22
|
import { useEffect } from "react";
|
|
23
23
|
import { ActivityIndicator, Linking, Text, View } from "react-native";
|
package/index.client.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PluginClientContext } from "@getpaseo/plugin/client";
|
|
2
2
|
import { useRpc } from "@getpaseo/plugin/client";
|
|
3
3
|
import { Icon, Modal, ScrollView, useToast } from "@getpaseo/plugin/client/react-native";
|
|
4
|
-
import { initClientHelpers } from "paseo-plugin-helper/
|
|
4
|
+
import { initClientHelpers } from "./client/vendor/paseo-plugin-helper/index";
|
|
5
5
|
import { registerPluginUpdateHeaders } from "./client/updates";
|
|
6
6
|
|
|
7
7
|
export default function contribute(client: PluginClientContext) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@xpufx/paseo-plugin-updates",
|
|
3
3
|
"private": false,
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.2",
|
|
6
6
|
"description": "Read-only monitor for installed Paseo plugin source status, links, and per-subdirectory Git diagnostics.",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"typecheck": "tsc --noEmit",
|
package/server/updates.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { createHash } from "node:crypto";
|
|
|
2
2
|
import fs from "node:fs";
|
|
3
3
|
import { homedir } from "node:os";
|
|
4
4
|
import path from "node:path";
|
|
5
|
-
import { listPlugins, safeSpawn, type PaseoPluginInfo, type SafeSpawnResult } from "paseo-plugin-helper/
|
|
5
|
+
import { listPlugins, safeSpawn, type PaseoPluginInfo, type SafeSpawnResult } from "./vendor/paseo-plugin-helper/index";
|
|
6
6
|
import { deriveSourceUrl, shortHash } from "../shared/updates";
|
|
7
7
|
import type {
|
|
8
8
|
PluginUpdate,
|
package/shared/updates.ts
CHANGED