From 81cb46a797e84aecfbf473a3e61a669d32573dd7 Mon Sep 17 00:00:00 2001 From: Devid Farinelli Date: Mon, 11 Feb 2019 03:48:05 +0100 Subject: [PATCH 1/3] docs(contributing): adds prebuild instructions --- CONTRIBUTING.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6cea68c5c44..8abfd3988b2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,6 +42,13 @@ npm link npm link webpack-cli ``` +* Bootstrap all the submodules before building for the first time + +```bash +npm run boostrap +npm run build +``` + * Run all the tests with: - `npm run test` @@ -65,6 +72,13 @@ yarn link yarn link webpack-cli ``` +* Bootstrap all the submodules before building for the first time + +```bash +yarn boostrap +yarn build +``` + * Run all the tests with: - `yarn test` From abac823d9feca80b1503af6b7fe7b8748e0ae670 Mon Sep 17 00:00:00 2001 From: Devid Farinelli Date: Fri, 1 Mar 2019 20:31:51 +0100 Subject: [PATCH 2/3] docs(contributing): improves formatting --- CONTRIBUTING.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8abfd3988b2..b489adc1852 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,10 +44,10 @@ npm link webpack-cli * Bootstrap all the submodules before building for the first time -```bash -npm run boostrap -npm run build -``` + ```bash + npm run boostrap + npm run build + ``` * Run all the tests with: - `npm run test` @@ -74,10 +74,10 @@ yarn link webpack-cli * Bootstrap all the submodules before building for the first time -```bash -yarn boostrap -yarn build -``` + ```bash + yarn boostrap + yarn build + ``` * Run all the tests with: - `yarn test` From c4583809eda211ac6de7a07261c905044a9ef0a2 Mon Sep 17 00:00:00 2001 From: Devid Farinelli Date: Sun, 3 Mar 2019 14:41:12 +0100 Subject: [PATCH 3/3] docs(contributing): fixes typo --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b489adc1852..a26708977bc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ npm link webpack-cli * Bootstrap all the submodules before building for the first time ```bash - npm run boostrap + npm run bootstrap npm run build ``` @@ -75,7 +75,7 @@ yarn link webpack-cli * Bootstrap all the submodules before building for the first time ```bash - yarn boostrap + yarn bootstrap yarn build ```