Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
karma-coffee-preprocessor
Advanced tools
Preprocessor to compile CoffeeScript on the fly.
The easiest way is to keep karma-coffee-preprocessor
as a devDependency.
You can simple do it by:
npm install karma-coffee-preprocessor --save-dev
Following code shows the default configuration
// karma.conf.js
module.exports = function(config) {
config.set({
preprocessors: {
'**/*.coffee': ['coffee']
},
coffeePreprocessor: {
// options passed to the coffee compiler
options: {
bare: true,
sourceMap: false
},
// transforming the filenames
transformPath: function(path) {
return path.replace(/\.coffee$/, '.js')
}
},
// make sure to include the .coffee files not the compiled .js files
files: [
'**/*.coffee'
]
})
}
If you set the sourceMap
coffee compiler option to true
then the generated source map will be inlined as a data-uri.
For more information on Karma see the homepage.
FAQs
A Karma plugin. Compile coffee script on the fly.
We found that karma-coffee-preprocessor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.