
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
@taskr/concat
Advanced tools
Concatenate files with optional source maps.
$ npm install --save-dev @taskr/concat
exports.default = function * (task) {
// concat only; no sourcemap
yield task.source('src/*.js')
.concat('all.js')
.target('dist'); //=> 'dist/all.js'
// concat with sourcemap
yield task.source('src/*.js')
.concat({ output:'all.js', map:true })
.target('dist'); //=> 'dist/all.js', 'dist/all.js.map'
// concat nested source
yield task.source('src/js/*.js')
.concat({ output:'all.js', base:'src' })
.target('dist'); //=> 'dist/all.js' vs 'dist/js/all.js'
};
Passing options as a String is a shortcut for {output: <value>}. Only concatenation will occur with this configuration.
Type: string
Default: ''
Adjust the concatenated file's base directory. This is useful when your source() is nested deeper than your target().
// without \`base\`
yield task.source('src/js/**/*.js')
.concat('all.js').target('dist/js');
//=> dist/js/client/all.js
// with \`base\`
yield task.source('src/js/**/*.js')
.concat({ output:'all.js', base:'src/js' }).target('dist/js');
//=> dist/js/all.js
Type: boolean
Default: false
Should a sourcemap be generated? If true, its name will be {options.output}.map and it will be a sibling of the concatenated file.
dist\
|- all.js
|- all.js.map
Type: string
Default: ''
The name of your concatenated file.
Type: string
Default: ''
Any issues or questions can be sent to the Taskr monorepo.
Please be sure to specify that you are using @taskr/concat.
MIT © Luke Edwards
FAQs
Concatenate files with optional source maps.
The npm package @taskr/concat receives a total of 0 weekly downloads. As such, @taskr/concat popularity was classified as not popular.
We found that @taskr/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.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.