@@ -26,6 +26,7 @@ const asiagoLocation = fs.existsSync(resolveApp('node_modules/@brickwork-softwar
26
26
? resolveApp ( 'node_modules/@brickwork-software/asiago' )
27
27
: resolveApp ( '..' ) ;
28
28
const asiagoDirectory = fs . realpathSync ( asiagoLocation )
29
+ const asiagoNodeModules = path . resolve ( asiagoDirectory , 'node_modules' )
29
30
30
31
const resolveOwn = relativePath => path . resolve ( __dirname , '..' , relativePath ) ;
31
32
@@ -64,13 +65,13 @@ module.exports = {
64
65
appHtml : resolveApp ( 'public/index.html' ) ,
65
66
appIndexJs : resolveApp ( 'src/index.js' ) ,
66
67
asiagoPath : asiagoDirectory ,
68
+ asiagoNodeModules : asiagoNodeModules ,
67
69
appPackageJson : resolveApp ( 'package.json' ) ,
68
70
appSrc : resolveApp ( 'src' ) ,
69
71
appPath : appDirectory ,
70
72
yarnLockFile : resolveApp ( 'yarn.lock' ) ,
71
73
testsSetup : resolveApp ( 'src/setupTests.js' ) ,
72
74
appNodeModules : resolveApp ( 'node_modules' ) ,
73
- ownNodeModules : resolveOwn ( '../node_modules' ) ,
74
75
publicUrl : getPublicUrl ( resolveApp ( 'package.json' ) ) ,
75
76
servedPath : getServedPath ( resolveApp ( 'package.json' ) ) ,
76
77
} ;
0 commit comments