-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
489c417
commit b7d7f2f
Showing
19 changed files
with
55 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export MODE="production" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
assets/css | ||
assets/img/optimized | ||
dist | ||
build | ||
jekyll/assets/css | ||
jekyll/assets/img | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
# shellcheck disable=SC1091 | ||
|
||
source ./.env | ||
source ./bin/lib.sh | ||
|
||
log "🎬 Build start" | ||
|
||
imgBuild | ||
scssBuild | ||
jekyllBuild | ||
|
||
log "🏁 Build done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
#!/bin/bash | ||
# shellcheck disable=SC1091 | ||
|
||
source ./.env | ||
export MODE="development" | ||
source ./bin/lib.sh | ||
|
||
browsersyncStart & imgWatch & scssWatchDev & jekyllWatchDev | ||
log "🎬 DEV start" | ||
|
||
browsersyncStart & imgWatch & scssWatch & jekyllWatch |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
|
||
source ./bin/lib.sh | ||
|
||
scssBuildDev | ||
jekyllBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
source ./bin/lib.sh | ||
|
||
logCleanup | ||
distCleanup | ||
buildCleanup | ||
jekyllCleanup | ||
imgCleanup | ||
mkdir dist | ||
mkdir build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/bin/bash | ||
# shellcheck disable=SC1091 | ||
|
||
source ./.env | ||
MODE=development | ||
source ./bin/lib.sh | ||
|
||
logCleanup | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
|
||
source ./bin/lib.sh | ||
|
||
scssBuildDev | ||
scssBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
title: "GRO DSpaceCRIS Design 2017" | ||
destination: "dist" | ||
destination: "build" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,7 @@ | |
"name": "Mockup-Template", | ||
"version": "0.0.1", | ||
"description": "Lorem ipsum dolor sit amut.", | ||
"contributors": [ | ||
"Nils Windisch" | ||
], | ||
"contributors": ["Nils Windisch"], | ||
"homepage": "https://gro-dspacecris-design-2017.netlify.com/", | ||
"author": "Nils Windisch <[email protected]>", | ||
"devDependencies": { | ||
|
@@ -80,10 +78,8 @@ | |
} | ||
}, | ||
"scripts": { | ||
"predist": "./bin/predist.sh", | ||
"dist": "./bin/dist.sh", | ||
"prenetlify": "./bin/prenetlify.sh", | ||
"netlify": "./bin/netlify.sh", | ||
"prebuild": "./bin/prebuild.sh", | ||
"build": "./bin/build.sh", | ||
"predev": "./bin/predev.sh", | ||
"dev": "./bin/dev.sh", | ||
"sassdoc": "./bin/sassdoc.sh" | ||
|