Gathering detailed insights and metrics for jbe-broccoli-merge-trees-patched
Gathering detailed insights and metrics for jbe-broccoli-merge-trees-patched
Gathering detailed insights and metrics for jbe-broccoli-merge-trees-patched
Gathering detailed insights and metrics for jbe-broccoli-merge-trees-patched
Broccoli plugin to merge multiple trees into one
npm install jbe-broccoli-merge-trees-patched
Typescript
Module System
Node Version
NPM Version
67.5
Supply Chain
88.3
Quality
71.6
Maintenance
100
Vulnerability
98.6
License
JavaScript (100%)
Total Downloads
1,003
Last Day
2
Last Week
3
Last Month
12
Last Year
74
MIT License
27 Stars
174 Commits
35 Forks
9 Watchers
18 Branches
10 Contributors
Updated on Aug 23, 2022
Minified
Minified + Gzipped
Latest Version
1.1.1
Package Id
jbe-broccoli-merge-trees-patched@1.1.1
Size
10.12 kB
NPM Version
2.15.1
Node Version
4.4.4
Cumulative downloads
Total Downloads
Last Day
100%
2
Compared to previous day
Last Week
50%
3
Compared to previous week
Last Month
71.4%
12
Compared to previous month
Last Year
-33.3%
74
Compared to previous year
Copy multiple trees of files on top of each other, resulting in a single merged tree.
1npm install --save-dev broccoli-merge-trees
1var BroccoliMergeTrees = require('broccoli-merge-trees'); 2 3var mergedNode = new BroccoliMergeTrees(inputNodes, options);
inputNodes
: An array of nodes, whose contents will be merged
options
: A hash of options
overwrite
: By default, broccoli-merge-trees throws an error when a file
exists in multiple nodes. If you pass { overwrite: true }
, the output
will contain the version of the file as it exists in the last input
node that contains it.
annotation
: A note to help tell multiple plugin instances apart.
If this is your Brocfile.js
:
1var BroccoliMergeTrees = require('broccoli-merge-trees'); 2 3module.exports = new BroccoliMergeTrees(['public', 'scripts']);
And your project contains these files:
.
├─ public
│ ├─ index.html
│ └─ images
│ └─ logo.png
├─ scripts
│ └─ app.js
├─ Brocfile.js
…
Then running broccoli build the-output
will generate this folder:
the-output
├─ app.js
├─ index.html
└─ images
└─ logo.png
The parent folders, public
and scripts
in this case, are not included in the output. The output tree contains only the files within each folder, all mixed together.
Clone this repo and run the tests like so:
npm install
npm test
Issues and pull requests are welcome. If you change code, be sure to re-run
npm test
. Oftentimes it's useful to add or update tests as well.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
Found 5/15 approved changesets -- score normalized to 3
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
40 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More