package cleanup

This commit is contained in:
Matthias Kretschmann 2020-05-25 12:21:33 +02:00
parent 5c9b209f9a
commit 43d9203e55
Signed by: m
GPG Key ID: 606EEEF3C479A91F
5 changed files with 679 additions and 365 deletions

View File

@ -28,7 +28,7 @@ echo "$(tput sgr0)" # reset
##
if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
gulp build --staging
npm run build:staging
##
@ -36,11 +36,11 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; th
##
elif [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
gulp build --production
npm run build
else
gulp build --production
npm run build
fi;

View File

@ -7,7 +7,6 @@ echo " Installing dependencies "
echo "============================================="
echo "$(tput sgr0)" # reset
npm install gulp@4.0.2 -g
npm install
# Travis does that automatically after selecting ruby

View File

@ -34,7 +34,7 @@ $brand-danger: #c9726a !default;
// Typography
//
$font-family-base: 'europa', 'Avenir Next', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif !default;
$font-family-monospace: Menlo, Monaco, Consolas, 'Courier New', monospace !default;
$font-family-monospace: menlo, monaco, consolas, 'Courier New', monospace !default;
$font-weight-light: 300 !default;
$font-weight-normal: 400 !default;

1028
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,7 @@
"scripts": {
"start": "gulp",
"build": "gulp build --production",
"build:staging": "gulp build --staging",
"test": "stylelint _src/_assets/styles/**/*.scss"
},
"browserslist": [
@ -44,10 +45,8 @@
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"acorn": "^7.2.0",
"browser-sync": "^2.26.7",
"critical": "^1.3.9",
"cross-spawn": "^7.0.2",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
@ -72,9 +71,9 @@
"gulp-zip": "^5.0.1",
"js-yaml": "^3.14.0",
"request": "^2.88.2",
"stylelint": "^10.0.0",
"stylelint": "^13.5.0",
"stylelint-config-bigchaindb": "^1.2.2",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-standard": "^20.0.0",
"uglify-es": "^3.3.9"
},
"engines": {