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

sao

Package Overview
Dependencies
Maintainers
2
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sao - npm Package Compare versions

Comparing version 0.20.7 to 0.20.8

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [Version 0.20.8](https://github.com/egoist/sao/releases/tag/v0.20.8) (2017-8-1)
### New features
- support private git repos: [`c4e91d4`](https://github.com/egoist/sao/commit/c4e91d4)
[...full changes](https://github.com/egoist/sao/compare/v0.20.7...v0.20.8)
## [Version 0.20.7](https://github.com/egoist/sao/releases/tag/v0.20.7) (2017-8-1)

@@ -2,0 +10,0 @@

4

lib/download.js

@@ -7,7 +7,7 @@ 'use strict'

exports.repo = function(repo, folderName) {
exports.repo = function(repo, folderName, options) {
return new Promise((resolve, reject) => {
const dest = path.join(configUtils.reposDir, folderName)
$.rm('-rf', dest)
downloadRepo(repo, dest, err => {
downloadRepo(repo, dest, options, err => {
if (err) return reject(err)

@@ -14,0 +14,0 @@ resolve(dest)

@@ -26,3 +26,4 @@ 'use strict'

skipStore,
forceNpm
forceNpm,
clone
} = {}

@@ -58,3 +59,3 @@ ) {

event.emit('download:start')
yield download.repo(template, folderName)
yield download.repo(template, folderName, { clone })
event.emit('download:stop')

@@ -61,0 +62,0 @@

{
"name": "sao",
"version": "0.20.7",
"version": "0.20.8",
"description": "Futuristic project generator.",

@@ -30,3 +30,3 @@ "license": "MIT",

"devDependencies": {
"eslint-config-rem": "^3.1.0",
"eslint-config-rem": "^3.2.0",
"jest-cli": "^20.0.4",

@@ -57,3 +57,3 @@ "xo": "^0.18.2"

"dependencies": {
"cac": "^4.0.0",
"cac": "^4.2.0",
"chalk": "^2.0.1",

@@ -60,0 +60,0 @@ "co": "^4.6.0",

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