Skip to content

Commit

Permalink
Silence JavaScript preprocessor deprecation warning on Ember 2.12
Browse files Browse the repository at this point in the history
As of Ember 2.12 the addon started triggering the following deprecation warning:

```
DEPRECATION: Addon files were detected in `.../node_modules/ember-data-factory-guy/addon`, but no JavaScript preprocessors were found for `ember-data-factory-guy`.
Please make sure to add a preprocessor (most likely `ember-cli-babel`) to in `dependencies` (NOT `devDependencies`) in `ember-data-factory-guy`'s `package.json`.
```
  • Loading branch information
Veli-Matti Luoto committed Mar 22, 2017
1 parent d1339bc commit 5371209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
"license": "MIT",
"dependencies": {
"broccoli-funnel": "^1.0.1",
"broccoli-merge-trees": "^1.1.1"
"broccoli-merge-trees": "^1.1.1",
"ember-cli-babel": "latest"
},
"devDependencies": {
"active-model-adapter": "2.1.1",
"broccoli-asset-rev": "^2.1.2",
"ember-cli": "^2.12.0",
"ember-cli-babel": "latest",
"ember-cli-dependency-checker": "^1.3.0",
"ember-cli-deprecation-workflow": "^0.2.3",
"ember-cli-htmlbars": "1.1.1",
Expand Down

0 comments on commit 5371209

Please sign in to comment.