diff --git a/src/app/config.coffee b/src/app/config.coffee index 20c2afbf7..65683d9e1 100644 --- a/src/app/config.coffee +++ b/src/app/config.coffee @@ -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')]