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

commandkit

Package Overview
Dependencies
Maintainers
1
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commandkit - npm Package Compare versions

Comparing version

to
0.0.6

6

CHANGELOG.md

@@ -7,2 +7,8 @@ # Change Log

## [0.0.6] - 2023-07-02
### Fixed
- Fixed a bug where wrong event names were being registered on Windows.
## [0.0.5] - 2023-07-02

@@ -9,0 +15,0 @@

3

dist/handlers/event-handler/EventHandler.js

@@ -18,4 +18,3 @@ "use strict";

for (const eventFolderPath of eventFolderPaths) {
const eventFolderPathChunks = eventFolderPath.replace('\\', '/').split('/');
const eventName = eventFolderPathChunks[eventFolderPathChunks.length - 1];
const eventName = eventFolderPath.replace(/\\/g, '/').split('/').pop();
const eventFilePaths = (0, get_paths_1.getFilePaths)(eventFolderPath).filter((path) => path.endsWith('.js') || path.endsWith('.ts'));

@@ -22,0 +21,0 @@ const eventObj = {

{
"name": "commandkit",
"version": "0.0.5",
"version": "0.0.6",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "license": "MIT",