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

directory-import

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

directory-import - npm Package Compare versions

Comparing version

to
3.3.0

18

package.json
{
"name": "directory-import",
"version": "3.2.1",
"version": "3.3.0",
"description": "Module will allow you to synchronously or asynchronously import (requires) all modules from the folder you specify",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [

@@ -11,7 +11,8 @@ "dist"

"scripts": {
"build": "rimraf ./dist && tsc && rimraf ./dist/test && rimraf ./dist/sample-directory && cp src/types.d.ts dist/src/types.d.ts",
"start": "npm run dist && node dist/index.js",
"build": "rimraf ./dist && tsup",
"start": "node dist/index.js",
"publish": "npm run build && npm publish",
"jest": "npm run build && jest --silent",
"jest:watcher": "jest --watchAll"
"jest": "jest --silent test/index.test.ts",
"jest:watcher": "jest --watchAll",
"jest:windows": "jest --silent test-windows/index.test.ts"
},

@@ -66,4 +67,5 @@ "repository": {

"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"typescript": "^5.2.2"
}
}
}

@@ -338,2 +338,13 @@ <!--suppress HtmlDeprecatedAttribute -->

### [3.3.0] - 2024-03-27
#### Fixed
- Now module can work with windows operating system!
- Enhance path handling and regular expressions for robustness
### [3.2.1] - 2024-01-25
#### Fixed
- Fixed a problem where the callerFilePath option was not working as expected for node.js versions greater than 20.
### [3.1.1] - 2023-11-17

@@ -340,0 +351,0 @@