From d8ec4573ec0cf96b13f56646fc1076609e512186 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 7 Aug 2013 17:40:15 -0700 Subject: [PATCH] Remove all references to vendor/packages 3rd party packages are stored in node_modules --- src/app/config.coffee | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/config.coffee b/src/app/config.coffee index 9d75b3091..fcb3a6021 100644 --- a/src/app/config.coffee +++ b/src/app/config.coffee @@ -11,7 +11,6 @@ configDirPath = fsUtils.absolute("~/.atom") bundledPackagesDirPath = path.join(resourcePath, "src/packages") nodeModulesDirPath = path.join(resourcePath, "node_modules") bundledThemesDirPath = path.join(resourcePath, "themes") -vendoredPackagesDirPath = path.join(resourcePath, "vendor/packages") userThemesDirPath = path.join(configDirPath, "themes") userPackagesDirPath = path.join(configDirPath, "packages") userStoragePath = path.join(configDirPath, ".storage") @@ -24,8 +23,8 @@ module.exports = class Config configDirPath: configDirPath themeDirPaths: [userThemesDirPath, bundledThemesDirPath] - bundledPackageDirPaths: [vendoredPackagesDirPath, bundledPackagesDirPath, nodeModulesDirPath] - packageDirPaths: [userPackagesDirPath, vendoredPackagesDirPath, bundledPackagesDirPath] + bundledPackageDirPaths: [bundledPackagesDirPath, nodeModulesDirPath] + packageDirPaths: [userPackagesDirPath, bundledPackagesDirPath] userPackagesDirPath: userPackagesDirPath userStoragePath: userStoragePath lessSearchPaths: [path.join(resourcePath, 'static'), path.join(resourcePath, 'vendor')]