Skip to content

Commit 2ad6e00

Browse files
authored
Merge pull request #6 from BrickworkSoftware/release/1.2
Release/1.2
2 parents 4578256 + e3a7033 commit 2ad6e00

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

packages/react-scripts/config/paths.js

+1
Original file line numberDiff line numberDiff 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,

packages/react-scripts/config/webpack.config.dev.js

+4-3
Original file line numberDiff line numberDiff 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)

packages/react-scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)