notherbase-fs 4.0.12 → 4.0.13

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.
@@ -3,9 +3,6 @@ import { stripHtml } from "string-strip-html";
3
3
  import { success, fail } from "./util.js";
4
4
  import User from "./user.js";
5
5
  import fs from 'fs';
6
- import session from 'express-session';
7
- import MongoStore from 'connect-mongo';
8
- import subdomain from 'express-subdomain';
9
6
 
10
7
  /**
11
8
  * The spirit world is the API of a base.
@@ -22,7 +19,6 @@ export default class SpiritWorld {
22
19
 
23
20
  this.user = new User();
24
21
  this.router = express.Router();
25
-
26
22
  this.router.post("/loadAll", this.loadAll);
27
23
  this.router.post("/load", this.load);
28
24
  this.router.post("/serve", this.serve);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "4.0.12",
3
+ "version": "4.0.13",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "exports": "./notherbase-fs.js",
6
6
  "scripts": {