From 16de8cb91b909936d0cbc26b4048f85b45e67288 Mon Sep 17 00:00:00 2001
From: James Long <longster@gmail.com>
Date: Thu, 28 Apr 2022 22:29:45 -0400
Subject: [PATCH] Remove source-map-support

---
 README.md    | 4 ++--
 app.js       | 1 -
 package.json | 1 -
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 34359d5..97d531f 100644
--- a/README.md
+++ b/README.md
@@ -22,9 +22,9 @@ You should deploy your server so it's always running. We recommend [fly.io](http
 
 Next, [install the `flyctl`](https://fly.io/docs/flyctl/installing/) utility. Run `flyctl auth login` to sign into your account.
 
-Now, run `flyctl deploy` from `actual-server`. You should have a running app now!
+Now, run `flyctl launch` from `actual-server`. You should have a running app now!
 
-Whenever you want to update Actual, update the versions of `@actual-app/api` and `@actual-app/web` in `package.json` and deploy again.
+Whenever you want to update Actual, update the versions of `@actual-app/api` and `@actual-app/web` in `package.json` and run `flyctl  deploy`.
 
 **Note:** if you don't want to use fly, we still provide a `Dockerfile` to build the app so it should work anywhere that can compile a docker image.
 
diff --git a/app.js b/app.js
index 31e4f31..ceb39af 100644
--- a/app.js
+++ b/app.js
@@ -1,4 +1,3 @@
-require('source-map-support').install();
 const express = require('express');
 const bodyParser = require('body-parser');
 const cors = require('cors');
diff --git a/package.json b/package.json
index 7ef04e9..917653a 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,6 @@
     "express": "^4.16.3",
     "express-response-size": "^0.0.3",
     "node-fetch": "^2.2.0",
-    "source-map-support": "^0.5.21",
     "uuid": "^3.3.2"
   },
   "eslintConfig": {
-- 
GitLab