mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
5584fb1e3b
Motivation: aligning us with JS/Ember practices (runtime deps in `dependencies`, build/dev-time deps in `devDependencies`) 1. Move deps to devDeps where applicable (rule of thumb: it's a devDep unless it's required at runtime by the rails app or it's imported in the addon's code) 2. Remove unused dependencies and add missing ones (in addons) 3. Remove empty `repository` fields 4. Move `engines` and `ember` fields to the bottom
15 lines
355 B
JSON
15 lines
355 B
JSON
{
|
|
"name": "ember-production-deprecations",
|
|
"version": "1.0.0",
|
|
"description": "Prevents ember-cli from stripping deprecations in the production build",
|
|
"author": "Discourse",
|
|
"license": "GPL-2.0-only",
|
|
"keywords": [
|
|
"ember-addon"
|
|
],
|
|
"ember-addon": {
|
|
"after": "ember-cli-babel",
|
|
"before": "ember-cli-deprecation-workflow"
|
|
}
|
|
}
|