wisdom 13.1.1 → 13.1.2

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/ChangeLog CHANGED
@@ -1,3 +1,9 @@
1
+ 2022.06.17, v13.1.2
2
+
3
+ fix:
4
+ - wisdom: private
5
+
6
+
1
7
  2022.05.24, v13.1.1
2
8
 
3
9
  feature:
package/lib/parser.js CHANGED
@@ -30,7 +30,7 @@ const check = (info) => (path) => {
30
30
  if (path.startsWith(':'))
31
31
  return true;
32
32
 
33
- const cleanPath = path.replace(/[!^:]/, '');
33
+ const cleanPath = path.replace(/[!^:-]/, '');
34
34
  const result = jessy(cleanPath, info);
35
35
 
36
36
  if (path.startsWith('-'))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "13.1.1",
3
+ "version": "13.1.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "configurable publish releases to github and npm",
6
6
  "homepage": "http://github.com/coderaiser/wisdom",