chore: fix systemjs semicolons

closes #1632
This commit is contained in:
Foxandxss 2016-06-09 12:02:03 +02:00 committed by Ward Bell
parent 070cb5a193
commit ffbdcd2b9c
3 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@
// Bundled (~40 requests):
function packUmd(pkgName) {
packages['@angular/'+pkgName] = { main: pkgName + '.umd.js', defaultExtension: 'js' };
};
}
// Most environments should use UMD; some (Karma) need the individual index files
var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
@ -52,7 +52,7 @@
var config = {
map: map,
packages: packages
}
};
System.config(config);

View File

@ -40,7 +40,7 @@
// Bundled (~40 requests):
function packUmd(pkgName) {
packages['@angular/'+pkgName] = { main: pkgName + '.umd.js', defaultExtension: 'js' };
};
}
// Most environments should use UMD; some (Karma) need the individual index files
var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
@ -51,7 +51,7 @@
var config = {
map: map,
packages: packages
}
};
System.config(config);

View File

@ -66,7 +66,7 @@
},
map: map,
packages: packages
}
};
System.config(config);