File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ module.exports = {
6666 appIndexJs : resolveApp ( 'src/index.js' ) ,
6767 asiagoPath : asiagoDirectory ,
6868 asiagoNodeModules : asiagoNodeModules ,
69+ ownNodeModules : resolveOwn ( '../node_modules' ) ,
6970 appPackageJson : resolveApp ( 'package.json' ) ,
7071 appSrc : resolveApp ( 'src' ) ,
7172 appPath : appDirectory ,
Original file line number Diff line number Diff line change @@ -113,10 +113,11 @@ module.exports = {
113113 // if there are any conflicts. This matches Node resolution mechanism.
114114 // https://github.com/facebookincubator/create-react-app/issues/253
115115 modules : [
116- paths . appPath ,
117- path . resolve ( paths . asiagoPath ) ,
118- paths . asiagoNodeModules ,
119116 'node_modules' ,
117+ paths . appNodeModules ,
118+ paths . asiagoNodeModules ,
119+ paths . appPath ,
120+ paths . asiagoPath ,
120121 ] . concat (
121122 // It is guaranteed to exist because we tweak it in `env.js`
122123 process . env . NODE_PATH . split ( path . delimiter ) . filter ( Boolean )
Original file line number Diff line number Diff line change 11{
22 "name" : " @brickwork-software/react-scripts" ,
3- "version" : " 1.2.3 " ,
3+ "version" : " 1.2.4 " ,
44 "description" : " Configuration and scripts for Brickwork react apps" ,
55 "repository" : " brickworksoftware/create-react-app" ,
66 "license" : " BSD-3-Clause" ,
You can’t perform that action at this time.
0 commit comments