docs: move old quick start content into new local setup guide (#29651)

PR Close #29651
This commit is contained in:
jenniferfell
2019-04-02 00:12:55 -06:00
committed by Jason Aden
parent f78bda9ff0
commit 1c3ee41902
75 changed files with 388 additions and 750 deletions

View File

@ -16,7 +16,7 @@ const { CONTENTS_PATH } = require('../config');
function createPackage(tutorialName) {
const tutorialFilePath = `${CONTENTS_PATH}/getting-started/${tutorialName}.md`;
const tutorialFilePath = `${CONTENTS_PATH}/start/${tutorialName}.md`;
const tutorialFile = readFileSync(tutorialFilePath, 'utf8');
const examples = [];
tutorialFile.replace(/<code-(?:pane|example) [^>]*path="([^"]+)"/g, (_, path) => examples.push('examples/' + path));