@wixc3/resolve-directory-context
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -10,3 +10,3 @@ "use strict"; | ||
for (const request of (0, language_helpers_1.concatIterables)(Object.values(dependencies), Object.values(devDependencies))) { | ||
if (request.startsWith('file:')) { | ||
if (request === null || request === void 0 ? void 0 : request.startsWith('file:')) { | ||
const linkTarget = request.slice(5); | ||
@@ -13,0 +13,0 @@ const directoryPath = host.join(rootPackage.directoryPath, linkTarget); |
{ | ||
"name": "@wixc3/resolve-directory-context", | ||
"description": "Helpers to get information about single/multi-package contexts", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"main": "./dist/index.js", | ||
@@ -18,12 +18,12 @@ "scripts": { | ||
"dependencies": { | ||
"minimatch": "^5.0.1", | ||
"type-fest": "^2.12.2" | ||
"minimatch": "^5.1.0", | ||
"type-fest": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@file-services/memory": "^6.0.0", | ||
"@file-services/path": "^6.0.0", | ||
"@file-services/memory": "^7.0.1", | ||
"@file-services/path": "^7.0.1", | ||
"@ts-tools/node": "^4.0.0", | ||
"@ts-tools/webpack-loader": "^4.0.0", | ||
"@types/chai": "^4.3.1", | ||
"@types/minimatch": "^3.0.5", | ||
"@types/chai": "^4.3.3", | ||
"@types/minimatch": "^5.1.2", | ||
"@types/mocha": "^9.1.1", | ||
@@ -34,6 +34,6 @@ "@types/node": "14", | ||
"mocha-play": "^3.1.0", | ||
"playwright-chromium": "^1.22.0", | ||
"playwright-chromium": "^1.26.0", | ||
"rimraf": "^3.0.2", | ||
"typescript": "~4.6.4", | ||
"webpack": "^5.72.1" | ||
"typescript": "~4.8.3", | ||
"webpack": "^5.74.0" | ||
}, | ||
@@ -40,0 +40,0 @@ "files": [ |
@@ -23,3 +23,3 @@ import type { PackageJson } from 'type-fest'; | ||
for (const request of concatIterables(Object.values(dependencies), Object.values(devDependencies))) { | ||
if (request.startsWith('file:')) { | ||
if (request?.startsWith('file:')) { | ||
const linkTarget = request.slice(5); | ||
@@ -26,0 +26,0 @@ const directoryPath = host.join(rootPackage.directoryPath, linkTarget); |
Sorry, the diff of this file is not supported yet
46218
+ Addedtype-fest@3.13.1(transitive)
- Removedtype-fest@2.19.0(transitive)
Updatedminimatch@^5.1.0
Updatedtype-fest@^3.0.0