@knowsuchagency/fulcrum 1.2.1 → 1.2.3
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/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/png" href="/logo.png" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Project Fulcrum</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DqfGCS1i.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-jG3dZvoE.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -5604,6 +5604,9 @@ function migrateRepositoriesToProjects(sqlite) {
|
|
|
5604
5604
|
WHERE NOT EXISTS (
|
|
5605
5605
|
SELECT 1 FROM projects p WHERE p.repository_id = r.id
|
|
5606
5606
|
)
|
|
5607
|
+
AND NOT EXISTS (
|
|
5608
|
+
SELECT 1 FROM project_repositories pr WHERE pr.repository_id = r.id
|
|
5609
|
+
)
|
|
5607
5610
|
`).all();
|
|
5608
5611
|
if (orphanedRepos.length === 0)
|
|
5609
5612
|
return;
|