From 3a562f93ae442106f2c5cf81fe474fb6aba7b95d Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Sun, 11 Feb 2018 10:57:19 -0800 Subject: [PATCH 1/2] Improve wording --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 82714cc..77f2974 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ This tools assumes an archetype structure of: that has tasks for both production and development. Must have `name`, `description` fields. * A development sub-directory or independent repository containing dependencies - for development tasks only. - * `dev/package.json` - * `../ARCHETYPE-dev/package.json` + for development tasks only. One of the following should exist: + * `./dev` + * `../ARCHETYPE-dev` Assuming those exist, then the tool: @@ -38,7 +38,7 @@ Assuming those exist, then the tool: * Copies the root `package.json` * Removes `package.json:devDependencies` * Replaces `package.json:dependencies` with - `ARCHETYPE-dev/package.json:dependencies` + the root's `package.json:dependencies` * Updates things like the `name` field to represent `ARCHETYPE-dev` * Copies `README.md` to `ARCHETYPE-dev/README.md` From a6d931d5f428ef81fd6d0e14361a603462b5af05 Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Sun, 11 Feb 2018 11:00:48 -0800 Subject: [PATCH 2/2] improve wording --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 77f2974..20ed20e 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,8 @@ Assuming those exist, then the tool: * Modifies `ARCHETYPE-dev/package.json` as follows: * Copies the root `package.json` * Removes `package.json:devDependencies` - * Replaces `package.json:dependencies` with - the root's `package.json:dependencies` + * Replaces `package.json:dependencies` that were copied from root with + `ARCHTYPE-dev/package.json:dependencies` * Updates things like the `name` field to represent `ARCHETYPE-dev` * Copies `README.md` to `ARCHETYPE-dev/README.md`