Socket
Socket
Sign inDemoInstall

grunt-cideploy

Package Overview
Dependencies
177
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.8 to 0.0.9

11

Gruntfile.js

@@ -27,11 +27,2 @@ /*

},
jshint: {
all: [
"Gruntfile.js",
"tasks/*.js"
],
options: {
jshintrc: ".jshintrc"
}
},
// Before generating any new files, remove any previously-created files.

@@ -42,3 +33,3 @@ clean: {

eslint: {
target: "**/*.js"
target: ["tasks/**/*.js"]
}

@@ -45,0 +36,0 @@ });

25

package.json
{
"name": "grunt-cideploy",
"description": "Reynaers Deployment Task",
"version": "0.0.8",
"version": "0.0.9",
"homepage": "",

@@ -16,8 +16,3 @@ "author": {

},
"licenses": [
{
"type": "MIT",
"url": "/blob/master/LICENSE-MIT"
}
],
"license": "MIT",
"engines": {

@@ -30,7 +25,8 @@ "node": ">= 0.8.0"

"devDependencies": {
"eslint": "^5.16.0",
"grunt": "^1.0.4",
"grunt-available-tasks": "git://github.com/RobinHerbots/grunt-available-tasks.git",
"grunt-bump": "^0.8.0",
"grunt-contrib-jshint": "^2.1.0",
"load-grunt-tasks": "^4.0.0",
"grunt-available-tasks": "git://github.com/RobinHerbots/grunt-available-tasks.git"
"grunt-eslint": "^21.1.0",
"load-grunt-tasks": "^5.1.0"
},

@@ -40,10 +36,9 @@ "dependencies": {

"grunt-contrib-clean": "^2.0.0",
"grunt-git": "^1.0.13",
"grunt-msbuild": "^1.0.1",
"grunt-git": "^1.0.14",
"grunt-msbuild": "^1.1.1",
"grunt-nuget": "git://github.com/RobinHerbots/grunt-nuget.git",
"grunt-prompt": "^1.3.3",
"grunt-sharepoint-list": "^1.0.4",
"grunt-webapppool": "^0.0.2",
"grunt-eslint": "^21.0.0",
"lodash": "^4.17.11"
"grunt-webapppool": "^0.0.3",
"lodash": "^4.17.15"
},

@@ -50,0 +45,0 @@ "keywords": [

@@ -30,2 +30,5 @@ # grunt-cideploy

after: function (grunt, options) { },
obtainProfile: function (tag) {
return tag.indexOf("Production") !== -1 ? "Production" : "Staging";
},
origin: "",

@@ -119,3 +122,12 @@ notifyInSharePoint: false,

```
#### obtainProfile
Default:
```
function (tag) {
return tag.indexOf("Production") !== -1 ? "Production" : "Staging";
},
```
This callback is used to determine the publishprofile to use depending the incoming tag description.
#### origin

@@ -122,0 +134,0 @@ Default: ""

@@ -52,2 +52,5 @@ /*

},
obtainProfile: function (tag) {
return tag.indexOf("Production") !== -1 ? "Production" : "Staging";
},
origin: "",

@@ -82,3 +85,3 @@ notifyInSharePoint: false,

grunt.option("profile", tag.indexOf("Production") !== -1 ? "Production" : "Staging");
grunt.option("profile", options.obtainProfile(tag));
grunt.option("totag", tag);

@@ -85,0 +88,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc