@clerk/dev-cli
Advanced tools
Comparing version 0.0.3 to 0.0.4-canary.v3e15c08
{ | ||
"name": "@clerk/dev-cli", | ||
"description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository", | ||
"version": "0.0.3", | ||
"version": "0.0.4-canary.v3e15c08", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "type": "module", |
import { readFile } from 'node:fs/promises'; | ||
import { dirname, join, posix, resolve } from 'node:path'; | ||
import { dirname, posix } from 'node:path'; | ||
import { globby } from 'globby'; | ||
import { getMonorepoRoot } from './getMonorepoRoot.js'; | ||
/** | ||
@@ -11,3 +13,3 @@ * Generates an object with keys of package names and values of absolute paths to the package folder. | ||
export async function getClerkPackages() { | ||
const monorepoRoot = resolve(join(import.meta.dirname, '..', '..', '..', '..')); | ||
const monorepoRoot = await getMonorepoRoot(); | ||
/** @type {Record<string, string>} */ | ||
@@ -14,0 +16,0 @@ const packages = {}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25294
615