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

@monokle/types

Package Overview
Dependencies
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@monokle/types - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

6

CHANGELOG.md
# @monokle/types
## 0.3.2
### Patch Changes
- 0ce5665: added ScriptConfig dry-run type
## 0.3.1

@@ -4,0 +10,0 @@

16

dry-run.ts

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

export type DryRunConfigKind = 'kustomize' | 'helm';
export type DryRunConfigKind = 'kustomize' | 'helm' | 'script';

@@ -35,2 +35,10 @@ type Args = Array<Array<string>>;

interface ScriptConfig extends BaseConfig {
kind: 'script';
env?: {
[k: string]: unknown;
};
args?: Args;
}
export interface DryRunHelmConfig extends HelmConfig {

@@ -44,4 +52,8 @@ postRender?: Array<HelmConfig | Omit<DryRunKustomizeConfig, 'postRender'>>

export type DryRunConfig = DryRunKustomizeConfig | DryRunHelmConfig;
export interface DryRunScriptConfig extends ScriptConfig {
postRender?: Array<Omit<ScriptConfig, 'postRender'>>
}
export type DryRunConfig = DryRunKustomizeConfig | DryRunHelmConfig | DryRunScriptConfig;
export interface DryRunConfigObject<

@@ -48,0 +60,0 @@ T extends DryRunConfig = DryRunConfig

2

package.json
{
"name": "@monokle/types",
"version": "0.3.1",
"version": "0.3.2",
"types": "./index.d.ts",

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

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