mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
1ebeb0542f
* Move build/packages/* to build/node_modules/* This fixes Node resolution in that folder and lets us require() packages in it in Node shell for manual testing. * Link fixtures to packages/node_modules This updates the location and also uses link: instead of file: to avoid Yarn caching the folder contents.
14 lines
329 B
JSON
14 lines
329 B
JSON
{
|
|
"private": true,
|
|
"name": "brunch-dev-fixture",
|
|
"devDependencies": {
|
|
"brunch": "^2.9.1",
|
|
"javascript-brunch": "^2.0.0",
|
|
"react": "link:../../../../build/node_modules/react",
|
|
"react-dom": "link:../../../../build/node_modules/react-dom"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf public && brunch build"
|
|
}
|
|
}
|