Added minor es2015 tweaks

This commit is contained in:
Chris
2016-03-29 23:01:42 +02:00
parent 6344984d65
commit 832907f2fd
4 changed files with 19 additions and 22 deletions
+10 -10
View File
@@ -1,8 +1,8 @@
'use strict';
let path = require('path');
let configUtils = require('./config');
let _ = require('underscore.string');
const path = require('path');
const configUtils = require('./config');
const _ = require('underscore.string');
// Needed directory paths
const baseName = path.basename(process.cwd());
@@ -157,11 +157,11 @@ let getDestinationClassName = (name, type, suffix) => {
};
module.exports = {
getBaseDir: getBaseDir,
getAllSettingsFromComponentName: getAllSettingsFromComponentName,
getAppName: getAppName,
getCleanedPathName: getCleanedPathName,
getComponentStyleName: getComponentStyleName,
getDestinationPath: getDestinationPath,
getDestinationClassName: getDestinationClassName
getBaseDir,
getAllSettingsFromComponentName,
getAppName,
getCleanedPathName,
getComponentStyleName,
getDestinationPath,
getDestinationClassName
};