
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@laborx/gulp-trycatch
Advanced tools
Provides wrapper for handling errors inside series
and paralles
tasks by allowing to set catchTask
and finallyTask
.
import { tryCatchTaskWrapper } from "@laborx/gulp-trycatch";
export function failTask() {
throws new Error("Cannot finish task in some cases")
}
export function cleanupTask() {
// do some cleanup work that should be done it either way, for example, server port closing or file deletion
}
function observeOptionalErrorFunc(err: any) {
console.error(`Found error during running task ${err}`)
}
// `sureTask` will always execute `cleanupTask` either `failTask` function throws or not
export const sureTask = tryCatchTaskWrapper(failTask, cleanupTask, observeOptionalErrorFunc, { silent: false })
You can pass optional configuration:
silent
- if false
then an error will be propagated and rethrown and sureTask
will eventually fail, if true
then sureTask
will succeed.FAQs
Provides gulp wrapper for intercepting errors in tasks
We found that @laborx/gulp-trycatch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.