Socket
Socket
Sign inDemoInstall

helix-cli

Package Overview
Dependencies
20
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

14

cli.js
#! /usr/bin/env node
const { argv } = require('node:process');
const { parse, format, normalize, dirname } = require('node:path');
var findup = require('findup-sync');
const {
parse,
format,
normalize,
dirname,
path,
basename,
} = require('node:path');
const { writeFile, mkdir } = require('node:fs/promises');

@@ -25,4 +33,4 @@

const themeConfigPath = format({ root: './', base: 'theme.config.js' });
const config = require('./theme.config.js');
const themeConfigPath = findup('theme.config.js');
const config = require(themeConfigPath);
const themes = Object.entries(config.themes);

@@ -29,0 +37,0 @@ themes.forEach((theme) => {

{
"name": "helix-cli",
"version": "1.0.0",
"version": "1.0.1",
"description": "CLI Tools for the helix component library",

@@ -13,3 +13,6 @@ "main": "cli.js",

"author": "Alessandro Lettieri",
"license": "MIT"
"license": "MIT",
"dependencies": {
"findup-sync": "^5.0.0"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc