mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 04:34:32 +08:00
641c689ac1
In Ember, these deprecations are wrapped in an `if(DEBUG)` check, so they are optimized out of the production build. We prefer to keep deprecations in production so that we can collect telemetry and warn theme authors who do not use local development environments. This commit restores the deprecations as part of our ember-production-deprecations addon.
33 lines
751 B
Plaintext
33 lines
751 B
Plaintext
app/assets/stylesheets/vendor/
|
|
plugins/**/assets/stylesheets/vendor/
|
|
plugins/**/assets/javascripts/vendor/
|
|
plugins/**/config/locales/**/*.yml
|
|
plugins/**/config/*.yml
|
|
documentation/
|
|
package.json
|
|
config/locales/**/*.yml
|
|
!config/locales/**/*.en*.yml
|
|
script/import_scripts/**/*.yml
|
|
|
|
app/assets/javascripts/browser-update.js
|
|
app/assets/javascripts/ember-addons/
|
|
app/assets/javascripts/discourse/lib/autosize.js
|
|
lib/javascripts/locale/
|
|
lib/javascripts/messageformat.js
|
|
lib/highlight_js/
|
|
plugins/**/lib/javascripts/locale
|
|
public/
|
|
!/app/assets/javascripts/discourse/public
|
|
vendor/
|
|
!app/assets/javascripts/ember-production-deprecations/vendor/
|
|
app/assets/javascripts/discourse/tests/fixtures
|
|
spec/
|
|
node_modules/
|
|
dist/
|
|
tmp/
|
|
|
|
**/*.rb
|
|
**/*.html
|
|
**/*.json
|
|
**/*.md
|