notherbase-fs 1.1.31 → 1.1.32

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.
@@ -100,6 +100,10 @@ let complete = function complete(explorerBuild) {
100
100
  }
101
101
  }
102
102
 
103
+ // start location
104
+ router.get("/", function(req, res) {
105
+ res.redirect("/the-front");
106
+ });
103
107
 
104
108
  //the void
105
109
  router.use(function(req, res, next){
@@ -114,11 +118,6 @@ let complete = function complete(explorerBuild) {
114
118
  main: `${dir}/${explorerBuild.void}/index`
115
119
  });
116
120
  });
117
-
118
- // start location
119
- router.get("/", function(req, res) {
120
- res.redirect("/the-front");
121
- });
122
121
  }
123
122
 
124
123
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "main": "index.js",
6
6
  "scripts": {