Skip to content

Commit 3e14f29

Browse files
committed
fix(deps): update to the latest version of the git plugin
1 parent 06d4cfd commit 3e14f29

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"dependencies": {
6363
"@form8ion/core": "^4.6.0",
64-
"@form8ion/git": "^2.0.0",
64+
"@form8ion/git": "^2.1.1",
6565
"@form8ion/overridable-prompts": "^1.1.0",
6666
"@form8ion/readme": "3.1.0",
6767
"@form8ion/results-reporter": "^1.1.0",

test/integration/features/step_definitions/vcs/git-steps.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Then(/^the base git files should not be present$/, async function () {
8888
Then('the ignores are defined in the gitignore', async function () {
8989
const gitIgnoreContent = await fs.readFile(`${process.cwd()}/.gitignore`, 'utf-8');
9090

91-
assert.include(gitIgnoreContent, `${this.vcsIgnoreDirectories.join('\n')}\n\n${this.vcsIgnoreFiles.join('\n')}`);
91+
assert.include(gitIgnoreContent, `${this.vcsIgnoreDirectories.join('\n')}\n${this.vcsIgnoreFiles.join('\n')}`);
9292
});
9393

9494
Then('the additional ignores are added to the gitignore', async function () {
@@ -100,7 +100,6 @@ Then('the additional ignores are added to the gitignore', async function () {
100100
101101
${this.existingVcsIgnoredFiles.join('\n')}
102102
${this.vcsIgnoreDirectories.join('\n')}
103-
104103
${this.vcsIgnoreFiles.join('\n')}`
105104
);
106105
});
@@ -115,6 +114,6 @@ Then('the gitignore file is unchanged', async function () {
115114
Then('the gitignore file is added', async function () {
116115
assert.equal(
117116
await fs.readFile(`${process.cwd()}/.gitignore`, 'utf-8'),
118-
`\n${this.vcsIgnoreDirectories.join('\n')}\n\n${this.vcsIgnoreFiles.join('\n')}`
117+
`${this.vcsIgnoreDirectories.join('\n')}\n${this.vcsIgnoreFiles.join('\n')}`
119118
);
120119
});

0 commit comments

Comments
 (0)