File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ var bower = require('bower'),
33 path = require ( 'path' ) ;
44
55module . exports = {
6- DefaultProjectManifestPath : './adapt.json' ,
7- DefaultProjectFrameworkPath : './package.json' ,
6+ ManifestFilename : 'adapt.json' ,
7+ FrameworkFilename : 'package.json' ,
8+ DefaultProjectManifestPath : './' + this . ManifestFilename ,
9+ DefaultProjectFrameworkPath : './' + this . FrameworkFilename ,
810 DefaultCreateType : 'course' ,
911 DefaultTypeNames : {
1012 'course' :'my-adapt-course' ,
@@ -60,6 +62,6 @@ function setCwd(cwd) {
6062
6163 this . cwd = cwd ;
6264
63- this . DefaultProjectManifestPath = path . join ( this . cwd , this . DefaultProjectManifestPath ) ;
64- this . DefaultProjectFrameworkPath = path . join ( this . cwd , this . DefaultProjectFrameworkPath ) ;
65- }
65+ this . DefaultProjectManifestPath = path . join ( this . cwd , this . ManifestFilename ) ;
66+ this . DefaultProjectFrameworkPath = path . join ( this . cwd , this . FrameworkFilename ) ;
67+ }
You can’t perform that action at this time.
0 commit comments