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
This commit is contained in:
Matt Jeanes 2017-04-17 22:56:36 +01:00
commit e8f4422a3b
3 changed files with 2 additions and 3 deletions

View file

@ -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>

View file

@ -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/'
},