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

grunt-deploy-to-env

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-deploy-to-env - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

10

lib/deploy.js

@@ -8,3 +8,3 @@ 'use strict';

wrench = require('wrench'),
ncp = require('ncp').ncp,
cpr = require('cpr').cpr,
tmpDir = path.join(__dirname, '../tmp');

@@ -84,3 +84,9 @@

mkdirp(deployPath, function () {
ncp(tmpDir, deployPath, copyCallback);
var copyOptions = {
deleteFirst: true,
overwrite: true,
confirm: true
};
cpr(tmpDir, deployPath, copyOptions, copyCallback);
});

@@ -87,0 +93,0 @@ },

4

package.json

@@ -12,8 +12,8 @@ {

"description": "Automated application modification and deployment for multiple environments.",
"version": "0.1.4",
"version": "0.1.5",
"dependencies": {
"cpr": "^1.0.0",
"grunt": "~0.4.0",
"grunt-text-replace": "~0.3.9",
"mkdirp": "0.5.0",
"ncp": "^2.0.0",
"underscore": "~1.8.0",

@@ -20,0 +20,0 @@ "vows": "~0.8.1",

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