declapract-typescript-ehmpathy 0.28.2 → 0.29.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.
@@ -10,6 +10,8 @@ const expectedIgnores = [
10
10
  '.serverless',
11
11
  '.terraform',
12
12
  '.terraform.lock',
13
+ '.yalc',
14
+ 'yalc.lock',
13
15
  'coverage',
14
16
  'dist',
15
17
  'node_modules',
@@ -6,5 +6,5 @@ changed () {
6
6
  }
7
7
 
8
8
  if changed 'package-lock.json'; then
9
- echo "📦 package-lock.json changed. Run npm install to update your locally installed dependencies."
9
+ echo "📦 package-lock.json changed. Run 'npm install' to update your locally installed dependencies."
10
10
  fi
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+
3
+ # https://github.com/wclr/yalc
4
+ if [ "$(npx yalc check)" ]; then
5
+ echo "✋ package.json has yalc references. Run 'npx yalc remove --all' to remove these local testing references."
6
+ fi
7
+
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ . "$(dirname -- "$0")/check.yalc.sh"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "declapract-typescript-ehmpathy",
3
3
  "author": "ehmpathy",
4
4
  "description": "declapract best practices declarations for typescript",
5
- "version": "0.28.2",
5
+ "version": "0.29.0",
6
6
  "main": "src/index.js",
7
7
  "repository": "ehmpathy/declapract-typescript-ehmpathy",
8
8
  "homepage": "https://github.com/ehmpathy/declapract-typescript-ehmpathy",