Skip to content

Commit

Permalink
v1.12.4
Browse files Browse the repository at this point in the history
## Version 1.12.4
### Fixes
- Updated the versions of Simple Git and NPM Log according to Snyk's recommendation. (#326)
  • Loading branch information
tmeyer2115 committed Apr 24, 2023
2 parents 91232ab + dbc88a0 commit 12a4b60
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 155 deletions.
215 changes: 68 additions & 147 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jambo",
"version": "1.12.3",
"version": "1.12.4",
"description": "A JAMStack implementation using Handlebars",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -36,9 +36,9 @@
"i18next-conv": "^10.0.2",
"lodash": "^4.17.15",
"merge-options": "^2.0.0",
"npmlog": "^4.1.2",
"npmlog": "^6.0.2",
"prompts": "^2.3.1",
"simple-git": "^2.40.0",
"simple-git": "^3.17.0",
"yargs": "^17.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/import/themeimporter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require('path');
const simpleGit = require('simple-git/promise');
const simpleGit = require('simple-git');
const git = simpleGit();
const { ThemeShadower } = require('../override/themeshadower');
const ThemeManager = require('../../utils/thememanager');
Expand Down
2 changes: 1 addition & 1 deletion src/commands/init/repositoryscaffolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const ThemeImporter = require('../import/themeimporter');

const fs = require('file-system');
const process = require('process');
const simpleGit = require('simple-git/promise');
const simpleGit = require('simple-git');
const SystemError = require('../../errors/systemerror');
const git = simpleGit();

Expand Down
2 changes: 1 addition & 1 deletion src/commands/upgrade/themeupgrader.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs-extra');
const path = require('path');
const simpleGit = require('simple-git/promise');
const simpleGit = require('simple-git');
const ThemeManager = require('../../utils/thememanager');
const { CustomCommand } = require('../../utils/customcommands/command');
const { CustomCommandExecuter } = require('../../utils/customcommands/commandexecuter');
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/suites/themeupgrader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const process = require('process');
const git = require('simple-git/promise')();
const git = require('simple-git')();
const { runInPlayground } = require('../setup/playground');
const ThemeManager = require('../../../src/utils/thememanager');
const path = require('path');
Expand Down
Loading

0 comments on commit 12a4b60

Please sign in to comment.