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

[ENHANCEMENT] Move ember-try.js config file to tests/dummy/config/ember-try.js for addons #10051

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion blueprints/addon/files/npmignore
Expand Up @@ -22,7 +22,6 @@
/.travis.yml
/.watchmanconfig
/bower.json
/config/ember-try.js
/CONTRIBUTING.md
/ember-cli-build.js
/testem.js
Expand Down
2 changes: 1 addition & 1 deletion blueprints/addon/index.js
Expand Up @@ -189,7 +189,7 @@ module.exports = {
'^config.*': 'tests/dummy/:path',
'^public.*': 'tests/dummy/:path',

'^addon-config/ember-try.js': 'config/ember-try.js',
'^addon-config/ember-try.js': 'tests/dummy/config/ember-try.js',

'^npmignore': '.npmignore',
},
Expand Down
4 changes: 2 additions & 2 deletions tests/acceptance/new-test.js
Expand Up @@ -510,7 +510,7 @@ describe('Acceptance: ember new', function () {
let fixturePath = `${namespace}/defaults`;

[
'config/ember-try.js',
'tests/dummy/config/ember-try.js',
'tests/dummy/app/templates/application.hbs',
'.github/workflows/ci.yml',
'README.md',
Expand Down Expand Up @@ -579,7 +579,7 @@ describe('Acceptance: ember new', function () {
let fixturePath = 'addon/yarn';

[
'config/ember-try.js',
'tests/dummy/config/ember-try.js',
'tests/dummy/app/templates/application.hbs',
'.github/workflows/ci.yml',
'README.md',
Expand Down