Gathering detailed insights and metrics for grunt-wickit
Gathering detailed insights and metrics for grunt-wickit
Gathering detailed insights and metrics for grunt-wickit
Gathering detailed insights and metrics for grunt-wickit
A simple plugin to generate static html from a Github wiki repo, including an index for search capability.
npm install grunt-wickit
Typescript
Module System
Min. Node Version
NPM Version
JavaScript (74.21%)
CoffeeScript (25.79%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
12 Commits
3 Forks
2 Watchers
1 Branches
2 Contributors
Updated on Oct 16, 2013
Latest Version
0.1.6
Package Id
grunt-wickit@0.1.6
Size
547.70 kB
NPM Version
1.2.10
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
4
A simple plugin to generate static html from a Github wiki repo, including an index for search capability.
This plugin requires Grunt ~0.4.1
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-wickit --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
1grunt.loadNpmTasks('grunt-wickit');
In your project's Gruntfile, add a section named wickit
to the data object passed into grunt.initConfig()
.
1grunt.initConfig({
2 wickit: {
3 options: {
4 // Task-specific options go here.
5 },
6 your_target: {
7 // Target-specific file lists and/or options go here.
8 },
9 },
10})
Type: String
Default value: ', '
A string value that is used to do something with whatever.
Type: String
Default value: '.'
A string value that is used to do something else with whatever else.
In this example, the default options are used to do something with whatever. So if the testing
file has the content Testing
and the 123
file had the content 1 2 3
, the generated result would be Testing, 1 2 3.
1grunt.initConfig({ 2 wickit: { 3 options: {}, 4 files: { 5 'dest/default_options': ['src/testing', 'src/123'], 6 }, 7 }, 8})
In this example, custom options are used to do something else with whatever else. So if the testing
file has the content Testing
and the 123
file had the content 1 2 3
, the generated result in this case would be Testing: 1 2 3 !!!
1grunt.initConfig({ 2 wickit: { 3 options: { 4 separator: ': ', 5 punctuation: ' !!!', 6 }, 7 files: { 8 'dest/default_options': ['src/testing', 'src/123'], 9 }, 10 }, 11})
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.
(Nothing yet)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/12 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
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