@mrpelz/boilerplate-preact 13.0.2 → 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.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. 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
- > In order to compose Makefiles from NPM-dependency artifacts, *GNU*-Make is a strict necessity. If you’re using macOS, install using `brew install make` and amend your `$PATH` to use GNU-Make by default (e.g. by putting
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
- > to your `.zshrc`).
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. If you’re using macOS, install using `brew install coreutils` and amend your `$PATH` to use GNU-Coreutils by default (e.g. by putting
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
- > to your `.zshrc`).
90
+ > into your `.zshrc`).
89
91
 
90
92
  ### 1. Optionally Create Environment First
91
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrpelz/boilerplate-preact",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",