
Product
Introducing Custom Pull Request Alert Comment Headers
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
grunt-jst-concat
Advanced tools
concat jst file to module's js file
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:
npm install grunt-jst-concat --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-jst-concat');
In your project's Gruntfile, add a section named jst_concat
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
jst_concat: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
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 with whatever.
Type: String
Default value: 'tmp/template/'
compiled jst template path
Type: String
Default value: '.jst'
jst template extension
Type: String
Default value: '/CustomGetTemplateFn\s*\(\'(.*?).html\'\)/g'
A regex pattern that is used to get template path list
Type: String
Default value: '$1'
A string value that is used to replace template name
Type: Function
Default value: null
A function that is used to do something you want.
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.
grunt.initConfig({
jst_concat: {
options: {},
files: {
'tmp/modules/BookModule.js': ['test/fixtures/modules/BookModule.js']
},
},
})
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 !!!
grunt.initConfig({
jst_concat: {
options: {
separator_start: '/**start**/',
separator_end: '/**end**/',
jst_path: 'tmp/template/',
ext: ".jst",
pattern: /CustomGetTemplateFn\s*\(\'(.*?).html\'\)/g,
replace: function(jst){
jst = jst.replace('this.ajst=this.ajst||{},', "");
jst = jst.replace(/\n|\r/g, "");
return jst;
}
},
files: {
'tmp/modules/ShopModule.js': ['test/fixtures/modules/ShopModule.js']
}
},
})
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)
FAQs
concat jst file to module's js file
We found that grunt-jst-concat 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.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.