Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-faker

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-faker - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

9

index.js

@@ -8,2 +8,11 @@ 'use strict';

included: function included(app) {
this._super.included.apply(this, arguments);
// Fixes an issue if references as *dependency* in package.json, not as
// *devDependency*.
// See: https://github.com/ember-cli/ember-cli/issues/5747
if (typeof app.import !== 'function' && app.app) {
app = app.app;
}
this.app = app;

@@ -10,0 +19,0 @@ var addonConfig = this.app.project.config(app.env)['ember-faker'];

2

package.json
{
"name": "ember-faker",
"description": "Include fake data in your app for testing or prototyping.",
"version": "1.1.0",
"version": "1.1.1",
"directories": {

@@ -6,0 +6,0 @@ "doc": "doc",

@@ -7,5 +7,11 @@ # Ember Faker

## Installation
## Installation for ember-cli >= 0.2.3
```javascript
```bash
ember install ember-faker
```
#### ember-cli 0.1.5 - 0.2.2
```bash
ember install:addon ember-faker

@@ -12,0 +18,0 @@ ```

Sorry, the diff of this file is not supported yet

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