New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bluecadet/cadet

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bluecadet/cadet - npm Package Compare versions

Comparing version 1.0.0-alpha.0 to 1.0.0-alpha.1

lib/init-site/init-site.js

7

bin/cmds/cmd-init-site.js

@@ -9,4 +9,7 @@

exports.handler = function (args) {
console.log('TODO: init-site')
console.log(args);
let InitSite = require('../../lib/init-site/init-site.js');
let initSite = new InitSite(args);
initSite.run();
}

@@ -9,4 +9,6 @@

exports.handler = function (args) {
console.log('TODO: new-site')
console.log(args);
let NewSite = require('../../lib/new-site/new-site.js');
let newSite = new NewSite(args);
newSite.run();
}

@@ -9,4 +9,6 @@

exports.handler = function (args) {
console.log('TODO: new-theme')
console.log(args);
let NewTheme = require('../../lib/new-theme/new-theme.js');
let newTheme = new NewTheme(args);
newTheme.run();
}

@@ -9,4 +9,6 @@

exports.handler = function (args) {
console.log('TODO: pull')
console.log(args);
let Pull = require('../../lib/pull/pull.js');
let pull = new Pull(args);
pull.run();
}

@@ -8,3 +8,2 @@ const os = require('os');

function CiUpdate(args) {

@@ -111,3 +110,2 @@ this.args = args;

module.exports = CiUpdate;
{
"name": "@bluecadet/cadet",
"version": "1.0.0-alpha.0",
"version": "1.0.0-alpha.1",
"description": "",

@@ -5,0 +5,0 @@ "bugs": {

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