@orxataguy/tyr 1.0.10-beta.0 → 1.0.10-beta.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.
Files changed (1) hide show
  1. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orxataguy/tyr",
3
- "version": "1.0.10-beta.0",
3
+ "version": "1.0.10-beta.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tyr": "./bin/tyr.js"
@@ -18,7 +18,7 @@
18
18
  "test:watch": "vitest",
19
19
  "test:ui": "vitest --ui",
20
20
  "test:coverage": "vitest run --coverage",
21
- "prepare": "node -e \"const{existsSync}=require('fs'),cp=require('child_process'),p=require('path');if(!process.env.CI&&existsSync('.git')){const b=p.join('node_modules','.bin','husky'+(process.platform==='win32'?'.cmd':''));cp.execSync(b,{stdio:'inherit',shell:process.platform==='win32'});}\"",
21
+ "prepare": "node -e \"const{existsSync}=require('fs'),cp=require('child_process'),p=require('path');if(!process.env.CI&&existsSync('.git')){const b=p.join('node_modules','.bin','husky'+(process.platform==='win32'?'.cmd':''));if(existsSync(b)){try{cp.execSync(b,{stdio:'inherit',shell:process.platform==='win32'})}catch(e){console.warn('husky not available, skipping')}}}\"",
22
22
  "release:patch": "npm version patch && git push --follow-tags",
23
23
  "release:minor": "npm version minor && git push --follow-tags",
24
24
  "release:major": "npm version major && git push --follow-tags",