@gasket/plugin-git
Advanced tools
Comparing version 7.0.0-next.66 to 7.0.0-next.67
{ | ||
"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 @@ } |
11209
+ Added@gasket/utils@7.0.0-next.67(transitive)
- Removed@gasket/utils@7.0.0-next.66(transitive)
Updated@gasket/utils@7.0.0-next.67