Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Provides utility functions for handling collections of Salesforce metadata. The library is implemented in Scala in a style that allows it to be compiled for either use on both JVM or node.
The library is mostly written in Scala to support dual building for Java & Node. This model works well when you are also using Scala and is usable from Java but is more awkward for Node clients. To overcome this a small part of the library for resolving type names to paths is exposed in a Node friendly NPM module.
To use this, first create a workspace:
const workspace = Workspaces.get("mydirectory") // Will throw on errors
Call findType on the workspace:
const fooPath = workspace.findType("ns001.Foo") // Returns null if type is unknown
A workspace here is simply the directory containing Salesforce metadata, typically it's the directory in which sfdx-project.json resides.
To use in a JVM project
<dependency>
<groupId>com.github.nawforce</groupId>
<artifactId>pkgforce</artifactId>
<version>2.3.3/version>
</dependency>
For scala.js:
libraryDependencies += "com.github.nawforce" %%% "pkgforce" % "2.3.3"
For scala:
libraryDependencies += "com.github.nawforce" % "pkgforce" % "2.3.3"
The dual build (Java & JS) is handled by sbt:
sbt build
To run tests:
sbt test
A maven pom.xml is also provided to aid compatibility with IntelliJ. See top level README.md for details on use.
FAQs
Salesforce Metadata Management Utility Library
We found that pkgforce demonstrated a not healthy version release cadence and project activity because the last version was released 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.