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
As reported here
Steps to reproduce
tns create app1 cd app1 tns platform add android npm install moment [see the code fragment below]
var moment = require("moment"); moment.locale("fr"); console.log(moment.locale()); // "fr" expected var m = moment(); m.locale("da"); console.log(m.locale()); // "da" expected
The first time moment module is resolved as
moment
/data/data/<app package>/files/app/tns_modules/moment/./moment.js
And the second time moment module is resolved as
/data/data/<app package>/files/app/tns_modules/moment/moment.js
Should always use canonical paths.
The text was updated successfully, but these errors were encountered:
fix issue #334
bed18d3
slavchev
No branches or pull requests
As reported here
Steps to reproduce
The first time
moment
module is resolved asAnd the second time
moment
module is resolved asShould always use canonical paths.
The text was updated successfully, but these errors were encountered: