Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX beta] Ensure tests from @ember/* are excluded from debug/prod builds. #16781

Merged
merged 1 commit into from
Jun 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ module.exports = function() {
// Bundling
let emberTestsBundle = new MergeTrees([
new Funnel(packagesES5, {
include: ['internal-test-helpers/**', '*/tests/**', 'license.js'],
include: [
'internal-test-helpers/**',
'*/*/tests/**' /* scoped packages */,
'*/tests/**' /* packages */,
'license.js',
],
}),
loader,
license,
Expand All @@ -133,7 +138,12 @@ module.exports = function() {

let emberDebugBundle = new MergeTrees([
new Funnel(packagesES5, {
exclude: ['*/tests/**', 'ember-template-compiler/**', 'internal-test-helpers/**'],
exclude: [
'*/*/tests/**' /* scoped packages */,
'*/tests/**' /* packages */,
'ember-template-compiler/**',
'internal-test-helpers/**',
],
}),
dependenciesES5,
loader,
Expand Down Expand Up @@ -208,7 +218,8 @@ module.exports = function() {
let emberProdBundle = new MergeTrees([
new Funnel(prodPackagesES5, {
exclude: [
'*/tests/**',
'*/*/tests/**' /* scoped packages */,
'*/tests/**' /* packages */,
'ember-template-compiler/**',
'ember-testing/**',
'internal-test-helpers/**',
Expand All @@ -235,7 +246,12 @@ module.exports = function() {

let emberTestsBundle = new MergeTrees([
new Funnel(prodPackagesES5, {
include: ['internal-test-helpers/**', '*/tests/**', 'license.js'],
include: [
'internal-test-helpers/**',
'*/*/tests/**' /* scoped packages */,
'*/tests/**' /* packages */,
'license.js',
],
}),
loader,
license,
Expand Down