mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Add 'npm test' for mac
This commit is contained in:
@ -59,7 +59,7 @@ function transpile(fileNames, options) {
|
||||
console.log("Watching for changes...");
|
||||
fs.watch(".", { persistent: true, recursive: true, encoding: "utf8" }, function (event, file) {
|
||||
try {
|
||||
if (isTS(file) && !isDTS(file)) {
|
||||
if (isTS(file) && !isDTS(file) && file.indexOf("platforms/android/") < 0 && file.indexOf("platforms/ios/") < 0) {
|
||||
var tsPath = file;
|
||||
var label = " - " + tsPath;
|
||||
console.time(label);
|
||||
|
Reference in New Issue
Block a user