New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

koishi

Package Overview
Dependencies
Maintainers
1
Versions
356
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koishi - npm Package Compare versions

Comparing version 2.0.0-alpha.23 to 2.0.0-alpha.24

7

dist/worker.js

@@ -22,2 +22,5 @@ "use strict";

const configDir = path_1.dirname(configFile);
function isErrorModule(error) {
return error.code !== 'MODULE_NOT_FOUND' || error.requireStack && error.requireStack[0] !== __filename;
}
function tryCallback(callback) {

@@ -28,3 +31,3 @@ try {

catch (error) {
if (error.code !== 'MODULE_NOT_FOUND' && error.code !== 'ENOENT') {
if (isErrorModule(error) && error.code !== 'ENOENT') {
throw error;

@@ -53,3 +56,3 @@ }

catch (error) {
if (error.code !== 'MODULE_NOT_FOUND' || error.requireStack[0] !== __filename) {
if (isErrorModule(error)) {
throw error;

@@ -56,0 +59,0 @@ }

{
"name": "koishi",
"description": "A QQ bot framework based on CQHTTP",
"version": "2.0.0-alpha.23",
"version": "2.0.0-alpha.24",
"main": "dist/index.js",

@@ -46,3 +46,3 @@ "typings": "dist/index.d.ts",

"koishi-plugin-status": "^2.0.0-alpha.16",
"koishi-plugin-teach": "^1.0.0-alpha.22",
"koishi-plugin-teach": "^1.0.0-alpha.23",
"koishi-utils": "^1.1.0",

@@ -49,0 +49,0 @@ "prompts": "^2.3.2"

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc