Fix systemjs config not being included

gulp lib copy runs too early, TypeScript is not yet compiled so it
doesn't get copied to lib, just including it in the root this time
pull/1389/head
Matt Jeanes 8 years ago
parent a23508adc9
commit e8f4422a3b

@ -15,7 +15,7 @@
<script src="@Url.Content("~/lib/jquery.js")?v="></script>
<script src="@Url.Content("~/lib/tether.js")?v="></script>
<script src="@Url.Content("~/lib/bootstrap.js")?v="></script>
<script src="@Url.Content("~/lib/systemjs.config.js")?v="></script>
<script src="@Url.Content("~/systemjs.config.js")?v="></script>
</head>
<body>

@ -55,8 +55,7 @@ var paths = {
'./bower_components/PACE/pace.js',
'./node_modules/bootstrap/dist/js/bootstrap.js',
'./node_modules/tether/dist/js/tether.js',
'./node_modules/angular2-jwt/angular2-jwt.js',
'./systemjs.config.js',
'./node_modules/angular2-jwt/angular2-jwt.js'
],
dest: './lib/'
},

Loading…
Cancel
Save