You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it's including everything in npm pack under packages/create-full-stack. It only needs to include what tsc compiles into build/ and any templates.
It needs to copy over the templates directory or make templates packages (#49)
Is there a way to always publish from build/? Could lerna handle this? Trying to overwrite the publish script in package.json with yarn --cwd build/ publish doesn't work
The text was updated successfully, but these errors were encountered:
Didn't work. --contents requires that all packages use a dist/build model but only create-full-stack has this. Could copy all the contents into a build folder in the other packages in a "prepare" script
Right now it's including everything in
npm pack
underpackages/create-full-stack
. It only needs to include what tsc compiles intobuild/
and any templates.It needs to copy over the templates directory or make templates packages (#49)
Using
files
in npmpackage.json
like CRA does is confusing because it's in packages/create-full-stack and packages/create-full-stack/build so the filter gets applied twice (ex. iftemplates
is in files it doesn't get included innpm pack
)https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/package.json#L22-L23 (this isn't needed because they moved them to packages)
Is there a way to always publish from
build/
? Could lerna handle this? Trying to overwrite the publish script inpackage.json
withyarn --cwd build/ publish
doesn't workThe text was updated successfully, but these errors were encountered: