@beastmode-develeap/beastmode 0.1.320 → 0.1.321
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.js +12 -6
- package/dist/index.js.map +1 -1
- package/dist/web/board.html +6 -1
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260530-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260530-114005-9a212ee";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -8928,6 +8928,11 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
8928
8928
|
};
|
|
8929
8929
|
|
|
8930
8930
|
const removeProject = async (name) => {
|
|
8931
|
+
if (!window.confirm('Remove project "' + name + '"?\n\n' +
|
|
8932
|
+
'This removes it from the factory. The project files are archived ' +
|
|
8933
|
+
'(your actual repo is not touched).')) {
|
|
8934
|
+
return;
|
|
8935
|
+
}
|
|
8931
8936
|
try {
|
|
8932
8937
|
setError(null);
|
|
8933
8938
|
await api('DELETE', '/api/projects/' + name);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
9a212ee4b6aab7dd41dfb29c1206e5db4ad16bdd
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260530-
|
|
1
|
+
20260530-114005-9a212ee
|