File tree Expand file tree Collapse file tree 4 files changed +37
-18
lines changed
Expand file tree Collapse file tree 4 files changed +37
-18
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " aurelia-ts-boilerplate" ,
33 "title" : " Aurelia TS Boilerplate" ,
4- "version" : " 3.0.1 " ,
4+ "version" : " 3.0.2 " ,
55 "description" : " A starter kit for building a standard navigation-style app with Aurelia, typescript and webpack." ,
66 "main" : " dist/app.js" ,
77 "scripts" : {
8+ "install:dev" : " npm i && npm run install:typings" ,
9+ "install:typings" : " ./node_modules/.bin/typings i" ,
810 "test" : " cross-env NODE_ENV=test TS_NODE_PROJECT=tsconfig.tsnode.json TS_NODE_FAST=true ts-node ./node_modules/karma/bin/karma start test/karma.conf.js" ,
911 "clean" : " npm cache clean && rimraf node_modules test/coverage dist" ,
1012 "clean:dist" : " rimraf dist" ,
4143 "postmobile:setup" : " npm run mobile:link" ,
4244 "mobile:link" : " node ./config/link-mobile.js" ,
4345 "mobile:build" : " npm run build:dev -- --env.platform mobile" ,
44- "mobile:release" : " npm run build:prod -- --env.platform mobile"
46+ "mobile:release" : " npm run build:prod -- --env.platform mobile" ,
47+ "ci:build:dev" : " npm run mobile:link && npm run mobile:build && npm run cordova:prepare && npm run cordova:build" ,
48+ "cordova:prepare" : " cd ./cordova && ./../node_modules/.bin/cordova prepare" ,
49+ "cordova:build" : " cd ./cordova && ./../node_modules/.bin/cordova build"
4550 },
4651 "repository" : {
4752 "type" : " git" ,
Original file line number Diff line number Diff line change 55 <title >
66 <%= htmlWebpackPlugin .options .title %>
77 </title >
8+ <meta charset =" utf-8" >
89 <meta name =" viewport" content =" width=device-width, initial-scale=1" >
10+ <meta name =" msapplication-tap-highlight" content =" no" />
911 <meta name =" description" content =" <%= htmlWebpackPlugin.options.description %>" >
1012 <meta name =" version" content =" <%= htmlWebpackPlugin.options.version %>" >
1113 <meta name =" author" content =" <%= htmlWebpackPlugin.options.author %>" >
1214
13- <% if (htmlWebpackPlugin .options .platform === ' mobile' ) { % >
14- <!-- Cordova -->
15- < script src= " cordova.js" >< / script>
16- < % } %>
1715 <% if (htmlWebpackPlugin .options .platform === ' web' ) { % >
18- < base href= " <%= htmlWebpackPlugin.options.baseUrl %>" >
16+ < base href= " <%= htmlWebpackPlugin.options.baseUrl %>" >
1917 < % } %>
2018</head >
2119
22- <body aurelia-app =" main" >
23- <div class =" splash" >
24- <div class =" message" ><% - htmlWebpackPlugin .options .title %> </div >
25- <i class =" fa fa-spinner fa-spin" ></i >
20+ <body >
21+ <div aurelia-app =" main" >
22+ <div class =" splash" >
23+ <div class =" message" ><% - htmlWebpackPlugin .options .title %> </div >
24+ <i class =" fa fa-spinner fa-spin" ></i >
25+ </div >
2626 </div >
2727
28+ <% if (htmlWebpackPlugin .options .platform === ' mobile' ) { % >
29+ <!-- Cordova -->
30+ < script src= " cordova.js" >< / script>
31+ < % } %>
32+
2833 <% if (htmlWebpackPlugin .options .ENV === ' development' ) { % >
2934 <!-- Webpack Dev Server reload -->
3035 < script src= " /webpack-dev-server.js" >< / script>
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ section {
5959
6060/* animate page transitions */
6161section .au-enter-active {
62- -webkit-animation : fadeIn 0.5 s ;
63- animation : fadeIn 0.5 s ;
62+ -webkit-animation : fadeIn 0.3 s ;
63+ animation : fadeIn 0.3 s ;
6464}
6565section .au-leave-active {
66- -webkit-animation : fadeOut 0.5 s ;
67- animation : fadeOut 0.5 s ;
66+ -webkit-animation : fadeOut 0.3 s ;
67+ animation : fadeOut 0.3 s ;
6868}
6969
7070div .au-stagger {
@@ -78,8 +78,8 @@ div.au-stagger {
7878}
7979
8080.card-container.au-enter-active {
81- -webkit-animation : fadeIn 2 s ;
82- animation : fadeIn 2 s ;
81+ -webkit-animation : fadeIn 1 s ;
82+ animation : fadeIn 1 s ;
8383}
8484
8585.card {
Original file line number Diff line number Diff line change 1+ html {
2+ overflow : hidden ;
3+ -ms-content-zooming : none ;
4+ }
5+ @-ms-viewport {
6+ width : device- width;
7+ height : device- height;
8+ }
9+
110body {
211 margin : 0 ;
3- }
12+ }
You can’t perform that action at this time.
0 commit comments