@mrpelz/boilerplate-node 13.0.2 → 13.1.0

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
@@ -72,17 +72,19 @@ Feel free to change them in your project to use `yarn`, `pnpm` or something else
72
72
  * (GNU!) `make`, `sed`, `tmux` and `xargs` installed
73
73
  > This boilerplate uses `make` for task orchestration. In order to compose Makefiles from NPM-dependency artifacts, **GNU**-Make is a strict necessity.
74
74
  >
75
- > 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
75
+ > If you’re using macOS, install using `brew install make` and amend your `$PATH` to use GNU-Make by default (e.g. by putting
76
76
  > ```bash
77
77
  > PATH="$HOMEBREW_PREFIX/opt/make/libexec/gnubin:$PATH"
78
78
  > ```
79
- > to your `.zshrc`).
79
+ > into your `.zshrc`).
80
80
  * (GNU!) `ln` installed
81
- > 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
81
+ > 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.
82
+ >
83
+ > If you’re using macOS, install using `brew install coreutils` and amend your `$PATH` to use GNU-Coreutils by default (e.g. by putting
82
84
  > ```bash
83
85
  > PATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH"
84
86
  > ```
85
- > to your `.zshrc`).
87
+ > into your `.zshrc`).
86
88
 
87
89
  ### 1. Optionally Create Environment First
88
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrpelz/boilerplate-node",
3
- "version": "13.0.2",
3
+ "version": "13.1.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",