Socket
Socket
Sign inDemoInstall

@google/clasp

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@google/clasp - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

2

package.json
{
"name": "@google/clasp",
"version": "1.3.2",
"version": "1.3.3",
"description": "Develop Apps Script Projects locally",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -78,3 +78,3 @@ <h1 align="center">

Logs out the user by deleteing client credentials.
Logs out the user by deleting client credentials.

@@ -294,3 +294,3 @@ #### Examples

1. Create a file called `.claspignore` in your project's root directory.
1. Add patterns as if it were a .gitignore, and they will be excluded from `clasp push`.
1. Add patterns as if it were a `.gitignore`, and they will be excluded from `clasp push`.

@@ -297,0 +297,0 @@ A sample `.claspignore` could look like:

@@ -110,7 +110,2 @@ "use strict";

}
else if (path.extname(name) === '.gs') {
// rename file to js
console.log(utils_1.LOG.RENAME_FILE(fileNameWithoutExt + '.gs', fileNameWithoutExt + '.js'));
fs.renameSync(fileNameWithoutExt + '.gs', fileNameWithoutExt + '.js');
}
});

@@ -117,0 +112,0 @@ if (abortPush)

@@ -41,2 +41,3 @@ "use strict";

var cli_spinner_1 = require("cli-spinner");
var pluralize = require("pluralize");
var path = require('path');

@@ -48,3 +49,2 @@ var findParentDir = require('find-parent-dir');

var isOnline = require('is-online');
var pluralize = require("pluralize");
// Names / Paths

@@ -156,3 +156,2 @@ exports.PROJECT_NAME = 'clasp';

REDEPLOY_START: 'Updating deployment...',
RENAME_FILE: function (oldName, newName) { return "Renamed file: " + oldName + " -> " + newName; },
UNDEPLOYMENT_FINISH: function (deploymentId) { return "Undeployed " + deploymentId + "."; },

@@ -159,0 +158,0 @@ UNDEPLOYMENT_START: function (deploymentId) { return "Undeploy " + deploymentId + "..."; },

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