Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@pnp/buildsystem
Advanced tools
This project contains the system used to build, package, and publish the npm packages created for each package in the ./packages folder.
Configuration is driven entirely by the buildsystem-config.ts
file, which uses TypeScript to allow type checking for the elements. The file should provide a default export of an array of build configurations as described below. There can be any number of configurations as needed, but to support the full lifecycle you typically need to cover one config for each role: build, package, and publish.
For each of the three roles, build, package, and publish there exists an interface defining what it should contain. You can have multiple configurations per role, differentiated by name.
The definitions for the configuration options are available in the source. It is intended your buildsystem.config.ts export a valid
ConfigCollection
;
For an example buildsystem-config please see the one used by PnPjs within this repo.
You can install the tool globally but that isn't requried as it is installed locally when you npm install
within the root of the main library project. It has a simple command line:
pnpbuild -n <name of the configuration to run>
OR default to using the "build" configuration:
pnpbuild
FAQs
pnp - the build system used within the @pnp/pnpjs monorepo
We found that @pnp/buildsystem demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.