mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
3c69570b75
This babel plugin is intended to supress the deprecation warnings from building plugins, however, discourse-plugins does not actually consume this plugin at all. Currently this happens to work due to how the babel worker processes are shared and the timing/ordering of the build, but it will stop working with the embroider build. This commit extracts the plugin the a shared package so that it can be properly consumed by discourse-plugins as well as core.
31 lines
690 B
JSON
31 lines
690 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-auto-import": "^2.6.3",
|
|
"ember-cli-babel": "^7.26.11",
|
|
"ember-cli-htmlbars": "^6.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.9",
|
|
"ember-cli": "~5.0.0",
|
|
"webpack": "^5.88.2"
|
|
},
|
|
"engines": {
|
|
"node": "16.* || >= 18",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">= 1.21.1"
|
|
},
|
|
"ember": {
|
|
"edition": "default"
|
|
}
|
|
}
|