@meistrari/mise-en-place 2.10.3 → 2.10.5

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/Makefile CHANGED
@@ -23,6 +23,7 @@ mise-en-place: .editorconfig ## Setup the mise en place to start cooking
23
23
  help:
24
24
  @echo "Make tasks:"
25
25
  @grep -hE '^[%a-zA-Z_-]+:.*?## .*$$' Makefile $(MISE_EN_PLACE_INSTALL_DIR)/node_modules/$(_MISE_EN_PLACE_PACKAGE_NAME)/Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-17s\033[0m %s\n", $$1, $$2}'
26
+ @sed -nE 's/^([^:]+: )?([%a-zA-Z_-]+):.*##\s?(.*)/\2:## \3/p' Makefile $(MISE_EN_PLACE_INSTALL_DIR)/node_modules/$(_MISE_EN_PLACE_PACKAGE_NAME)/Makefile | awk 'BEGIN {FS = ":## "}; {if (length($$1) > max) max = length($$1); lines[NR] = $$1; descs[NR] = $$2; n = NR} END {for (i = 1; i <= n; i++) printf "\033[36m %-" max "s\033[0m %s\n", lines[i], descs[i]}'
26
27
  @echo ""
27
28
 
28
29
  # endregion
package/dist/cli/cli.mjs CHANGED
@@ -318,6 +318,9 @@ function handlePackageJsonScripts() {
318
318
  `);
319
319
  }
320
320
  function postinstall(args) {
321
+ if (process.env.CI) {
322
+ return;
323
+ }
321
324
  handleMakefileInitialSetup();
322
325
  handleTsConfig();
323
326
  handleEslintConfigFile();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/mise-en-place",
3
- "version": "2.10.3",
3
+ "version": "2.10.5",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",