Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aomex/core

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aomex/core - npm Package Compare versions

Comparing version 0.0.24 to 0.0.25

6

CHANGELOG.md
# @aomex/core
## 0.0.25
### Patch Changes
- [`0e6ed2c`](https://github.com/aomex/aomex/commit/0e6ed2c611100dcfaafb6fb41357624ad9f5c67a) Thanks [@geekact](https://github.com/geekact)! - fix(core): skip absolute path and replace back slash to forward slash
## 0.0.24

@@ -4,0 +10,0 @@

10

dist/index.js

@@ -1541,9 +1541,13 @@ // src/utility/to-array.ts

patterns.map(async (pattern2) => {
pattern2 = path.posix.resolve(pattern2);
if (!path.isAbsolute(pattern2)) {
pattern2 = path.posix.resolve(pattern2);
}
pattern2 = pattern2.replace(/\\/g, path.posix.sep);
if (!hasMagic(pattern2, { magicalBraces: true })) {
const stats = await stat(pattern2);
if (!stats.isFile()) {
pattern2 = path.posix.resolve(
pattern2 = path.posix.join(
pattern2,
`./**/*.{ts,js,mts,mjs,cts,cjs}`
"**",
"*.{ts,js,mts,mjs,cts,cjs}"
);

@@ -1550,0 +1554,0 @@ }

{
"name": "@aomex/core",
"version": "0.0.24",
"version": "0.0.25",
"description": "",

@@ -5,0 +5,0 @@ "type": "module",

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