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

chore: fix systemjs semicolons #1632

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/docs/_examples/quickstart/ts/systemjs.config.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -52,7 +52,7 @@
var config = {
map: map,
packages: packages
}
};

System.config(config);

Expand Down
4 changes: 2 additions & 2 deletions public/docs/_examples/systemjs.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -51,7 +51,7 @@
var config = {
map: map,
packages: packages
}
};

System.config(config);

Expand Down
2 changes: 1 addition & 1 deletion public/docs/_examples/systemjs.config.plunker.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
},
map: map,
packages: packages
}
};

System.config(config);

Expand Down