dbnexus 0.1.0 → 0.1.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/README.md +1 -1
- package/dist/api.js +4 -0
- package/dist/index.js +1 -1
- package/dist/web/assets/index-DAEjPp4I.js +379 -0
- package/dist/web/index.html +1 -1
- package/package.json +2 -2
- package/dist/web/assets/index-2M0S9O7L.js +0 -379
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# DB Nexus
|
|
2
2
|
|
|
3
|
-
> Database management tool with web UI
|
|
3
|
+
> Database management tool with web UI
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/dbnexus)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
package/dist/api.js
CHANGED
|
@@ -85677,6 +85677,10 @@ async function bootstrap() {
|
|
|
85677
85677
|
app.setGlobalPrefix("api");
|
|
85678
85678
|
if (!isDev) {
|
|
85679
85679
|
const possiblePaths = [
|
|
85680
|
+
path2.join(__dirname2, "web"),
|
|
85681
|
+
// When installed globally (api.js and web/ are siblings)
|
|
85682
|
+
path2.join(__dirname2, "..", "web"),
|
|
85683
|
+
// Alternative: one level up
|
|
85680
85684
|
path2.join(__dirname2, "..", "..", "web", "dist"),
|
|
85681
85685
|
// When running from built CLI
|
|
85682
85686
|
path2.join(__dirname2, "..", "..", "..", "web", "dist"),
|