Gathering detailed insights and metrics for grunt-mout
Gathering detailed insights and metrics for grunt-mout
Gathering detailed insights and metrics for grunt-mout
Gathering detailed insights and metrics for grunt-mout
npm install grunt-mout
Typescript
Module System
Min. Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
7 Commits
1 Forks
1 Branches
1 Contributors
Updated on Jan 28, 2023
Latest Version
1.0.1
Package Id
grunt-mout@1.0.1
Size
5.73 kB
NPM Version
2.0.0-alpha-5
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
2
1
Grunt task for creating custom browserify builds of mout.js.
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
1npm install grunt-mout --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
1grunt.loadNpmTasks('grunt-mout');
In your project's Gruntfile, add a section named mout
to the data object passed into grunt.initConfig()
.
1grunt.initConfig({
2 mout: {
3 dist: {
4 options: {
5 modules: [
6 'mout/array',
7 'mout/object'
8 ]
9 },
10 dest: './.tmp/mout.js'
11 }
12 }
13});
Type: String
Default value: './.tmp/mout.js'
Destination file.
Type: Array
Default value: null
List of mout.js modules to include. Omit this option to include all of them.
Type: Boolean
Default value: false
Whether to include an inline source map at the bottom of the generated mout
bundle.
Type: Boolean
Default value: false
Whether to augment the generated mout
bundle with methods for recording and printing your app's usage of mout. Use this
functionality to learn what mout
modules your app uses, so you can generate a slimmer mout
build. Methods added to mout
:
mout.callCount
An object containing the call counts.
mout.reset()
Reset call counts to zero.
mout.usage()
Return an array of the modules that were called. This array will be in the format required for the options.modules
option of the grunt task.
Using the default options, all mout.js modules will be included and the bundle will be written to ./.tmp/mout.js
.
1grunt.initConfig({ 2 mout: { 3 dist: {} 4 } 5});
Override the destination path or specify a whitelist of mout.js modules to include (their dependencies will automatically be included) .
1grunt.initConfig({
2 mout: {
3 dist: {
4 options: {
5 modules: [
6 'mout/array',
7 'mout/object',
8 'mout/string/typecast',
9 'mout/time/convert'
10 ]
11 },
12 dest: './.tmp/mout.js'
13 }
14 }
15});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
project is archived
Details
Reason
Found 0/7 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
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
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