Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
pnpm-sync-dependencies-meta-injected
Advanced tools
pnpm-sync-dependencies-meta-injected
dependenciesMeta.*.injected = true
?This package (with turborepo) will solve all your problems!
in your turbo.json
, configure a _syncPnpm
task:
"_syncPnpm": {
"dependsOn": ["^build"],
"cache": false
},
It must not have a cache, because we need to modify the .pnpm
directory in the top-level node_modules
folder.
In each of your projects that declare a dependenciesMeta.*.injected = true
, add a _syncPnpm
script in your package.json:
"_syncPnpm": "DEBUG=sync-pnpm pnpm sync-dependencies-meta-injected"
In each of your projects now includes _syncPnpm
, re-configure your project's start
command to run _syncPnpm
in watch mode so that you can continually work on your injected dependencies and have updates automatically re-synced as the built are built.
"start": "concurrently 'ember serve' 'pnpm _syncPnpm --watch' --names 'tests serve,tests sync deps'",
By using concurrently
, we can run our dev server as well as the _syncPnpm
task in watch mode in parallel.
in your turbe.json
, configure each task that relies on ^build
to also rely on _syncPnpm
(no ^
) -- this, combined with the above will sync the hard links that pnpm
uses for dependenciesMeta.*.injected
after the dependencies are built.
"test": {
"outputs": [],
"dependsOn": ["_syncPnpm", "^build"]
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["_syncPnpm", "^build"]
},
// etc
Add
DEBUG=sync-pnpm
before the invocation.
Example of adding to the package.json#scripts
"_syncPnpm": "DEBUG=sync-pnpm pnpm sync-dependencies-meta-injected"
FAQs
Unknown package
We found that pnpm-sync-dependencies-meta-injected demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.