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

create-treble-app

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-treble-app - npm Package Compare versions

Comparing version 0.0.18 to 0.0.19

5

package.json
{
"name": "create-treble-app",
"version": "0.0.18",
"version": "0.0.19",
"main": "index.js",

@@ -18,4 +18,5 @@ "license": "MIT",

"cross-spawn": "^7.0.3",
"enquirer": "^2.3.6"
"enquirer": "^2.3.6",
"fs-extra": "^10.0.0"
}
}

6

src/scripts/clone-template.js
import path, { dirname } from 'path';
import { fileURLToPath } from 'url';
import fs from 'fs';
import fs from 'fs-extra';
import * as messages from '../messages/index.js';

@@ -71,4 +71,4 @@ import spawn from 'cross-spawn';

if (
!fs.pathExistsSync(path.join(outputDir, '.gitignore')) &&
fs.pathExistsSync(path.join(outputDir, 'gitignore'))
!fs.existsSync(path.join(outputDir, '.gitignore')) &&
fs.existsSync(path.join(outputDir, 'gitignore'))
) {

@@ -75,0 +75,0 @@ await fs.move(

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