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

custom-element-flow

Package Overview
Dependencies
Maintainers
1
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom-element-flow - npm Package Compare versions

Comparing version 1.0.72 to 1.0.73

15

bin/update.ts

@@ -26,10 +26,15 @@ #! /usr/bin/env node

const settingsData = await readFile(filePath.replace('.component.json', '.settings.ts'), 'utf-8');
const settingsObject = {
activeTab: "Main",
tabs: JSON.parse(settingsData),
};
const settingsObject = eval(settingsData);
const settings = settingsObject.settings;
console.log("SETTINGS", settings);
const res = await updateCustomElementSettings(appId, compId, settingsObject);
// const settingsObject = {
// activeTab: "Main",
// tabs: settingsData,
// };
// const res = await updateCustomElementSettings(appId, compId, settingsObject);
}),
);
};

@@ -13,3 +13,2 @@ #! /usr/bin/env node

import { readFile } from 'fs/promises';
import { updateCustomElementSettings } from '../src/services/app-service.js';
export const update = () => __awaiter(void 0, void 0, void 0, function* () {

@@ -26,8 +25,11 @@ const projectDir = process.cwd();

const settingsData = yield readFile(filePath.replace('.component.json', '.settings.ts'), 'utf-8');
const settingsObject = {
activeTab: "Main",
tabs: JSON.parse(settingsData),
};
const res = yield updateCustomElementSettings(appId, compId, settingsObject);
const settingsObject = eval(settingsData);
const settings = settingsObject.settings;
console.log("SETTINGS", settings);
// const settingsObject = {
// activeTab: "Main",
// tabs: settingsData,
// };
// const res = await updateCustomElementSettings(appId, compId, settingsObject);
})));
});
{
"name": "custom-element-flow",
"version": "1.0.72",
"version": "1.0.73",
"description": "My New Project description.",

@@ -5,0 +5,0 @@ "type": "module",

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