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
const api = require('./src/api'); | |
const routes = require('./src/routes'); | |
const exportPathMap = async () => { | |
const categories = await api.getCategories(); | |
const tags = categories | |
.map((category) => ({ | |
...category, | |
tags: category.tags.map((tag) => ({ ...tag, categorySlug: category.link })), | |
})) |
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
const exportPathMap = require('./exportPathMap'); | |
module.exports = { | |
exportPathMap, | |
exportTrailingSlash: true, | |
}; |
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
Downloading 649 deployment files... | |
Installing build runtime... | |
Build runtime installed: 551.377ms | |
Looking up build cache... | |
Build cache not found | |
Installing dependencies... | |
> core-js@2.6.11 postinstall /zeit/2dabd6d/node_modules/core-js | |
> node -e "try{require('./postinstall')}catch(e){}" | |
[96mThank you for using core-js ([94m https://github.com/zloirock/core-js [96m) for polyfilling JavaScript standard library![0m | |
[96mThe project needs your help! Please consider supporting of core-js on Open Collective or Patreon: [0m |
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
@media screen and (max-width: 540px) { | |
.et_pb_section .et_pb_row, | |
.et_pb_section.et_section_specialty .et_pb_row { | |
width: 90%; | |
} | |
} | |
@media screen and (max-width: 440px) { | |
.et_pb_section .et_pb_row, | |
.et_pb_section.et_section_specialty .et_pb_row { |
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
#!/bin/bash | |
files=$(git diff --cached --name-only | grep '\.jsx\?$') | |
# Prevent ESLint help message if no files matched | |
if [[ $files = "" ]] ; then | |
exit 0 | |
fi | |
failed=0 | |
for file in ${files}; do |
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
import gulp from 'gulp'; | |
import gulpif from 'gulp-if'; | |
import plumber from 'gulp-plumber'; | |
import inheritance from 'gulp-sass-inheritance'; | |
import filter from 'gulp-filter'; | |
import sass from 'gulp-sass'; | |
import sassGlob from 'gulp-sass-glob'; | |
import postcss from 'gulp-postcss'; | |
import autoprefixer from 'autoprefixer'; | |
import cmq from 'gulp-combine-mq'; |
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
ifconfig | grep broadcast | arp -a |
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
display: block; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
top: 0; | |
margin: auto; |