@yeoman/types 1.4.0 → 1.6.0

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +10 -13
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @yeoman/types
2
+
3
+ [![NPM version][npm-image]][npm-url]
4
+ [![NPM Test](https://github.com/yeoman/yeoman-api/actions/workflows/ci.yml/badge.svg)](https://github.com/yeoman/yeoman-api/actions/workflows/ci.yml)
5
+
6
+ > Stable types for yeoman's generator/environment stack
7
+
8
+ Intended for internal yeoman generator/environment stack use.
9
+
10
+ ## License
11
+
12
+ MIT © [The Yeoman Team](http://yeoman.io)
13
+
14
+ [npm-image]: https://badge.fury.io/js/@yeoman%2Ftypes.svg
15
+ [npm-url]: https://npmjs.org/package/@yeoman/types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeoman/types",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "private": false,
5
5
  "description": "Common API for yeoman's generator/environment stack",
6
6
  "keywords": [
@@ -24,21 +24,22 @@
24
24
  "clean-all": "rimraf node_modules",
25
25
  "test": ""
26
26
  },
27
- "dependencies": {
28
- "@types/node": "^16.18.26",
29
- "@yeoman/adapter": "^1.6.0"
30
- },
31
27
  "devDependencies": {
28
+ "@types/node": "16.18.26",
32
29
  "@yeoman/adapter": "^1.6.0",
33
30
  "mem-fs": "^3.0.0",
34
31
  "mem-fs-editor": "^10.0.2"
35
32
  },
36
33
  "peerDependencies": {
37
- "@yeoman/adapter": "^1.6.0",
38
- "mem-fs": "^3.0.0",
39
- "mem-fs-editor": "^10.0.2"
34
+ "@types/node": ">=16.18.26",
35
+ "@yeoman/adapter": "^1.6.0 || ^2.0.0-beta.0",
36
+ "mem-fs": "^3.0.0 || ^4.0.0-beta.1",
37
+ "mem-fs-editor": "^10.0.2 || >=10.0.2"
40
38
  },
41
39
  "peerDependenciesMeta": {
40
+ "@yeoman/adapter": {
41
+ "optional": true
42
+ },
42
43
  "mem-fs": {
43
44
  "optional": true
44
45
  },
@@ -53,9 +54,5 @@
53
54
  "access": "public",
54
55
  "registry": "https://registry.npmjs.org/"
55
56
  },
56
- "acceptDependencies": {
57
- "mem-fs": "^4.0.0-beta.1",
58
- "mem-fs-editor": ">=10.0.2"
59
- },
60
- "gitHead": "7c9c24374b1b166bd01b3dbcfdd6ce6976de87b3"
57
+ "gitHead": "198ac55ddf8311228c6e47a112a1cd4cb6eb12f3"
61
58
  }