on-error-resume-next
Advanced tools
Comparing version 2.0.2-main.1424ac8 to 2.0.2-main.46bfd29
{ | ||
"name": "on-error-resume-next", | ||
"version": "2.0.2-main.1424ac8", | ||
"version": "2.0.2-main.46bfd29", | ||
"description": "Run a function, synchronously or asynchronously, and ignore errors.", | ||
@@ -44,8 +44,8 @@ "files": [ | ||
"build": "tsup", | ||
"bump": "npm run bump:prod && npm run bump:dev && npm run bump:auditfix", | ||
"bump:auditfix": "npm audit fix || exit 0", | ||
"bump": "npm run bump:prod && npm run bump:dev", | ||
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.devDependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true", | ||
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.dependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true", | ||
"precommit": "npm run precommit:eslint && npm run precommit:typescript:production && npm run precommit:typescript:test", | ||
"precommit:eslint": "eslint ./src/", | ||
"precommit": "npm run precommit:eslint && npm run precommit:publint && npm run precommit:typescript:production && npm run precommit:typescript:test", | ||
"precommit:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src/", | ||
"precommit:publint": "publint", | ||
"precommit:typescript:production": "tsc --noEmit --project ./src/tsconfig.precommit.production.json", | ||
@@ -76,18 +76,19 @@ "precommit:typescript:test": "tsc --noEmit --project ./src/tsconfig.precommit.test.json", | ||
"devDependencies": { | ||
"@babel/preset-env": "^7.24.6", | ||
"@babel/preset-typescript": "^7.24.6", | ||
"@babel/preset-env": "^7.25.8", | ||
"@babel/preset-typescript": "^7.25.7", | ||
"@jest/globals": "^29.7.0", | ||
"@tsconfig/recommended": "^1.0.6", | ||
"@tsconfig/recommended": "^1.0.7", | ||
"@tsconfig/strictest": "^2.0.5", | ||
"@types/jest": "^29.5.12", | ||
"@types/node": "^20.12.13", | ||
"esbuild": "^0.21.4", | ||
"@types/jest": "^29.5.13", | ||
"@types/node": "^22.7.5", | ||
"esbuild": "^0.24.0", | ||
"jest": "^29.7.0", | ||
"prettier": "^3.2.5", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.4.5" | ||
"prettier": "^3.3.3", | ||
"publint": "^0.2.11", | ||
"tsup": "^8.3.0", | ||
"typescript": "^5.6.3" | ||
}, | ||
"dependencies": { | ||
"on-error-resume-next": "^2.0.2-main.1424ac8" | ||
"on-error-resume-next": "^2.0.2-main.46bfd29" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
27121
13