This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Description * file: ExampleProject/node_modules/nativescript-angular/application.js
line: 2
code: `import "zone.js/dist/zone-node"`
* file: ExampleProject/node_modules/nativescript-angular/node_modules/zone.js/dist/zone-node.js
line: 670
code: `var timers = require('timers')`
* note: in NativeScript, "timers" are re-implemented (ie: setTimeout, setInterval, etc)
repo: https://github.com/NativeScript/NativeScript/tree/master/tns-core-modules/timer
code: `var timer = require("timer")`
note: "timer" NOT "timers"
* question:
which module was most recently changed, such that they are no-longer compatible?
answer:
- zone.js
https://github.com/angular/zone.js/blob/master/dist/zone-node.js
https://github.com/angular/zone.js/commits/master/dist/zone-node.js
note:
2 commits within the last 5 hours
commits:
https://github.com/angular/zone.js/tree/55f815017df6bbda23eb0d1f61795f6f0412f51e/dist/zone-node.js
date: Aug 22, 2016, 10:29 AM PDT
line: 54
code: `var timers = __webpack_require__(4);`
https://github.com/angular/zone.js/tree/44c46fa5a615cfa3ca6ad9ea431e216ec6795bdf/dist/zone-node.js
date: Sep 10, 2016, 9:04 AM PDT
line: 664
code: `var timers = require('timers');`
https://github.com/angular/zone.js/tree/15d298b877f9da819055dad9d97cd50195c9d9f5/dist/zone-node.js
date: Sep 10, 2016, 9:05 AM PDT
line: 670
code: `var timers = require('timers');`
* workaround?:
- write a wrapper module named "timers", which exports "timer"
Reactions are currently unavailable
* file: ExampleProject/node_modules/nativescript-angular/application.js line: 2 code: `import "zone.js/dist/zone-node"` * file: ExampleProject/node_modules/nativescript-angular/node_modules/zone.js/dist/zone-node.js line: 670 code: `var timers = require('timers')` * note: in NativeScript, "timers" are re-implemented (ie: setTimeout, setInterval, etc) repo: https://github.com/NativeScript/NativeScript/tree/master/tns-core-modules/timer code: `var timer = require("timer")` note: "timer" NOT "timers" * question: which module was most recently changed, such that they are no-longer compatible? answer: - zone.js https://github.com/angular/zone.js/blob/master/dist/zone-node.js https://github.com/angular/zone.js/commits/master/dist/zone-node.js note: 2 commits within the last 5 hours commits: https://github.com/angular/zone.js/tree/55f815017df6bbda23eb0d1f61795f6f0412f51e/dist/zone-node.js date: Aug 22, 2016, 10:29 AM PDT line: 54 code: `var timers = __webpack_require__(4);` https://github.com/angular/zone.js/tree/44c46fa5a615cfa3ca6ad9ea431e216ec6795bdf/dist/zone-node.js date: Sep 10, 2016, 9:04 AM PDT line: 664 code: `var timers = require('timers');` https://github.com/angular/zone.js/tree/15d298b877f9da819055dad9d97cd50195c9d9f5/dist/zone-node.js date: Sep 10, 2016, 9:05 AM PDT line: 670 code: `var timers = require('timers');` * workaround?: - write a wrapper module named "timers", which exports "timer"