Socket
Socket
Sign inDemoInstall

karma

Package Overview
Dependencies
Maintainers
1
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

13

CHANGELOG.md

@@ -0,1 +1,14 @@

<a name="v0.9.1"></a>
### v0.9.1 (2013-04-04)
#### Bug Fixes
* **init:** to not give false warning about missing requirejs ([562607a1](https://github.com/karma-runner/karma/commit/562607a16221b256c6e92ad2029154aac88eec8d))
#### Features
* ship coffee-preprocessor and requirejs as default plugins ([f34e30db](https://github.com/karma-runner/karma/commit/f34e30db4d25d484a30d12e3cb1c41069c0b263a))
<a name="v0.9.0"></a>

@@ -2,0 +15,0 @@ ## v0.9.0 (2013-04-03)

4

lib/config.js

@@ -224,5 +224,7 @@ var fs = require('fs');

'karma-jasmine',
'karma-requirejs',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-phantomjs-launcher'
'karma-phantomjs-launcher',
'karma-coffee-preprocessor'
]

@@ -229,0 +231,0 @@ };

@@ -180,4 +180,4 @@ var readline = require('readline');

if (line && currentQuestion.validate) {
currentQuestion.validate(line);
if (line === '') {
line = null;
}

@@ -189,5 +189,9 @@

if (line !== null && currentQuestion.validate) {
currentQuestion.validate(line);
}
if (currentQuestion.multiple) {
answers[pendingQuestionId] = answers[pendingQuestionId] || [];
if (line) {
if (line !== null) {
answers[pendingQuestionId].push(line);

@@ -194,0 +198,0 @@ rli.prompt();

@@ -84,2 +84,4 @@ {

"karma-jasmine": "*",
"karma-requirejs": "*",
"karma-coffee-preprocessor": "*",
"karma-chrome-launcher": "*",

@@ -117,3 +119,2 @@ "karma-firefox-launcher": "*",

},
"preferGlobal": true,
"repository": {

@@ -133,3 +134,3 @@ "type": "git",

},
"version": "0.9.0"
"version": "0.9.1"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc