We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
My grunt file looks as such:
` let resxConverter = require("resx-json-typescript-converter");
grunt.log.writeln("Converting language resources"); resxConverter.convertResx(["./HydraCli.en.resx", "HydraCli.zh-CHS.resx"], "./src/resources", { defaultResxCulture: "en", mergeCulturesToSingleFile: true, generateTypeScriptResourceManager: true, searchRecursive: true });
`
Resulting resourceManager looks as such:
`export class HydraCli extends resourceFile {
constructor(resourceManager: resourceManager) { super(resourceManager); this.resources = (<any>resxHydraCli).default; }
... `
(resxHydraCli).default equals null. If I remove the default property as such, it will work:
constructor(resourceManager: resourceManager) { super(resourceManager); this.resources = (<any>resxHydraCli); }
The text was updated successfully, but these errors were encountered:
Sorry. I have been pausing my work for quite some time (due to personal/family reasons). I am back and wonder whether you still need help with this?
Sorry, something went wrong.
lheasysoft
No branches or pull requests
My grunt file looks as such:
` let resxConverter = require("resx-json-typescript-converter");
`
Resulting resourceManager looks as such:
`export class HydraCli extends resourceFile {
...
`
(resxHydraCli).default equals null. If I remove the default property as such, it will work:
`export class HydraCli extends resourceFile {
...
`
The text was updated successfully, but these errors were encountered: