mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:53:23 +08:00
35290660bf
Running addonPostprocessTree manually was causing ember-auto-import's postprocess hook to run and generate extra unnecessary chunks. The only reason called addonPostprocessTree directly was to allow the terser plugin to run on the extra public trees. We can do the terser postprocessing manually instead.
This commit is approximately the inverse of e1d27400f5
.
This commit also removes ember-auto-import as dependencies of admin/wizard/discourse-plugins because they are not 'real' ember addons, and so it isn't serving any useful purpose. (see also https://github.com/discourse/discourse/pull/23974)
32 lines
730 B
JSON
32 lines
730 B
JSON
{
|
|
"name": "discourse-plugins",
|
|
"version": "1.0.0",
|
|
"description": "An addon providing a broccoli tree for each Discourse plugin",
|
|
"author": "Discourse",
|
|
"license": "GPL-2.0-only",
|
|
"keywords": [
|
|
"ember-addon"
|
|
],
|
|
"dependencies": {
|
|
"deprecation-silencer": "1.0.0",
|
|
"discourse-widget-hbs": "1.0.0",
|
|
"ember-cli-babel": "^8.2.0",
|
|
"ember-cli-htmlbars": "^6.3.0",
|
|
"ember-template-imports": "^4.0.0",
|
|
"ember-this-fallback": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.2",
|
|
"ember-cli": "~5.0.0",
|
|
"webpack": "^5.89.0"
|
|
},
|
|
"engines": {
|
|
"node": "16.* || >= 18",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">= 1.21.1"
|
|
},
|
|
"ember": {
|
|
"edition": "default"
|
|
}
|
|
}
|