Moving a few static files out of lms into common

This commit is contained in:
Arjun Singh
2012-08-07 13:39:59 -04:00
parent 0c4ad3b152
commit 26f31324c4
28 changed files with 4 additions and 4 deletions

View File

@@ -87,10 +87,10 @@ sys.path.append(COMMON_ROOT / 'djangoapps')
sys.path.append(COMMON_ROOT / 'lib')
# For Node.js
node_paths = [PROJECT_ROOT / "lib/node_modules",
PROJECT_ROOT / "static/js",
PROJECT_ROOT / "static/coffee/src",
PROJECT_ROOT / "static/coffee/src/modules"]
node_paths = [COMMON_ROOT / "lib/node_modules",
COMMON_ROOT / "static/js/vendor",
COMMON_ROOT / "static/coffee/src",
]
node_path = ':'.join(node_paths)
os.environ["NODE_PATH"] = node_path