@meistrari/mise-en-place 1.0.9 → 1.1.1

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
@@ -17,6 +17,6 @@ mise-en-place: .editorconfig ## Setup the mise en place to start cooking
17
17
 
18
18
  .PHONY: help
19
19
  help:
20
- @echo "Make tasks:\n"
20
+ @echo "Make tasks:"
21
21
  @grep -hE '^[%a-zA-Z_-]+:.*?## .*$$' Makefile ./node_modules/$(MISE_EN_PLACE_PACKAGE_NAME)/Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-17s\033[0m %s\n", $$1, $$2}'
22
22
  @echo ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/mise-en-place",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
package/tsconfig.json CHANGED
@@ -10,6 +10,8 @@
10
10
  "noPropertyAccessFromIndexSignature": false,
11
11
  "noUncheckedIndexedAccess": true,
12
12
  "noUnusedLocals": true,
13
- "noUnusedParameters": true
13
+ "noUnusedParameters": true,
14
+
15
+ "skipLibCheck": true
14
16
  }
15
17
  }