Gathering detailed insights and metrics for grunt-systemjs-builder
Gathering detailed insights and metrics for grunt-systemjs-builder
Gathering detailed insights and metrics for grunt-systemjs-builder
Gathering detailed insights and metrics for grunt-systemjs-builder
npm install grunt-systemjs-builder
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (99.96%)
HTML (0.04%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
6 Stars
24 Commits
4 Forks
1 Watchers
3 Branches
3 Contributors
Updated on Dec 08, 2016
Latest Version
1.0.0
Package Id
grunt-systemjs-builder@1.0.0
Size
856.78 kB
NPM Version
4.1.2
Node Version
7.7.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
2
npm install --save-dev grunt-systemjs-builder
grunt.loadNpmTasks("grunt-systemjs-builder");
grunt systemjs
This is a MultiTask therefore it can run using different configuration using targets in the grunt configuration. see grunt docs for more info.
In essence, this grunt task simply passes along configuration to the SystemJS Builder. You should familiarize yourself with its configuration documentation.
"The baseURL provides a special mechanism for loading modules relative to a standard reference URL."
if baseURL is provided through the configuration, it will be the one used and any subsequent baseURL configuration (even) from a configFile will be ignored as systemjs only allows to configure baseURL once.
path to an external configuration file (one with System.config(...) calls).
default: false
Create a self-executing bundle
default: false
shortcut for passing the build object with a minify property
default: true
shortcut for passing the build object with a sourceMapsproperty
The configuration that is allowed when creating the builder instance. Basically any valid systemjs configuration (same as calling System.config()). see builder documentation.
### build: Objectthe configuration that is allowed when running build or buildSFX see builder documentation.
Configuring the source and destination files is done in the standard grunt way using the "files" property of the target (see example below)
1 2grunt.initConfig({ 3 systemjs: { 4 options: { 5 sfx: true, 6 baseURL: "./target", 7 configFile: "./target/config.js", 8 minify: true, 9 build: { 10 mangle: false 11 } 12 }, 13 dist: { 14 files: [{ 15 "src": "./target/src/init.js", 16 "dest": "./target/bundles/app.min.js" 17 }] 18 } 19 } 20});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/23 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
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