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

@dtinsight/create

Package Overview
Dependencies
Maintainers
7
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dtinsight/create - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

5

dist/cli.js

@@ -24,3 +24,6 @@ "use strict";

const useYarn = isUsingYarn();
(0, child_process_1.execSync)(`${useYarn ? "yarn create" : "npx"} create-react-app ${projectName} ${isTypeScript ? "--template typescript" : ""}`, {
const commandLine = useYarn
? "npx create-react-app"
: "yarn create react-app";
(0, child_process_1.execSync)(`${commandLine} ${projectName} ${isTypeScript ? "--template typescript" : ""}`, {
stdio: "inherit",

@@ -27,0 +30,0 @@ });

4

package.json
{
"name": "@dtinsight/create",
"version": "1.0.1",
"version": "1.0.2",
"description": "Create Molecule Application with create-react-app.",

@@ -36,2 +36,2 @@ "keywords": [

}
}
}
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