Remove config.bundledPackagesDirPath that was src/packages

This commit is contained in:
Kevin Sawicki
2013-08-13 17:48:29 -07:00
parent 41268c67d7
commit 2ddd77122e

View File

@@ -8,7 +8,6 @@ async = require 'async'
pathWatcher = require 'pathwatcher'
configDirPath = fsUtils.absolute("~/.atom")
bundledPackagesDirPath = path.join(resourcePath, "src/packages")
nodeModulesDirPath = path.join(resourcePath, "node_modules")
bundledThemesDirPath = path.join(resourcePath, "themes")
userThemesDirPath = path.join(configDirPath, "themes")
@@ -23,10 +22,9 @@ module.exports =
class Config
configDirPath: configDirPath
themeDirPaths: [userThemesDirPath, bundledThemesDirPath]
bundledPackageDirPaths: [bundledPackagesDirPath, nodeModulesDirPath]
bundledPackagesDirPath: bundledPackagesDirPath
bundledPackageDirPaths: [nodeModulesDirPath]
nodeModulesDirPath: nodeModulesDirPath
packageDirPaths: [userPackagesDirPath, bundledPackagesDirPath]
packageDirPaths: [userPackagesDirPath]
userPackagesDirPath: userPackagesDirPath
userStoragePath: userStoragePath
lessSearchPaths: [path.join(resourcePath, 'static'), path.join(resourcePath, 'vendor')]