vanilla-jet 1.0.19 → 1.0.20
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/.grunt/compile_html.js +4 -3
- package/package.json +1 -1
package/.grunt/compile_html.js
CHANGED
|
@@ -6,9 +6,9 @@ const path = require("path"),
|
|
|
6
6
|
nunjucks = require('nunjucks'),
|
|
7
7
|
identifier = 'templates';
|
|
8
8
|
|
|
9
|
-
let Functions = require('../
|
|
10
|
-
let Dipper = require('../
|
|
11
|
-
let Config = require(processCwd() + '/
|
|
9
|
+
let Functions = require('../framework/functions.js');
|
|
10
|
+
let Dipper = require('../framework/dipper.js');
|
|
11
|
+
let Config = require(processCwd() + '/config.js');
|
|
12
12
|
|
|
13
13
|
// -- Init Dipper
|
|
14
14
|
const env = process.argv[2] || 'development';
|
|
@@ -208,5 +208,6 @@ function cleanALine(line) {
|
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
function processCwd() {
|
|
211
|
+
console.log(process.cwd());
|
|
211
212
|
return process.cwd().replace('/.grunt', '');
|
|
212
213
|
}
|