Files
react/fixtures/packaging/browserify/prod/package.json
Sebastian Markbåge db5e6250d4 Rename yarn build-combined to just yarn build (#26192)
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.
2023-02-17 16:00:18 -05:00

15 lines
366 B
JSON

{
"private": true,
"name": "browserify-prod-fixture",
"dependencies": {
"browserify": "^13.3.0"
},
"scripts": {
"build": "rm -f output.js && browserify ./input.js -g [envify --NODE_ENV 'production'] -o output.js",
"prebuild": "cp -r ../../../../build/oss-experimental/* ./node_modules/"
},
"devDependencies": {
"envify": "^4.0.0"
}
}