We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defc02b commit ad8088cCopy full SHA for ad8088c
ts/blueprints/ember-cli-typescript/index.js
@@ -68,10 +68,11 @@ module.exports = {
68
}
69
70
return {
71
- includes: JSON.stringify(includes.map(include => `${include}/**/*`), null, 2).replace(
72
- /\n/g,
73
- '\n '
74
- ),
+ includes: JSON.stringify(
+ includes.map(include => `${include}/**/*`),
+ null,
+ 2
75
+ ).replace(/\n/g, '\n '),
76
pathsFor: dasherizedName => {
77
// We need to wait to use this module until `ember-cli-typescript-blueprints` has been installed
78
let updatePathsForAddon = require('ember-cli-typescript-blueprints/lib/utilities/update-paths-for-addon');
0 commit comments