We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f28ea05 + 8e56ac2 commit 531c119Copy full SHA for 531c119
packages/angular/projects/tx-native-angular-sdk/src/lib/translation.service.ts
@@ -26,6 +26,7 @@ export class TranslationService {
26
}
27
28
// A dictionary with additional TX Native instances for translation
29
+ // eslint-disable-next-line space-infix-ops
30
private additionalInstances: { [id: string]: any } = {};
31
32
// A subject for managing locale changes
packages/cli/src/commands/push.js
@@ -40,6 +40,7 @@ class PushCommand extends Command {
40
if (isFolder(filePattern)) {
41
filePattern = path.join(filePattern, PushCommand.args[0].default);
42
43
+ filePattern = filePattern.replace(/\\/g, '/');
44
45
const appendTags = stringToArray(flags['append-tags']);
46
const filterWithTags = stringToArray(flags['with-tags-only']);
0 commit comments