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
Backwards compatibility is supported and is probably fixed (?) in 10.6.1
When executing the approve-builds command, if package.json contains onlyBuiltDependencies or ignoredBuiltDependencies, the selected dependency package will continue to be written into package.json.
The text was updated successfully, but these errors were encountered:
I wonder what should happen if there is no pnpm-workspace.yaml because you are creating a new project. Should it just be created to only add those three lines?
Basically I think this is a good idea, because it puts pnpm related stuff in an pnpm file
corepack use pnpm@latest
# Installing [email protected] in the project...
pnpm i @sveltejs/kit -D
# Ignored build scripts: esbuild.# Run "pnpm approve-builds" to pick which dependencies should be allowed to run scripts.
pnpm approve-builds
# √ The next packages will now be built: esbuild.# Do you approve? (y/N) · true -- workspace file is generated at this point.
onlyBuiltDependencies
inpnpm-workspace.yaml
is supported from[email protected]
:pnpm approve-builds
addsonlyBuiltDependencies
topnpm-workspace.yaml
as of10.7.1
.Current implementation is fixed to the
pnpm.onlyBuiltDependencies
field in thepacakge.json
:pnpm
version10
#432Backwards compatibility is supported and is probably fixed (?) in
10.6.1
The text was updated successfully, but these errors were encountered: