Skip to content

Commit

Permalink
Merge branch 'canary' into fix/filetree-callback-hell
Browse files Browse the repository at this point in the history
  • Loading branch information
markhughes committed Feb 21, 2025
2 parents fba2d3d + fc0420f commit 41919fa
Show file tree
Hide file tree
Showing 3 changed files with 933 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"@babel/core": "^7",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"babel-jest": "^29.7.0",
Expand Down
4 changes: 3 additions & 1 deletion packages/cli/lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import { server, paths, resources, log, cfg, db } from "@droppyjs/server";

import minimist from "minimist";

import daemonize from 'daemonize-process';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

Expand Down Expand Up @@ -58,7 +60,7 @@ if (argv.v || argv.V || argv.version) {
}

if (argv.daemon || argv.d) {
require("daemonize-process")();
daemonize();
}

if (argv.configdir || argv.filesdir || argv.c || argv.f) {
Expand Down
Loading

0 comments on commit 41919fa

Please sign in to comment.