Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@capraconsulting/cals-cli

Package Overview
Dependencies
Maintainers
4
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capraconsulting/cals-cli - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

lib/cli/commands/definition/dump-setup.d.ts

13

lib/cache.d.ts
import { Config } from './config';
interface CacheItem<T> {
cacheTime: number;
data: T;
}
export declare class CacheProvider {

@@ -7,3 +11,12 @@ constructor(config: Config);

private defaultCacheTime;
/**
* Retrieve cache if existent, ignoring the time.
*/
retrieveJson<T>(cachekey: string): CacheItem<T> | undefined;
/**
* Save data to cache.
*/
storeJson<T>(cachekey: string, data: T): void;
json<T>(cachekey: string, block: () => Promise<T>, cachetime?: number): Promise<T>;
}
export {};

2

lib/index.es.js

@@ -1,2 +0,2 @@

var version = "1.3.0";
var version = "1.4.0";

@@ -3,0 +3,0 @@ const VERSION = version;

@@ -5,3 +5,3 @@ 'use strict';

var version = "1.3.0";
var version = "1.4.0";

@@ -8,0 +8,0 @@ const VERSION = version;

{
"name": "@capraconsulting/cals-cli",
"version": "1.3.0",
"version": "1.4.0",
"description": "CLI for repeatable tasks in CALS",

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

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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