git checkout master
git fetch origin
git pull origin master
git checkout develop
git merge master
git checkout master
git merge --no-ff develop
git push origin master
npm start
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
var cleanUp = { | |
domains: [], | |
getDomains: async function() { | |
let results = null; | |
let page = 0 | |
do { | |
const response = await fetch(`https://prerender.io/api/cached-pages?page=${page}&pageSize=1000`); | |
const json = await response.json(); |
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
/* | |
Preprocessor Directives | |
======================= | |
// --- OMIT A SINGLE LINE ---------------------------------------------------- | |
log("This line will be excluded from the build"); // ## DEV ## | |
// --- OMIT A WHOLE BLOCK ---------------------------------------------------- |