babel-preset-evergreen 0.11.9 → 0.11.10

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 +1 -1
  2. package/package.json +23 -13
package/README.md CHANGED
@@ -51,7 +51,7 @@ npm install babel-preset-evergreen --save-dev
51
51
 
52
52
  ### polyfill.usage
53
53
 
54
- - type: ['global','pure']
54
+ - type: 'global' | 'pure'
55
55
  - default: 'global'
56
56
 
57
57
  How `babel` handles polyfills.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-preset-evergreen",
3
- "version": "0.11.9",
3
+ "version": "0.11.10",
4
4
  "description": "A `babel` preset for modern javascript syntaxes",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -33,41 +33,51 @@
33
33
  ],
34
34
  "type": "commonjs",
35
35
  "dependencies": {
36
- "@babel/helper-plugin-utils": "^7.27.1",
37
- "@babel/preset-env": "^7.28.5",
36
+ "@babel/helper-plugin-utils": "^7.28.6",
37
+ "@babel/preset-env": "^7.28.6",
38
38
  "babel-plugin-polyfill-corejs3": "^0.13.0",
39
39
  "core-js": "^3.47.0",
40
40
  "core-js-compat": "^3.47.0",
41
41
  "miniprogram-compat": "^1.0.5"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/core": "^7.28.5",
44
+ "@babel/core": "^7.28.6",
45
45
  "@bring-it/npm": "^0.9.3",
46
- "@nice-move/all-in-base": "^0.6.19",
46
+ "@nice-move/all-in-base": "^0.6.33",
47
+ "@types/babel__core": "^7.20.5",
47
48
  "ava": "^6.4.1",
48
- "eslint": "^9.39.1",
49
- "garou": "^0.9.16",
50
- "prettier": "~3.6.2",
51
- "typescript": "^5.9.3"
49
+ "eslint": "^9.39.2",
50
+ "garou": "^0.9.17",
51
+ "prettier": "~3.8.0",
52
+ "typescript": "~5.9.3"
52
53
  },
53
54
  "peerDependencies": {
54
- "@babel/core": "^7.28.5"
55
+ "@babel/core": "^7.28.6"
55
56
  },
56
57
  "engines": {
57
58
  "node": ">=20.18.0",
58
- "pnpm": "^10.23.0"
59
+ "pnpm": "^10.28.0"
59
60
  },
60
61
  "publishConfig": {
61
62
  "access": "public",
62
63
  "registry": "https://registry.npmjs.org/"
63
64
  },
65
+ "ava": {
66
+ "extensions": [
67
+ "mts"
68
+ ]
69
+ },
64
70
  "prettier": "@nice-move/prettier-config",
65
71
  "x-readme": {
66
72
  "logo": "https://cdn.jsdelivr.net/gh/babel/logo/babel.png"
67
73
  },
68
74
  "scripts": {
75
+ "lint:eslint": "eslint . --quiet --fix --concurrency=auto",
69
76
  "lint:staged": "nice-move lint staged",
70
- "snapshot": "ava --fail-fast -u -w",
71
- "test": "ava --fail-fast"
77
+ "lint:type": "tsc -p tsconfig.json",
78
+ "lint:version": "syncpack lint",
79
+ "snapshot": "ava --fail-fast -u",
80
+ "test": "ava --fail-fast",
81
+ "version:pin": "syncpack fix-mismatches"
72
82
  }
73
83
  }