Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 27f88dfb80 | |||
| 252a9015dc | |||
| 166007c668 |
@@ -63,3 +63,4 @@ OurUmbraco.Site/[Aa]ssets/js/app.min.js
|
||||
OurUmbraco.Site/App_Data/migrations/*.txt
|
||||
OurUmbraco.Site/apidocs/
|
||||
OurUmbraco.Site/App_Data/Documentation/
|
||||
build/tools/node*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
var gulp = require('gulp'),
|
||||
var gulp = require('gulp'),
|
||||
gutil = require('gulp-util'),
|
||||
sass = require('gulp-sass'),
|
||||
jshint = require('gulp-jshint'),
|
||||
@@ -10,7 +10,7 @@ var gulp = require('gulp'),
|
||||
imageMin = require('gulp-imagemin'),
|
||||
clean = require('gulp-clean'),
|
||||
svgmin = require('gulp-svgmin'),
|
||||
cmq = require('gulp-combine-media-queries');
|
||||
cmq = require('gulp-group-css-media-queries');
|
||||
rename = require('gulp-rename');
|
||||
|
||||
var settings = {
|
||||
@@ -57,7 +57,7 @@ gulp.task('css', function () {
|
||||
.pipe(sass())
|
||||
.on('error', gutil.log)
|
||||
.pipe(autoprefixer('last 1 version', 'ie 9', 'ios 7'))
|
||||
// .pipe(cmq({log: true}))
|
||||
.pipe(cmq({log: true}))
|
||||
.pipe(rename({suffix: '.min'}))
|
||||
.pipe(minifyCss())
|
||||
.pipe(gulp.dest(settings.build + '/assets/css'))
|
||||
|
||||
@@ -4,28 +4,33 @@
|
||||
"description": "Umbraco Our gulpjs config",
|
||||
"main": "gulpfile.js",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-util": "3.0.x",
|
||||
"gulp-watch": "0.6.x",
|
||||
"gulp-minify-css": "1.1.x",
|
||||
"gulp-sass": "^2.2.0",
|
||||
"gulp-combine-media-queries": "0.2.x",
|
||||
"gulp-imagemin": "0.6.x",
|
||||
"gulp-autoprefixer": "^3.1.0",
|
||||
"gulp-uglify": "^1.5.3",
|
||||
"gulp-jshint": "2.0.0",
|
||||
"gulp-concat": "2.2.x",
|
||||
"jshint-stylish": "0.2.x",
|
||||
"gulp-clean": "0.3.x",
|
||||
"gulp-svgmin": "0.4.x",
|
||||
"gulp-rename": "1.2.x"
|
||||
"gulp-clean": "*",
|
||||
"gulp-concat": "^2.6.0",
|
||||
"gulp-group-css-media-queries": "^1.1.0",
|
||||
"gulp-imagemin": "^3.0.2",
|
||||
"gulp-jshint": "^2.0.1",
|
||||
"gulp-minify-css": "^1.2.4",
|
||||
"gulp-rename": "*",
|
||||
"gulp-sass": "^2.3.2",
|
||||
"gulp-svgmin": "^1.2.2",
|
||||
"gulp-uglify": "^2.0.0",
|
||||
"gulp-util": "^3.0.7",
|
||||
"gulp-watch": "^4.3.9",
|
||||
"jshint": "^2.9.2",
|
||||
"jshint-stylish": "^2.2.0",
|
||||
"node-sass": "^3.8.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "gulp build --verbose"
|
||||
},
|
||||
"author": "umbraco",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/devdk/gulp-workflow.git"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
border: none !important;
|
||||
|
||||
padding: 20px;
|
||||
line-height: 1.5;
|
||||
|
||||
@include colorset(alertbar);
|
||||
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
button.button, .button, a.button {
|
||||
background: $color-blue;
|
||||
padding: 0 40px;
|
||||
height: 44px;
|
||||
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
||||
padding: 14px 40px;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
border-radius: 36px;
|
||||
@@ -15,7 +11,8 @@ button.button, .button, a.button {
|
||||
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-size: 1rem;
|
||||
line-height: 1;
|
||||
|
||||
margin: 0;
|
||||
|
||||
@@ -106,7 +103,7 @@ button.button, .button, a.button {
|
||||
|
||||
|
||||
&.large {
|
||||
font-size: 1.175rem;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,31 +1,39 @@
|
||||
.download.latest .dot {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.download {
|
||||
|
||||
.download .dot.progress {
|
||||
|
||||
.dot.progress {
|
||||
text-indent: .3rem;
|
||||
text-align: center;
|
||||
line-height: 2.8rem;
|
||||
}
|
||||
|
||||
.download .dot.progress .counter {
|
||||
font-size: 1.1rem;
|
||||
|
||||
.counter {
|
||||
font-size: 1.1rem;;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.latest {
|
||||
|
||||
|
||||
.dot {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.explain {
|
||||
flex-direction: column;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
flex-direction: row;
|
||||
|
||||
.changes {
|
||||
small {
|
||||
line-height: .5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.explain .changes small {
|
||||
line-height: .5rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.chart {
|
||||
@@ -33,100 +41,171 @@
|
||||
top: -4px;
|
||||
left: -8px;
|
||||
z-index: 1;
|
||||
|
||||
|
||||
.percentage {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 9px;
|
||||
left: 16px;
|
||||
font-size: 1.1rem;
|
||||
color: darken($color-our, 30%);
|
||||
}
|
||||
|
||||
|
||||
canvas {
|
||||
top: 1px;
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.chart .percentage {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 9px;
|
||||
left: 16px;
|
||||
font-size: 1.1rem;
|
||||
color: darken($color-our, 30%);
|
||||
}
|
||||
|
||||
.chart canvas {
|
||||
top: 1px;
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.chart {
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
left: -8px;
|
||||
z-index: 1;
|
||||
.get-release {
|
||||
|
||||
|
||||
i {
|
||||
font-size: 2.5rem;
|
||||
line-height: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.get-release {
|
||||
line-height: 1.5;
|
||||
padding: 3rem 0;
|
||||
margin: 0 0 3.5rem ;
|
||||
padding: 2.5rem 0;
|
||||
margin: 2.5rem 0;
|
||||
border-bottom: 1px solid darken(whitesmoke, 5%);
|
||||
}
|
||||
border-top: 1px solid darken(whitesmoke, 5%);
|
||||
|
||||
.get-release i {
|
||||
font-size: 2.5rem;
|
||||
line-height: 5rem;
|
||||
}
|
||||
|
||||
.get-release h3 {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: .3rem;
|
||||
color: $color-headline;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: .3rem;
|
||||
color: $color-headline;
|
||||
|
||||
.get-release h3 a {
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: $color-our;
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
|
||||
&:hover {
|
||||
color: $color-our;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
color: $color-headline;
|
||||
font-size: .95rem;
|
||||
line-height: 1.3;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
|
||||
small {
|
||||
font-size: .7rem;
|
||||
color: $color-text;
|
||||
}
|
||||
}
|
||||
|
||||
.get-release p {
|
||||
color: $color-headline;
|
||||
font-size: .95rem;
|
||||
line-height: 1.3;
|
||||
margin-bottom: .5rem;
|
||||
|
||||
|
||||
.release {
|
||||
min-height: 160px;
|
||||
|
||||
|
||||
&.zip {
|
||||
|
||||
|
||||
i {
|
||||
color: $color-headline;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.bin {
|
||||
|
||||
|
||||
i {
|
||||
color: rgba(#000, .4);
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
|
||||
h4 {
|
||||
font-size: .9rem;
|
||||
margin-bottom: .3rem;
|
||||
color: $color-headline;
|
||||
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
|
||||
&:hover {
|
||||
color: $color-our;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.col-sm-5 {
|
||||
padding-top: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.col-sm-1 {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.get-release small {
|
||||
font-size: .8rem;
|
||||
color: rgba($color-text, .6);
|
||||
|
||||
|
||||
.latest {
|
||||
|
||||
|
||||
.dot.big {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
|
||||
.explain {
|
||||
|
||||
|
||||
h4 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
font-size: 1.1rem;
|
||||
color: $color-text
|
||||
;
|
||||
}
|
||||
|
||||
.col-xs-12 {
|
||||
min-height: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.latest .dot.big {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
|
||||
.latest .explain h4 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
|
||||
.latest .explain p {
|
||||
font-size: 1.1rem;
|
||||
color: $color-text;
|
||||
}
|
||||
|
||||
.latest .explain .col-xs-12 {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// Single release page
|
||||
.release {
|
||||
.release{
|
||||
|
||||
|
||||
.markdown-syntax {
|
||||
|
||||
p, li, ul {
|
||||
|
||||
p, li, ul, a {
|
||||
color: $color-headline;
|
||||
font-size: .95rem;
|
||||
}
|
||||
@@ -137,7 +216,7 @@
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
a {
|
||||
text-decoration: underline;
|
||||
font-family: $font-family;
|
||||
}
|
||||
@@ -174,12 +253,12 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.releaseTable {
|
||||
|
||||
|
||||
.col-xs-3 {
|
||||
|
||||
|
||||
&:first-child {
|
||||
.progress {
|
||||
.top {
|
||||
@@ -203,7 +282,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Progress page
|
||||
.inprogress {
|
||||
|
||||
@@ -246,12 +324,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Roadmap page
|
||||
.plannedreleases {
|
||||
.dot.big {
|
||||
text-indent: 0;
|
||||
line-height: 3rem;
|
||||
line-height: 3rem;
|
||||
}
|
||||
.chart {
|
||||
top: 0px;
|
||||
@@ -265,185 +342,3 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.release-page .explain h2 {
|
||||
margin: 0;
|
||||
font-size: 2em;
|
||||
color: rgba(0,0,0,.8);
|
||||
}
|
||||
|
||||
.release-page .explain small {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.release-page .dot {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.release-page .dot.big {
|
||||
position: relative;
|
||||
text-indent: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.release-page .chart {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
top: initial;
|
||||
left: initial;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.release-page .chart p {
|
||||
vertical-align: middle;
|
||||
line-height: 3.7rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.release-page .chart canvas {
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.statuses ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
.statuses ul li {
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
.statuses li:before {
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
left: -25px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.release-progress-indicator {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.release-progress-action {
|
||||
flex: 1 1 auto;
|
||||
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.release-progress-version {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
|
||||
.release-section-group {
|
||||
flex: 1 1 100%;
|
||||
padding: 0;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
flex: 1 1 47%;
|
||||
padding: 0 3% 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.release-section-group:nth-child(even) {
|
||||
flex: 1 1 100%;
|
||||
padding: 0;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
flex: 1 1 47%;
|
||||
padding: 0 0 0 3%;
|
||||
}
|
||||
}
|
||||
|
||||
.release-section-action {
|
||||
height: 80px;
|
||||
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
.release-section code {
|
||||
overflow: auto;
|
||||
|
||||
background-color: #333;
|
||||
background-clip: padding-box;
|
||||
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
line-height: 1.4em;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
|
||||
|
||||
padding: 8px 10px 8px 10px;
|
||||
|
||||
width: auto;
|
||||
border-radius: 5px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.release-section + .release-section {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.release-section-group + .release-section-group {
|
||||
margin-top: 30px;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.release-page h2 {
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.release-page h3 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Other files
|
||||
.release-other-files {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.release-other-files h3 {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.release-other-files small {
|
||||
font-size: .8rem;
|
||||
color: rgba($color-text, .5);
|
||||
}
|
||||
|
||||
|
||||
.release-other-files .release {
|
||||
min-height: auto;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.release-other-files .release a {
|
||||
display: inline-block;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.release-other-files .release p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@@ -15,11 +15,6 @@
|
||||
@import 'playground';
|
||||
|
||||
|
||||
/**
|
||||
/* Utilities
|
||||
**/
|
||||
@import 'utilities/flexbox';
|
||||
|
||||
/**
|
||||
/* Elements
|
||||
**/
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
/*
|
||||
|
||||
Flexbox
|
||||
|
||||
*/
|
||||
|
||||
.flex { display: flex; }
|
||||
.flex-inline { display: inline-flex; }
|
||||
|
||||
.flex-column { flex-direction: column; }
|
||||
.flex-wrap { flex-wrap: wrap; }
|
||||
|
||||
.items-start { align-items: flex-start; }
|
||||
.items-end { align-items: flex-end; }
|
||||
.items-center { align-items: center; }
|
||||
.items-baseline { align-items: baseline; }
|
||||
.items-stretch { align-items: stretch; }
|
||||
|
||||
.self-start { align-self: flex-start; }
|
||||
.self-end { align-self: flex-end; }
|
||||
.self-center { align-self: center; }
|
||||
.self-baseline { align-self: baseline; }
|
||||
.self-stretch { align-self: stretch; }
|
||||
|
||||
.justify-start { justify-content: flex-start; }
|
||||
.justify-end { justify-content: flex-end; }
|
||||
.justify-center { justify-content: center; }
|
||||
.justify-between { justify-content: space-between; }
|
||||
.justify-around { justify-content: space-around; }
|
||||
|
||||
.content-start { align-content: flex-start; }
|
||||
.content-end { align-content: flex-end; }
|
||||
.content-center { align-content: center; }
|
||||
.content-between { align-content: space-between; }
|
||||
.content-around { align-content: space-around; }
|
||||
.content-stretch { align-content: stretch; }
|
||||
|
||||
.flx-i {
|
||||
flex: 1;
|
||||
}
|
||||
.flx-g0 {
|
||||
flex-grow: 0;
|
||||
}
|
||||
.flx-s0 {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.flx-b0 {
|
||||
flex-basis: 0%;
|
||||
}
|
||||
.flx-g1 {
|
||||
flex-grow: 1;
|
||||
}
|
||||
.flx-s1 {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
.flx-b1 {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
/* 1. Fix for Chrome 44 bug. https://code.google.com/p/chromium/issues/detail?id=506893 */
|
||||
.flex-auto {
|
||||
flex: 1 1 auto;
|
||||
min-width: 0; /* 1 */
|
||||
min-height: 0; /* 1 */
|
||||
}
|
||||
|
||||
.flex-none { flex: none; }
|
||||
@@ -1 +1 @@
|
||||
<svg height="50" viewBox="0 0 50 50" width="50" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h50v50H0z"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M35.89 30.054L25 40.944l-10.89-10.89M25 9v31.445"/></svg>
|
||||
<svg height="50" viewBox="0 0 50 50" width="50" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h50v50H0z"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M35.891 30.054L25 40.943l-10.89-10.89M25 9v31.445"/></svg>
|
||||
|
Before Width: | Height: | Size: 275 B After Width: | Height: | Size: 276 B |
@@ -1 +1 @@
|
||||
<svg height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><path d="M396.6 160l19.4 20.7L256 352 96 180.7l19.3-20.7L256 310.5"/></svg>
|
||||
<svg height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><path d="M396.6 160l19.4 20.7L256 352 96 180.7l19.3-20.7L256 310.5z"/></svg>
|
||||
|
Before Width: | Height: | Size: 162 B After Width: | Height: | Size: 163 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-281 286 36 30"><path fill="#98D768" d="M-267 316l8-5v-8l14-17h-36l14 17"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-281 286 36 30"><path fill="#98D768" d="M-267 316l8-5v-8l14-17h-36l14 17z"/></svg>
|
||||
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 131 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-281 286 36 30"><path fill="#191919" d="M-267 316l8-5v-8l14-17h-36l14 17"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-281 286 36 30"><path fill="#191919" d="M-267 316l8-5v-8l14-17h-36l14 17z"/></svg>
|
||||
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 131 B |
@@ -5,22 +5,22 @@
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderId="Head" runat="server">
|
||||
</asp:Content>
|
||||
|
||||
|
||||
<asp:Content ID="Content2" ContentPlaceHolderId="Main" runat="server">
|
||||
<umbraco:Macro ID="Macro6" Language="cshtml" runat="server">
|
||||
@{
|
||||
if(Request.Params["fromdownload"] != null) {
|
||||
var downloads = Model.ReleaseDownload.Where("Visible");
|
||||
var downloads = Model.ReleaseDownload.Where("Visible");
|
||||
if(downloads.Any())
|
||||
{
|
||||
var downloadIds = new List<int>();
|
||||
foreach (var item in downloads)
|
||||
{
|
||||
{
|
||||
downloadIds.Add(item.Id);
|
||||
}
|
||||
Response.Redirect("/ReleaseDownload?id=" + downloadIds.First(), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</umbraco:Macro>
|
||||
<%
|
||||
@@ -29,7 +29,7 @@
|
||||
var release = allReleases.First(x => x.version == currentPage.Name);
|
||||
var completedIssues = release.issues.Count(x => x.state == "Fixed");
|
||||
var totalIssues = release.issues.Count();
|
||||
var percentComplete = Math.Round(((double)100 / totalIssues) * completedIssues);
|
||||
var percentComplete = Math.Round(((double) 100/totalIssues)*completedIssues);
|
||||
var releaseDateParsed = DateTime.Now;
|
||||
if (release.releaseDate != string.Empty)
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
var releaseDate = release.releaseDate == "" ? "Not yet determined" : releaseDateParsed.ToString("dddd, MMMM d yyyy");
|
||||
|
||||
|
||||
|
||||
var umbracoHelper = new Umbraco.Web.UmbracoHelper(UmbracoContext.Current);
|
||||
var releaseContent = umbracoHelper.TypedContent(umbracoHelper.UmbracoContext.PageId);
|
||||
if (releaseContent != null)
|
||||
@@ -60,7 +60,7 @@
|
||||
<div class="sidebar-area">
|
||||
<div class="sidebar-content">
|
||||
<div class="content-wrapper">
|
||||
|
||||
|
||||
<nav>
|
||||
<ul class="level-1">
|
||||
<%
|
||||
@@ -102,113 +102,150 @@
|
||||
<div>
|
||||
<umbraco:Macro linkToCurrent="1" Alias="Breadcrumb" runat="server"></umbraco:Macro>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.release-page .explain h2 {
|
||||
margin-top: 12px;
|
||||
font-size: 2em;
|
||||
margin-bottom: .3rem;
|
||||
color: rgba(0,0,0,.8);
|
||||
}
|
||||
|
||||
<div class="explain flex items-center">
|
||||
.release-page .dot {
|
||||
border: none;
|
||||
}
|
||||
|
||||
<div class="release-progress-indicator flex flex-wrap items-center">
|
||||
.release-page .dot.big {
|
||||
position: relative;
|
||||
text-indent: 0;
|
||||
margin: 15px auto 0;
|
||||
}
|
||||
|
||||
<span class="dot big progress">
|
||||
.release-page .chart {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
top: initial;
|
||||
left: initial;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.release-page .chart p {
|
||||
vertical-align: middle;
|
||||
line-height: 3.7rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.release-page .chart canvas {
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.statuses ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
.statuses ul li {
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
.statuses li:before {
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
left: -25px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="row explain">
|
||||
<div class="col-sm-2">
|
||||
<span class="dot big progress">
|
||||
<div class="chart" data-percent="<%= percentComplete %>">
|
||||
<p><%= percentComplete %>%</p>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
<span class="release-progress-version flex flex-column">
|
||||
<h2>
|
||||
<strong><umbraco:Item ID="Item1" field="pageName" runat="server" /></strong>
|
||||
</h2>
|
||||
<small>Status: <span><%= release.released ? "Released" : "In Progress" %></span></small>
|
||||
<% if (release.released == false)
|
||||
{ %>
|
||||
<h3>
|
||||
|
||||
<span><%= percentComplete %>% complete</span>
|
||||
<span><%= 100 - percentComplete %>% in progress</span>
|
||||
</h3>
|
||||
<h3>Target release date: <span style="color:#5B5B5B"><%= releaseDate %></span></h3>
|
||||
<% } %>
|
||||
|
||||
<umbraco:Macro ID="Macro5" Language="cshtml" runat="server">
|
||||
@if(Model.HasValue("releaseNotes")) {
|
||||
<small><p>@Model.releaseNotes</p></small>
|
||||
}
|
||||
</umbraco:Macro>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
<h2>
|
||||
v<umbraco:Item ID="Item1" field="pageName" runat="server" />
|
||||
</h2>
|
||||
<small>Status: <span><%= release.released ? "Released" : "In Progress" %></span></small>
|
||||
<% if (release.released == false)
|
||||
{ %>
|
||||
<h3>
|
||||
|
||||
<span><%= percentComplete %>% complete</span>
|
||||
<span><%= 100 - percentComplete %>% in progress</span>
|
||||
</h3>
|
||||
<h3>Target release date: <span style="color:#5B5B5B"><%= releaseDate %></span></h3>
|
||||
<% } %>
|
||||
|
||||
<umbraco:Macro ID="Macro5" Language="cshtml" runat="server">
|
||||
@if(Model.HasValue("releaseNotes")) {
|
||||
<small><p>@Model.releaseNotes</p></small>
|
||||
}
|
||||
</umbraco:Macro>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<umbraco:Macro ID="Macro2" Language="cshtml" runat="server">
|
||||
@{
|
||||
var downloads = Model.ReleaseDownload.Where("Visible");
|
||||
var countIsOdd = ((downloads.Count() & 1) != 0) ? true : false;
|
||||
@{
|
||||
var downloads = Model.ReleaseDownload.Where("Visible");
|
||||
var countIsOdd = ((downloads.Count() & 1) != 0) ? true : false;
|
||||
if(downloads.Any())
|
||||
{
|
||||
<div class="get-release">
|
||||
|
||||
<div class="release-section flex flex-row flex-wrap">
|
||||
|
||||
<!-- Download button -->
|
||||
<div class="release-section-group">
|
||||
<h3>Download and install</h3>
|
||||
@foreach (var item in downloads)
|
||||
{
|
||||
if (item.IsFirst())
|
||||
{
|
||||
var numberOfDownloads = 0;
|
||||
int.TryParse(item.NumberOfDownloads, out numberOfDownloads);
|
||||
numberOfDownloads = numberOfDownloads + OurUmbraco.Our.Utils.GetReleaseDownloadCount(item.Id);
|
||||
<div class="release-section-action">
|
||||
<a class="button green" href="/ReleaseDownload?id=@item.Id" onclick="_gaq.push(['_trackEvent', 'Release', 'Download', '@item.Name']);">Download Umbraco @Model.Name</a>
|
||||
</div>
|
||||
<p>This is the main Umbraco download, generally you won't need anything else. You can find documentation under <strong>"Getting Started"</strong>.</p>
|
||||
<small>Downloaded @numberOfDownloads times - uploaded @item.UploadDate.ToString("D")</small>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
|
||||
<!-- NuGet installation -->
|
||||
@if(Model.HasNuGet) {
|
||||
<div class="release-section-group">
|
||||
<h3>Install by NuGet</h3>
|
||||
|
||||
<div class="release-section-action">
|
||||
<code>PM> Install-Package UmbracoCms -Version @Model.Name</code>
|
||||
|
||||
</div>
|
||||
<p>Installs Umbraco Cms in your Visual Studio ASP.NET project. To install Umbraco Cms, run the following command in the Package Manager Console. <a target="_blank" href="https://nuget.org/packages/UmbracoCms/@Model.Name">Read more on nuget.com</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="get-release row">
|
||||
@foreach (var item in downloads)
|
||||
{
|
||||
var background = item.IsFirst() ? "/images/releases/download.png" : "/media/2483095/download.png";
|
||||
var width = (item.IsLast() && countIsOdd) ? 895 : 380;
|
||||
var numberOfDownloads = 0;
|
||||
int.TryParse(item.NumberOfDownloads, out numberOfDownloads);
|
||||
numberOfDownloads = numberOfDownloads + OurUmbraco.Our.Utils.GetReleaseDownloadCount(item.Id);
|
||||
if(item.Name.Contains("WebPI") == false)
|
||||
{
|
||||
<div class="release @(item.IsFirst() == false ? "bin" : "zip") col-sm-1">
|
||||
<i class="icon-Download-alt"></i>
|
||||
</div>
|
||||
<div class="release @(item.IsFirst() == false ? "bin" : "zip") col-md-5">
|
||||
|
||||
<h3><a href="/ReleaseDownload?id=@item.Id" onclick="_gaq.push(['_trackEvent', 'Release', 'Download', '@item.Name']);">@item.Name</a></h3>
|
||||
@if(item.IsFirst())
|
||||
{
|
||||
<p>This is the main Umbraco download, generally you won't need anything else.</p>
|
||||
}
|
||||
<small>Downloaded @numberOfDownloads times - uploaded @item.UploadDate.ToString("D")</small>
|
||||
</div>
|
||||
} else {
|
||||
<div style="display: none;"><a href="/ReleaseDownload?id=@item.Id" onclick="_gaq.push(['_trackEvent', 'Release', 'Download', '@item.Name']);">@item.Name</a></div>
|
||||
}
|
||||
|
||||
</div>
|
||||
|
||||
}
|
||||
</div>
|
||||
}
|
||||
}
|
||||
}
|
||||
</umbraco:Macro>
|
||||
|
||||
<div class="row markdown-syntax">
|
||||
|
||||
<div class="col-md-5">
|
||||
|
||||
|
||||
<% if (release.releaseDescription != string.Empty && currentPage.HasValue("bodyText") == false)
|
||||
{ %>
|
||||
{ %>
|
||||
<span>
|
||||
<h2>Summary</h2>
|
||||
<p><span><%= release.releaseDescription %></span></p>
|
||||
</span>
|
||||
<% } %>
|
||||
|
||||
|
||||
<umbraco:Macro ID="Macro3" Language="cshtml" runat="server">
|
||||
@if(Model.HasValue("bodyText")) {
|
||||
<h2>Release notes</h2>
|
||||
@Model.BodyText
|
||||
}
|
||||
</umbraco:Macro>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Related changes from the issue tracker</h2>
|
||||
<div class="panel-wrapper">
|
||||
<div class="panel-left">
|
||||
@@ -227,10 +264,8 @@
|
||||
<li class="<%= issue.StateIcon() %>" title="<%= issue.state %>">
|
||||
<a href="http://issues.umbraco.org/issue/<%= issue.id %>" target="_blank"><%= issue.id %> - <%= issue.title %></a>
|
||||
</li>
|
||||
</ul>
|
||||
<% }
|
||||
}
|
||||
else { %>
|
||||
</ul>
|
||||
<% } } else { %>
|
||||
<p>No items to display</p>
|
||||
<% } %>
|
||||
</div>
|
||||
@@ -247,10 +282,8 @@
|
||||
<li class="<%= issue.StateIcon() %>" title="<%= issue.state %>">
|
||||
<a href="http://issues.umbraco.org/issue/<%= issue.id %>" target="_blank"><%= issue.id %> - <%= issue.title %></a>
|
||||
</li>
|
||||
</ul>
|
||||
<% }
|
||||
}
|
||||
else { %>
|
||||
</ul>
|
||||
<% } } else { %>
|
||||
<p>No items to display</p>
|
||||
<% } %>
|
||||
</div>
|
||||
@@ -267,20 +300,18 @@
|
||||
<li class="<%= issue.StateIcon() %>" title="<%= issue.state %>">
|
||||
<a href="http://issues.umbraco.org/issue/<%= issue.id %>" target="_blank"><%= issue.id %> - <%= issue.title %></a>
|
||||
</li>
|
||||
</ul>
|
||||
<% }
|
||||
}
|
||||
else { %>
|
||||
</ul>
|
||||
<% } } else { %>
|
||||
<p>No items to display</p>
|
||||
<% } %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- col-md-5 -->
|
||||
|
||||
|
||||
<div class="col-md-5 col-md-offset-2">
|
||||
|
||||
<h2>Getting started</h2>
|
||||
@@ -296,52 +327,26 @@
|
||||
<p>You'll find our über active community working hard to help each other at Our Umbraco: <a href="http://our.umbraco.org">http://our.umbraco.org</a></p>
|
||||
<h2>Upgrading from older versions</h2>
|
||||
<p>Make sure to read the <a href="http://our.umbraco.org/documentation/Installation/Upgrading/">upgrade instructions</a> before you attempt an upgrade.</p>
|
||||
|
||||
|
||||
<umbraco:Macro ID="Macro4" runat="server" Language="cshtml">
|
||||
<h2>Found a bug?</h2>
|
||||
<p>We're happy to help you with any problems you encounter, so please report them in <a href="http://issues.umbraco.org/issues/U4">the issue tracker</a> and use the “Affected versions” field to set it to @Model.Name. <br />Do a search first though, if the issue already exists, give it an extra vote.</p>
|
||||
|
||||
|
||||
@if(Model.HasValue("linkToChangeset")) {
|
||||
<h2>Source code</h2>
|
||||
<p>The source for <a href="@Model.LinkToChangeset">this specific release is available for download from the repository</a> (click the "ZIP" button).</p>
|
||||
}
|
||||
|
||||
<!-- Other files -->
|
||||
@{
|
||||
var downloads = Model.ReleaseDownload.Where("Visible");
|
||||
var countIsOdd = ((downloads.Count() & 1) != 0) ? true : false;
|
||||
if(downloads.Any())
|
||||
{
|
||||
|
||||
<div class="release-other-files">
|
||||
<h2>All files</h2>
|
||||
|
||||
@foreach (var item in downloads)
|
||||
{
|
||||
var background = item.IsFirst() ? "/images/releases/download.png" : "/media/2483095/download.png";
|
||||
var width = (item.IsLast() && countIsOdd) ? 895 : 380;
|
||||
var numberOfDownloads = 0;
|
||||
int.TryParse(item.NumberOfDownloads, out numberOfDownloads);
|
||||
numberOfDownloads = numberOfDownloads + OurUmbraco.Our.Utils.GetReleaseDownloadCount(item.Id);
|
||||
if(item.Name.Contains("WebPI") == false)
|
||||
{
|
||||
<div class="release @(item.IsFirst() == false ? "bin" : "zip")">
|
||||
<div><strong><a href="/ReleaseDownload?id=@item.Id" onclick="_gaq.push(['_trackEvent', 'Release', 'Download', '@item.Name']);">@item.Name</a></strong></div>
|
||||
@if(item.IsFirst())
|
||||
{
|
||||
<p>This is the main Umbraco download, generally you won't need anything else.</p>
|
||||
}
|
||||
<small>Downloaded @numberOfDownloads times - uploaded @item.UploadDate.ToString("D")</small>
|
||||
</div>
|
||||
} else {
|
||||
<div style="display: none;"><a href="/ReleaseDownload?id=@item.Id" onclick="_gaq.push(['_trackEvent', 'Release', 'Download', '@item.Name']);">@item.Name</a></div>
|
||||
}
|
||||
}
|
||||
|
||||
@if(Model.HasNuGet) {
|
||||
<h2>Also available on NuGet</h2>
|
||||
|
||||
<div class="nuget-badge">
|
||||
<a href="https://nuget.org/packages/UmbracoCms/@Model.Name">
|
||||
<p><code>PM> Install-Package UmbracoCms -Version @Model.Name</code></p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</umbraco:Macro>
|
||||
|
||||
</div><!-- col-md-5 col-md-offset-2 -->
|
||||
@@ -357,7 +362,7 @@
|
||||
</asp:Content>
|
||||
|
||||
<asp:Content ContentPlaceHolderId="EndScripts" runat="server">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/easy-pie-chart/2.1.4/jquery.easypiechart.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/easy-pie-chart/2.1.4/jquery.easypiechart.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
setTimeout(function () {
|
||||
$('.chart').easyPieChart({
|
||||
|
||||
@@ -3,32 +3,47 @@ SETLOCAL
|
||||
:: SETLOCAL is on, so changes to the path not persist to the actual user's path
|
||||
|
||||
SET release=%1
|
||||
ECHO Installing Npm NuGet Package
|
||||
|
||||
SET nuGetFolder=%CD%\..\packages\
|
||||
ECHO Configured packages folder: %nuGetFolder%
|
||||
SET toolsFolder=%CD%\tools\
|
||||
ECHO Current folder: %CD%
|
||||
|
||||
%CD%\..\.nuget\NuGet.exe install Npm.js -OutputDirectory %nuGetFolder% -Verbosity quiet
|
||||
SET nodeFileName=node-v4.5.0-win-x86.7z
|
||||
SET nodeExtractFolder=%toolsFolder%node.js.450
|
||||
IF NOT EXIST %nodeExtractFolder% (
|
||||
ECHO Downloading node.js
|
||||
powershell -Command "(New-Object Net.WebClient).DownloadFile('http://nodejs.org/dist/v4.5.0/%nodeFileName%', '%toolsFolder%\%nodeFileName%')"
|
||||
ECHO Extracting node.js
|
||||
%toolsFolder%\7za.exe x %toolsFolder%\%nodeFileName% -o%nodeExtractFolder% -aos > nul
|
||||
)
|
||||
FOR /f "delims=" %%A in ('dir %nodeExtractFolder%\node* /b') DO SET "nodePath=%nodeExtractFolder%\%%A"
|
||||
|
||||
for /f "delims=" %%A in ('dir %nuGetFolder%node.js.* /b') do set "nodePath=%nuGetFolder%%%A\"
|
||||
for /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') do set "npmPath=%nuGetFolder%%%A\tools\"
|
||||
SET nuGetFolder=%CD%\..\packages\
|
||||
FOR /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') DO SET "npmPath=%nuGetFolder%%%A\tools\"
|
||||
IF [%npmPath%] == [] GOTO :installnpm
|
||||
IF NOT [%npmPath%] == [] GOTO :build
|
||||
|
||||
REM Ensures that we look for the just downloaded NPM, not whatever the user has installed on their machine
|
||||
path=%npmPath%;%nodePath%
|
||||
:installnpm
|
||||
ECHO Downloading npm
|
||||
ECHO Configured packages folder: %nuGetFolder%
|
||||
ECHO Installing Npm NuGet Package
|
||||
%CD%\..\.nuget\NuGet.exe install Npm.js -OutputDirectory %nuGetFolder% -Verbosity quiet
|
||||
REM Ensures that we look for the just downloaded NPM, not whatever the user has installed on their machine
|
||||
FOR /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') DO SET "npmPath=%nuGetFolder%%%A\tools\"
|
||||
GOTO :build
|
||||
|
||||
ECHO %path%
|
||||
:build
|
||||
PATH=%npmPath%;%nodePath%
|
||||
SET buildFolder=%CD%
|
||||
|
||||
SET buildFolder=%CD%
|
||||
ECHO Change directory to %CD%\..\OurUmbraco.Client\
|
||||
CD %CD%\..\OurUmbraco.Client\
|
||||
|
||||
ECHO Change directory to %CD%\..\OurUmbraco.Client\
|
||||
CD %CD%\..\OurUmbraco.Client\
|
||||
ECHO Do npm install and the gulp build
|
||||
SET npm="%nodePath%\node.exe" "%npmPath%node_modules\npm\bin\npm-cli.js" %*
|
||||
%npm% cache clean
|
||||
%npm% install
|
||||
%npm% install -g install gulp -g
|
||||
gulp build
|
||||
|
||||
ECHO Do npm install and the gulp build
|
||||
call npm cache clean
|
||||
call npm install
|
||||
call npm install -g install gulp -g --quiet
|
||||
call gulp build
|
||||
|
||||
ECHO Move back to the build folder
|
||||
CD %buildFolder%
|
||||
ECHO Move back to the build folder
|
||||
CD %buildFolder%
|
||||
GOTO :EOF
|
||||
@@ -1,33 +1,49 @@
|
||||
@ECHO OFF
|
||||
SETLOCAL
|
||||
:: SETLOCAL is on, so changes to the path not persist to the actual user's path
|
||||
|
||||
|
||||
SET release=%1
|
||||
ECHO Installing Npm NuGet Package
|
||||
|
||||
SET nuGetFolder=%CD%\..\packages\
|
||||
ECHO Configured packages folder: %nuGetFolder%
|
||||
SET toolsFolder=%CD%\tools\
|
||||
ECHO Current folder: %CD%
|
||||
|
||||
%CD%\..\.nuget\NuGet.exe install Npm.js -OutputDirectory %nuGetFolder% -Verbosity quiet
|
||||
SET nodeFileName=node-v4.5.0-win-x86.7z
|
||||
SET nodeExtractFolder=%toolsFolder%node.js.450
|
||||
IF NOT EXIST %nodeExtractFolder% (
|
||||
ECHO Downloading node.js
|
||||
powershell -Command "(New-Object Net.WebClient).DownloadFile('http://nodejs.org/dist/v4.5.0/%nodeFileName%', '%toolsFolder%\%nodeFileName%')"
|
||||
ECHO Extracting node.js
|
||||
%toolsFolder%\7za.exe x %toolsFolder%\%nodeFileName% -o%nodeExtractFolder% -aos > nul
|
||||
)
|
||||
FOR /f "delims=" %%A in ('dir %nodeExtractFolder%\node* /b') DO SET "nodePath=%nodeExtractFolder%\%%A"
|
||||
|
||||
for /f "delims=" %%A in ('dir %nuGetFolder%node.js.* /b') do set "nodePath=%nuGetFolder%%%A\"
|
||||
for /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') do set "npmPath=%nuGetFolder%%%A\tools\"
|
||||
SET nuGetFolder=%CD%\..\packages\
|
||||
FOR /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') DO SET "npmPath=%nuGetFolder%%%A\tools\"
|
||||
IF [%npmPath%] == [] GOTO :installnpm
|
||||
IF NOT [%npmPath%] == [] GOTO :build
|
||||
|
||||
REM Ensures that we look for the just downloaded NPM, not whatever the user has installed on their machine
|
||||
path=%npmPath%;%nodePath%
|
||||
:installnpm
|
||||
ECHO Downloading npm
|
||||
ECHO Configured packages folder: %nuGetFolder%
|
||||
ECHO Installing Npm NuGet Package
|
||||
%CD%\..\.nuget\NuGet.exe install Npm.js -OutputDirectory %nuGetFolder% -Verbosity quiet
|
||||
REM Ensures that we look for the just downloaded NPM, not whatever the user has installed on their machine
|
||||
FOR /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') DO SET "npmPath=%nuGetFolder%%%A\tools\"
|
||||
GOTO :build
|
||||
|
||||
ECHO %path%
|
||||
:build
|
||||
PATH=%npmPath%;%nodePath%
|
||||
SET buildFolder=%CD%
|
||||
|
||||
SET buildFolder=%CD%
|
||||
ECHO Change directory to %CD%\..\OurUmbraco.Client\
|
||||
CD %CD%\..\OurUmbraco.Client\
|
||||
|
||||
ECHO Change directory to %CD%\..\OurUmbraco.Client\
|
||||
CD %CD%\..\OurUmbraco.Client\
|
||||
ECHO Do npm install and the gulp build
|
||||
SET npm="%nodePath%\node.exe" "%npmPath%node_modules\npm\bin\npm-cli.js" %*
|
||||
%npm% cache clean
|
||||
%npm% install
|
||||
%npm% install -g install gulp -g
|
||||
gulp
|
||||
|
||||
ECHO Do npm install and the gulp build
|
||||
call npm install
|
||||
call npm install -g install gulp -g --quiet
|
||||
call gulp
|
||||
|
||||
ECHO Move back to the build folder
|
||||
CD %buildFolder%
|
||||
ECHO Move back to the build folder
|
||||
CD %buildFolder%
|
||||
GOTO :EOF
|
||||