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? 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
Hi,
When I pull the package from npm, I get the version 1.0.8. What I find here is the package 1.0.6. Have you moved to a different repository?
The npm version 1.0.8 has some issues that could be fixed with the following patches (assuming native Promises are enough):
/node_modules/xml-decorators/lib/models/XMLChild.ts
71c71 < let nsSchema = {}; --- > let nsSchema: any = {}; 169c169 < let attributes = {}; --- > let attributes: any = {};
/node_modules/xml-decorators/lib/models/XMLElement.ts
2c2 < import * as Promise from "bluebird"; --- > // import * as Promise from "bluebird"; 19,20c19,20 < private attributes: XMLAttribute[]; < private children: XMLChild[]; --- > private attributes?: XMLAttribute[]; > private children?: XMLChild[];
Could you please publish a patched version in npm or provide me with the up-to-date source so that I can patch my local version of the package?
Best regards, Bernd
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When I pull the package from npm, I get the version 1.0.8.
What I find here is the package 1.0.6.
Have you moved to a different repository?
The npm version 1.0.8 has some issues that could be fixed with the following patches (assuming native Promises are enough):
/node_modules/xml-decorators/lib/models/XMLChild.ts
/node_modules/xml-decorators/lib/models/XMLElement.ts
Could you please publish a patched version in npm or provide me with the up-to-date source so that I can patch my local version of the package?
Best regards, Bernd
The text was updated successfully, but these errors were encountered: