New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

erik

Package Overview
Dependencies
Maintainers
19
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

erik - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "erik",
"version": "1.0.1",
"version": "1.0.2",
"description": "Start running your client `Jasmine` tests headlessly with `PhantomJS` and `gulp` today.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -47,2 +47,4 @@ # Erik

```js
const SHOULD_WATCH = !!argv.watch;
// Creating an `Erik` object registers several tasks with gulp (all prefixed with 'erik-').

@@ -57,3 +59,3 @@ new Erik({

*/
watch: !!argv.watch,
watch: SHOULD_WATCH,

@@ -107,2 +109,12 @@ /**

});
// Optionally configure Gulp to watch for spec changes.
gulp.on('task_start', function(e) {
if (e.task === 'erik') {
if (SHOULD_WATCH) {
console.log('Watching tests…');
gulp.watch(TEST_FILES, ['build-spec-bundle']);
}
}
});
```

@@ -120,2 +132,3 @@

* 1.0.2 Add event-based watch example.
* 1.0.1 Move dependencies to be non-dev dependencies.

@@ -122,0 +135,0 @@ * 1.0.0 Initial release.

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