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.
@@ -6,9 +6,9 @@ const path = require("path"),
6
6
  nunjucks = require('nunjucks'),
7
7
  identifier = 'templates';
8
8
 
9
- let Functions = require('../core/external/functions.js');
10
- let Dipper = require('../core/framework/dipper.js');
11
- let Config = require(processCwd() + '/index.js');
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-jet",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "VannilaJet framework",
5
5
  "main": "index.js",
6
6
  "bin": {