babel-preset-evergreen 0.8.2 → 0.8.6

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.cjs +1 -1
  3. package/package.json +18 -18
package/README.md CHANGED
@@ -16,7 +16,7 @@ A [babel] preset for modern javascript syntaxes.
16
16
  This preset can transform:
17
17
 
18
18
  - ECMAScript 2021 syntax
19
- - Class static properties
19
+ - Class Fields (ECMAScript 2022)
20
20
 
21
21
  ## Installation
22
22
 
package/index.cjs CHANGED
@@ -13,7 +13,7 @@ module.exports = declare((api, options = {}) => {
13
13
  {
14
14
  modules: false,
15
15
  useBuiltIns: { pure: false, global: 'usage' }[polyfill] || false,
16
- ...(polyfill === 'global' ? { corejs: '3.14' } : undefined),
16
+ ...(polyfill === 'global' ? { corejs: 3 } : undefined),
17
17
  shippedProposals: true,
18
18
  spec: true,
19
19
  bugfixes: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-preset-evergreen",
3
- "version": "0.8.2",
3
+ "version": "0.8.6",
4
4
  "description": "A `babel` preset for modern javascript syntaxes",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -32,31 +32,31 @@
32
32
  "files": [],
33
33
  "scripts": {
34
34
  "lint": "nice-move lint",
35
- "prepare": "git config core.hooksPath .hooks"
35
+ "prepare": "git config core.hooksPath .githooks"
36
36
  },
37
37
  "dependencies": {
38
- "@babel/helper-plugin-utils": "^7.14.5",
39
- "@babel/plugin-transform-runtime": "^7.14.5",
40
- "@babel/preset-env": "^7.14.8",
41
- "@babel/runtime-corejs3": "^7.14.8",
42
- "core-js": "^3.15.2"
38
+ "@babel/helper-plugin-utils": "^7.16.5",
39
+ "@babel/plugin-transform-runtime": "^7.16.5",
40
+ "@babel/preset-env": "^7.16.5",
41
+ "@babel/runtime-corejs3": "^7.16.5",
42
+ "core-js": "^3.19.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@babel/core": "^7.14.8",
46
- "@nice-move/cli": "0.5.27",
47
- "@nice-move/commitlint-config": "^0.1.4",
48
- "@nice-move/eslint-config-base": "^0.5.50",
49
- "@nice-move/prettier-config": "0.4.10",
50
- "commitlint": "^12.1.4",
51
- "eslint": "^7.31.0",
52
- "garou": "^0.1.37",
53
- "prettier": "2.3.2"
45
+ "@babel/core": "^7.16.5",
46
+ "@nice-move/cli": "^0.6.0",
47
+ "@nice-move/commitlint-config": "^0.4.0",
48
+ "@nice-move/eslint-config-base": "^0.5.75",
49
+ "@nice-move/prettier-config": "^0.5.1",
50
+ "commitlint": "^15.0.0",
51
+ "eslint": "^7.32.0",
52
+ "garou": "^0.3.4",
53
+ "prettier": "^2.5.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@babel/core": "^7.14.8"
56
+ "@babel/core": "^7.16.5"
57
57
  },
58
58
  "engines": {
59
- "node": "^12.15.0 || ^14.15.3"
59
+ "node": "^12.22.0 || ^14.17.0 || >=16.13.0"
60
60
  },
61
61
  "publishConfig": {
62
62
  "access": "public",