@putout/engine-parser 11.1.0 → 11.2.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.
@@ -1,15 +1,7 @@
1
1
  'use strict';
2
2
 
3
- const process = require('node:process');
4
3
  const once = require('once');
5
4
 
6
- // stricter validation to prevent even more invalid ASTs: not only
7
- // from a tree shape point of view but also ensuring that nodes in
8
- // the correct position carry valid information. For example, starting
9
- // from Babel 8 t.identifier("123") will be disallowed, because 123 is
10
- // not a valid identifier.
11
- process.env.BABEL_TYPES_8_BREAKING = true;
12
-
13
5
  const plugins = require('./plugins');
14
6
  const options = require('./options');
15
7
  const getFlow = (a) => !a.indexOf('// @flow');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/engine-parser",
3
- "version": "11.1.0",
3
+ "version": "11.2.0",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout parser",