nails-boilerplate 0.14.0 → 0.14.2
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/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Initializes application before server starts
|
|
2
2
|
// Each of these is REQUIRED
|
|
3
3
|
const path = require('path');
|
|
4
|
-
var SERVER_ROOT = path.resolve(__dirname, '
|
|
5
|
-
var APP_ROOT = path.resolve(SERVER_ROOT, '
|
|
4
|
+
var SERVER_ROOT = path.resolve(__dirname, '..');
|
|
5
|
+
var APP_ROOT = path.resolve(SERVER_ROOT, 'app');
|
|
6
6
|
|
|
7
7
|
// Only for reading the certificates for SSL
|
|
8
8
|
const fs = require('fs');
|
package/templates/package.json
CHANGED