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

zenstack

Package Overview
Dependencies
Maintainers
1
Versions
308
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zenstack - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

2

package.json

@@ -5,3 +5,3 @@ {

"description": "ZenStack CLI and Language Tools",
"version": "0.1.7",
"version": "0.1.8",
"engines": {

@@ -8,0 +8,0 @@ "vscode": "^1.56.0"

@@ -13,4 +13,4 @@ import { Context } from './types';

async generate(context: Context) {
if (!fs.existsSync(context.outDir)) {
fs.mkdirSync(context.outDir);
if (fs.existsSync(context.outDir)) {
fs.rmSync(context.outDir, { force: true, recursive: true });
}

@@ -51,3 +51,16 @@

execSync(`npx tsc -p "${path.join(context.outDir, 'tsconfig.json')}"`);
try {
execSync(
`npx tsc -p "${path.join(context.outDir, 'tsconfig.json')}"`,
{ encoding: 'utf-8' }
);
} catch {
console.error(
colors.red(
'Something went wrong, generated runtime code failed to compile...'
)
);
return;
}
console.log(colors.blue(' ✔️ Typescript source files transpiled'));

@@ -54,0 +67,0 @@

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