yeoman-environment 4.4.0 → 4.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,7 +59,7 @@ Changes to package.json were detected.`);
59
59
  packageManagerName = 'npm';
60
60
  adapter.log('Error detecting the package manager. Falling back to npm.');
61
61
  }
62
- if (!['npm', 'yarn', 'pnpm'].includes(packageManagerName)) {
62
+ if (!['npm', 'yarn', 'pnpm', 'bun'].includes(packageManagerName)) {
63
63
  adapter.log(`${packageManagerName} is not a supported package manager. Run it by yourself.`);
64
64
  return false;
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeoman-environment",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
5
5
  "keywords": [
6
6
  "development",
@@ -83,16 +83,15 @@
83
83
  "@types/debug": "^4.1.9",
84
84
  "@types/lodash-es": "^4.17.9",
85
85
  "@types/semver": "^7.5.3",
86
- "c8": "^9.1.0",
86
+ "c8": "^10.1.2",
87
87
  "cpy-cli": "^5.0.0",
88
88
  "esmocha": "^1.0.1",
89
89
  "fs-extra": "^11.1.1",
90
- "inquirer": "^9.2.11",
91
90
  "jsdoc": "^4.0.2",
92
91
  "prettier": "3.0.3",
93
92
  "prettier-plugin-packagejson": "^2.4.6",
94
93
  "rimraf": "^5.0.5",
95
- "sinon": "^17.0.0",
94
+ "sinon": "^19.0.2",
96
95
  "sinon-test": "^3.1.5",
97
96
  "strip-ansi": "^7.1.0",
98
97
  "typescript": "5.2.2",
@@ -169,6 +168,9 @@
169
168
  "@yeoman/types": "^1.1.1",
170
169
  "mem-fs": "^4.0.0"
171
170
  },
171
+ "acceptDependencies": {
172
+ "@yeoman/adapter": "^2.0.0"
173
+ },
172
174
  "engines": {
173
175
  "node": "^18.17.0 || >=20.5.0"
174
176
  }
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Yeoman Environment
2
2
 
3
- [![npm](https://badge.fury.io/js/yeoman-environment.svg)](http://badge.fury.io/js/yeoman-environment) [![Build Status](https://travis-ci.org/yeoman/generator.svg?branch=master)](https://travis-ci.org/yeoman/environment) [![Coverage Status](https://coveralls.io/repos/github/yeoman/environment/badge.svg?branch=master)](https://coveralls.io/github/yeoman/environment?branch=master) [![Gitter](https://img.shields.io/badge/Gitter-Join_the_Yeoman_chat_%E2%86%92-00d06f.svg)](https://gitter.im/yeoman/yeoman)
3
+ [![npm](https://badge.fury.io/js/yeoman-environment.svg)](http://badge.fury.io/js/yeoman-environment) [![NPM Test](https://github.com/yeoman/environment/actions/workflows/ci.yml/badge.svg)](https://github.com/yeoman/environment/actions/workflows/ci.yml) [![Coverage Status](https://coveralls.io/repos/github/yeoman/environment/badge.svg?branch=master)](https://coveralls.io/github/yeoman/environment?branch=master) [![Gitter](https://img.shields.io/badge/Gitter-Join_the_Yeoman_chat_%E2%86%92-00d06f.svg)](https://gitter.im/yeoman/yeoman)
4
4
 
5
5
  > Handles the lifecycle and bootstrapping of generators in a specific environment
6
6