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

@gasket/plugin-git

Package Overview
Dependencies
Maintainers
0
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gasket/plugin-git - npm Package Compare versions

Comparing version 7.0.0-next.66 to 7.0.0-next.67

6

package.json
{
"name": "@gasket/plugin-git",
"version": "7.0.0-next.66",
"version": "7.0.0-next.67",
"description": "Adds git support to your application",

@@ -43,3 +43,3 @@ "main": "lib/index.js",

"dependencies": {
"@gasket/utils": "7.0.0-next.66"
"@gasket/utils": "7.0.0-next.67"
},

@@ -70,3 +70,3 @@ "devDependencies": {

},
"gitHead": "73d57d790d06eaf7d75c74bd89a9505f49be73ea"
"gitHead": "a18369e46ce5322ac965ae0dff22c2fca99d5997"
}

@@ -53,4 +53,4 @@ # @gasket/plugin-git

```js
module.exports = {
id: 'gasket-plugin-example',
export default {
name: 'gasket-plugin-example',
hooks: {

@@ -61,13 +61,13 @@ create(gasket, createContext) {

// See if `gitignore` is on the create context
if(gitignore) {
if(gitignore) {
// ignore a single file
gitignore.add('file-to-be-ignored.js');
// ignore wildcard rules
gitignore.add('*.tmp');
// ignore multiple files and/or directories
gitignore.add(['file1.js', 'dir2/']);
// add an ignore under a category
// add an ignore under a category
gitignore.add('node_modules', 'dependencies');

@@ -74,0 +74,0 @@ }

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