@clerk/dev-cli
Advanced tools
Comparing version 0.0.2 to 0.0.3-canary.v1e4054c
{ | ||
"name": "@clerk/dev-cli", | ||
"description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository", | ||
"version": "0.0.2", | ||
"version": "0.0.3-canary.v1e4054c", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "type": "module", |
import { spawn } from 'node:child_process'; | ||
import { writeFile } from 'node:fs/promises'; | ||
import { join } from 'node:path'; | ||
import { mkdir, writeFile } from 'node:fs/promises'; | ||
import { dirname, join } from 'node:path'; | ||
@@ -29,2 +29,4 @@ import { CONFIG_FILE } from '../utils/getConfiguration.js'; | ||
await mkdir(dirname(CONFIG_FILE), { recursive: true }); | ||
await writeFile(CONFIG_FILE, JSON.stringify(configuration, null, 2), 'utf-8'); | ||
@@ -31,0 +33,0 @@ |
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
25064
614