mirror of
https://github.com/facebook/react.git
synced 2026-02-22 03:42:05 +00:00
It's confusing to new contributors, and me, that you're supposed to use `yarn build-combined` for almost everything but not fixtures. We should use only one build command for everything. Updated fixtures to use the folder convention of build-combined.
12 lines
278 B
JSON
12 lines
278 B
JSON
{
|
|
"private": true,
|
|
"name": "browserify-dev-fixture",
|
|
"dependencies": {
|
|
"browserify": "^13.3.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -f output.js && browserify ./input.js -o output.js",
|
|
"prebuild": "cp -r ../../../../build/oss-experimental/* ./node_modules/"
|
|
}
|
|
}
|