Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit ffbdcd2

Browse files
Foxandxsswardbell
authored andcommitted
chore: fix systemjs semicolons
closes #1632
1 parent 070cb5a commit ffbdcd2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

public/docs/_examples/quickstart/ts/systemjs.config.1.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
// Bundled (~40 requests):
4242
function packUmd(pkgName) {
4343
packages['@angular/'+pkgName] = { main: pkgName + '.umd.js', defaultExtension: 'js' };
44-
};
44+
}
4545

4646
// Most environments should use UMD; some (Karma) need the individual index files
4747
var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
@@ -52,7 +52,7 @@
5252
var config = {
5353
map: map,
5454
packages: packages
55-
}
55+
};
5656

5757
System.config(config);
5858

public/docs/_examples/systemjs.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
// Bundled (~40 requests):
4141
function packUmd(pkgName) {
4242
packages['@angular/'+pkgName] = { main: pkgName + '.umd.js', defaultExtension: 'js' };
43-
};
43+
}
4444

4545
// Most environments should use UMD; some (Karma) need the individual index files
4646
var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
@@ -51,7 +51,7 @@
5151
var config = {
5252
map: map,
5353
packages: packages
54-
}
54+
};
5555

5656
System.config(config);
5757

public/docs/_examples/systemjs.config.plunker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
map: map,
6868
packages: packages
69-
}
69+
};
7070

7171
System.config(config);
7272

0 commit comments

Comments
 (0)