Skip to content

Commit fc44d33

Browse files
Merge branch 'master' of https://github.com/erikvullings/skeleton-navigation into erikvullings-master
2 parents 297e5da + 4423207 commit fc44d33

File tree

8 files changed

+14
-6
lines changed

8 files changed

+14
-6
lines changed
2.2 KB
Binary file not shown.

skeleton-typescript/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ build/reports
88
coverage
99
test/e2e/dist
1010
/typings
11+
/export

skeleton-typescript/build/bundles.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ module.exports = {
2929
"aurelia-logging-console",
3030
"bootstrap",
3131
"bootstrap/css/bootstrap.css!text",
32-
"fetch",
33-
"jquery"
32+
"fetch"
3433
],
3534
"options": {
3635
"inject": true,

skeleton-typescript/build/export.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
'config.js',
88
'favicon.ico',
99
'LICENSE',
10+
"jspm_packages/npm/[email protected]/js/browser/bluebird.min.js",
1011
'jspm_packages/system.js',
1112
'jspm_packages/system-polyfills.js',
1213
'jspm_packages/system-csp-production.js',

skeleton-typescript/config.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ System.config({
2727
"aurelia-templating-binding": "npm:[email protected]",
2828
"aurelia-templating-resources": "npm:[email protected]",
2929
"aurelia-templating-router": "npm:[email protected]",
30+
"bluebird": "npm:[email protected]",
3031
"bootstrap": "github:twbs/[email protected]",
3132
"fetch": "github:github/[email protected]",
3233
"font-awesome": "npm:[email protected]",
@@ -47,7 +48,7 @@ System.config({
4748
"vm-browserify": "npm:[email protected]"
4849
},
4950
"github:twbs/[email protected]": {
50-
"jquery": "npm:jquery@3.0.0"
51+
"jquery": "npm:jquery@2.2.4"
5152
},
5253
5354
"assert": "github:jspm/[email protected]",
@@ -174,6 +175,9 @@ System.config({
174175
"aurelia-path": "npm:[email protected]",
175176
"aurelia-task-queue": "npm:[email protected]"
176177
},
178+
179+
"process": "github:jspm/[email protected]"
180+
},
177181
178182
"base64-js": "npm:[email protected]",
179183
"child_process": "github:jspm/[email protected]",
@@ -188,9 +192,6 @@ System.config({
188192
189193
"util": "github:jspm/[email protected]"
190194
},
191-
192-
"process": "github:jspm/[email protected]"
193-
},
194195
195196
"assert": "github:jspm/[email protected]",
196197
"fs": "github:jspm/[email protected]",

skeleton-typescript/gulpfile.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
var gulp = require('gulp');
2+
13
// all gulp tasks are located in the ./build/tasks directory
24
// gulp configuration is in files in ./build directory
35
require('require-dir')('build/tasks');
6+
7+
gulp.task('default', ['watch']);

skeleton-typescript/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<i class="fa fa-spinner fa-spin"></i>
1717
</div>
1818

19+
<script src="jspm_packages/npm/[email protected]/js/browser/bluebird.min.js"></script>
1920
<script src="jspm_packages/system.js"></script>
2021
<script src="config.js"></script>
2122
<script>

skeleton-typescript/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"aurelia-templating-binding": "npm:aurelia-templating-binding@^1.0.0-rc.1.0.0",
7575
"aurelia-templating-resources": "npm:aurelia-templating-resources@^1.0.0-rc.1.0.0",
7676
"aurelia-templating-router": "npm:aurelia-templating-router@^1.0.0-rc.1.0.0",
77+
"bluebird": "npm:[email protected]",
7778
"bootstrap": "github:twbs/bootstrap@^3.3.6",
7879
"fetch": "github:github/fetch@^1.0.0",
7980
"font-awesome": "npm:[email protected]",

0 commit comments

Comments
 (0)