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] Remove the config/environment.js file from the addon blueprint #10049

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
5 changes: 0 additions & 5 deletions blueprints/addon/files/addon-config/environment.js

This file was deleted.

1 change: 0 additions & 1 deletion blueprints/addon/index.js
Expand Up @@ -189,7 +189,6 @@ module.exports = {
'^config.*': 'tests/dummy/:path',
'^public.*': 'tests/dummy/:path',

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

'^npmignore': '.npmignore',
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/addon-smoke-test-slow.js
Expand Up @@ -146,7 +146,7 @@ describe('Acceptance: addon-smoke-test', function () {
return handleError(error, 'tar');
}

let necessaryFiles = ['package.json', 'index.js', 'LICENSE.md', 'README.md', 'config/environment.js'];
let necessaryFiles = ['package.json', 'index.js', 'LICENSE.md', 'README.md'];

let unnecessaryFiles = [
'.gitkeep',
Expand Down