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

@quorum/schematics

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quorum/schematics - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

server-route/cloud-files/__routeParent__/__name@dasherize__/__name@dasherize__-patch.model.ts

2

package.json
{
"name": "@quorum/schematics",
"version": "0.0.2",
"version": "0.0.3",
"description": "A schematics Library for Quorum",

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

@@ -11,2 +11,10 @@ "use strict";

const prompt = require('prompt-sync')();
const cloudOrDt = prompt('Is this a Cloud or Dataterminal route? (enter "c" or "d") ');
let filesFolder = '';
if (cloudOrDt.toUpperCase() == "D") {
filesFolder = './dt-files';
}
else {
filesFolder = './cloud-files';
}
options.nameSingular = prompt('What is the name singular? ');

@@ -18,3 +26,3 @@ options.routeParent = prompt('What is the route parent? ');

options.tableName = prompt('What is the table name? ');
const templateSource = schematics_2.apply(schematics_2.url('./files'), [
const templateSource = schematics_2.apply(schematics_2.url(filesFolder), [
//filterTemplates(options),

@@ -21,0 +29,0 @@ schematics_2.template(Object.assign({}, stringUtils, options)),

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