@mrpelz/boilerplate-preact 13.0.1 → 13.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,17 +75,19 @@ Feel free to change them in your project to use `yarn`, `pnpm` or something else
|
|
|
75
75
|
* (GNU!) `make`, `sed`, `tmux` and `xargs` installed
|
|
76
76
|
> This boilerplate uses `make` for task orchestration. In order to compose Makefiles from NPM-dependency artifacts, **GNU**-Make is a strict necessity.
|
|
77
77
|
>
|
|
78
|
-
>
|
|
78
|
+
> If you’re using macOS, install using `brew install make` and amend your `$PATH` to use GNU-Make by default (e.g. by putting
|
|
79
79
|
> ```bash
|
|
80
80
|
> PATH="$HOMEBREW_PREFIX/opt/make/libexec/gnubin:$PATH"
|
|
81
81
|
> ```
|
|
82
|
-
>
|
|
82
|
+
> into your `.zshrc`).
|
|
83
83
|
* (GNU!) `ln` installed
|
|
84
|
-
> Some config files cannot be natively extended and need to be symlinked to the boilerplate’s default. This ensures new defaults apply when the boilerplate is updated. In order to keep the project root portable across different developers’ environments, symlinks need to use relative paths, which unfortunately is only a feature in the `ln` utility from GNU-Coreutils.
|
|
84
|
+
> Some config files cannot be natively extended and need to be symlinked to the boilerplate’s default. This ensures new defaults apply when the boilerplate is updated. In order to keep the project root portable across different developers’ environments, symlinks need to use relative paths, which unfortunately is only a feature in the `ln` utility from GNU-Coreutils.
|
|
85
|
+
>
|
|
86
|
+
> If you’re using macOS, install using `brew install coreutils` and amend your `$PATH` to use GNU-Coreutils by default (e.g. by putting
|
|
85
87
|
> ```bash
|
|
86
88
|
> PATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH"
|
|
87
89
|
> ```
|
|
88
|
-
>
|
|
90
|
+
> into your `.zshrc`).
|
|
89
91
|
|
|
90
92
|
### 1. Optionally Create Environment First
|
|
91
93
|
|
|
@@ -176,7 +178,7 @@ make <target>
|
|
|
176
178
|
> ```
|
|
177
179
|
> to your `.zshrc`.
|
|
178
180
|
|
|
179
|
-
> **ℹ️ Good to know
|
|
181
|
+
> **ℹ️ Good to know**
|
|
180
182
|
>
|
|
181
183
|
> The boilerplate tries to handle “monorepos”.
|
|
182
184
|
> For the purpose of this ReadMe, “root package” is the package that contains NPM workspace definitions and the packages within those workspaces are called “sub packages”.
|
|
@@ -211,7 +213,7 @@ Run `commitlint` for the latest commit.
|
|
|
211
213
|
|
|
212
214
|
Run `tsc` to typecheck meta-files.
|
|
213
215
|
|
|
214
|
-
> **ℹ️ Good to know
|
|
216
|
+
> **ℹ️ Good to know**
|
|
215
217
|
>
|
|
216
218
|
> For the purpose of this ReadMe, “meta-file” means a file that is related to the tooling itself (e.g. configuring ESLint) and is not part of the application’s source code.
|
|
217
219
|
|