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 93bc266 commit 8f63188Copy full SHA for 8f63188
packages/cli/lib/templates/ReactTemplate.ts
@@ -129,7 +129,8 @@ export class ReactTemplate implements Template {
129
}
130
131
if (dvDep && !igniteuiResFile.includes(dvPath)) {
132
- fs.writeSync(fd, `\r\n// Ignite UI Charts Required JavaScript File\r\nimport "${dvPath}";\r\n`);
+ const endPos = fs.fstatSync(fd).size;
133
+ fs.writeSync(fd, `\r\n// Ignite UI Charts Required JavaScript File\r\nimport "${dvPath}";\r\n`, endPos);
134
135
136
fs.closeSync(fd);
0 commit comments