mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:41:18 +08:00
a01b1dd648
This makes a small improvement to 'cold cache' ember-cli build times, and a large improvement to 'warm cache' build times The ember-auto-import update means that vendor is now split into multiple files for efficiency. These are named `chunk.*`, and should be included immediately after the `vendor.js` file. This commit also updates the rails app to render script tags for these chunks. This change was previously merged, and caused memory-related errors on RAM-constrained machines. This was because Webpack 5 switches from multiple worker processes to a single multi-threaded process. This meant that it was hitting node's default heap size limit (~500mb on a 1GB RAM server). Discourse's standard install procedure recommends adding 2GB swap to 1GB-RAM machines, so we can afford to override's Node's default via the `--max-old-space-size` flag.
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "select-kit",
|
|
"version": "1.0.0",
|
|
"description": "Discourse's select widget",
|
|
"author": "Discourse",
|
|
"license": "GPL-2.0-only",
|
|
"keywords": [
|
|
"ember-addon"
|
|
],
|
|
"repository": "",
|
|
"scripts": {
|
|
"build": "ember build",
|
|
"lint:hbs": "ember-template-lint .",
|
|
"lint:js": "eslint .",
|
|
"start": "ember serve"
|
|
},
|
|
"dependencies": {
|
|
"ember-cli-babel": "^7.13.0",
|
|
"ember-cli-htmlbars": "^4.2.0",
|
|
"ember-auto-import": "^2.2.4",
|
|
"webpack": "^5.67.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ember/optional-features": "^1.1.0",
|
|
"@glimmer/component": "^1.0.0",
|
|
"babel-eslint": "^10.0.3",
|
|
"broccoli-asset-rev": "^3.0.0",
|
|
"ember-cli": "~3.25.3",
|
|
"ember-cli-dependency-checker": "^3.2.0",
|
|
"ember-cli-eslint": "^5.1.0",
|
|
"ember-cli-inject-live-reload": "^2.0.1",
|
|
"ember-cli-sri": "^2.1.1",
|
|
"ember-cli-template-lint": "^1.0.0-beta.3",
|
|
"ember-cli-uglify": "^3.0.0",
|
|
"ember-disable-prototype-extensions": "^1.1.3",
|
|
"ember-export-application-global": "^2.0.1",
|
|
"ember-load-initializers": "^2.1.1",
|
|
"ember-maybe-import-regenerator": "^0.1.6",
|
|
"ember-resolver": "^7.0.0",
|
|
"ember-source": "~3.15.0",
|
|
"ember-source-channel-url": "^2.0.1",
|
|
"ember-try": "^1.4.0",
|
|
"eslint-plugin-ember": "^7.7.1",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"loader.js": "^4.7.0"
|
|
},
|
|
"engines": {
|
|
"node": "12.* || 14.* || >= 16",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">= 1.21.1"
|
|
},
|
|
"ember": {
|
|
"edition": "octane"
|
|
}
|
|
}
|