Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gengjiawen authored Apr 29, 2024
2 parents 897f767 + 25572bf commit ab3c0cc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [7.12.0](https://www.github.com/tabrindle/envinfo/compare/v7.11.1...v7.12.0) (2024-04-06)


### Features

* add docker-compose ([#253](https://www.github.com/tabrindle/envinfo/issues/253)) ([d1861f0](https://www.github.com/tabrindle/envinfo/commit/d1861f07991e8c4a154e9e0d4dc200be9ff36f79))
* update to webpack5 ([#248](https://www.github.com/tabrindle/envinfo/issues/248)) ([4715340](https://www.github.com/tabrindle/envinfo/commit/4715340388023be122c52a395def8b01815e5e4f))


### Bug Fixes

* delete old CI ([#247](https://www.github.com/tabrindle/envinfo/issues/247)) ([6ae3cda](https://www.github.com/tabrindle/envinfo/commit/6ae3cda9744342182f4e74fd7284bcc0d5536d20))

### [7.11.1](https://www.github.com/tabrindle/envinfo/compare/v7.11.0...v7.11.1) (2024-02-02)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "envinfo",
"version": "7.11.1",
"version": "7.12.0",
"description": "Info about your dev environment for debugging purposes",
"repository": "https://github.com/tabrindle/envinfo",
"author": "tabrindle@gmail.com",
Expand Down
8 changes: 8 additions & 0 deletions src/helpers/virtualization.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ module.exports = {
]).then(v => utils.determineFound('Docker', v[0], v[1]));
},

getDockerComposeInfo: () => {
utils.log('trace', 'getDockerComposeInfo');
return Promise.all([
utils.run('docker-compose --version').then(utils.findVersion),
utils.which('docker-compose'),
]).then(v => utils.determineFound('Docker Compose', v[0], v[1]));
},

getParallelsInfo: () => {
utils.log('trace', 'getParallelsInfo');
return Promise.all([
Expand Down
2 changes: 1 addition & 1 deletion src/presets.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
'Curl',
],
Servers: ['Apache', 'Nginx'],
Virtualization: ['Docker', 'Parallels', 'VirtualBox', 'VMware Fusion'],
Virtualization: ['Docker', 'Docker Compose', 'Parallels', 'VirtualBox', 'VMware Fusion'],
SDKs: ['iOS SDK', 'Android SDK', 'Windows SDK'],
IDEs: [
'Android Studio',
Expand Down

0 comments on commit ab3c0cc

Please sign in to comment.