Socket
Socket
Sign inDemoInstall

documentation

Package Overview
Dependencies
271
Maintainers
5
Versions
119
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 14.0.0-alpha.0 to 14.0.0-alpha.1

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [14.0.0-alpha.1](https://github.com/documentationjs/documentation/compare/v14.0.0-alpha.0...v14.0.0-alpha.1) (2022-08-07)
### Features
* :sparkles: update Babel, copy list of plugins from Prettier ([3f187d7](https://github.com/documentationjs/documentation/commit/3f187d73132c6667a9140bd491c5f703c1f37c40))
## [14.0.0-alpha.0](https://github.com/documentationjs/documentation/compare/v13.2.5...v14.0.0-alpha.0) (2022-08-05)

@@ -7,0 +14,0 @@

2

package.json
{
"name": "documentation",
"description": "a documentation generator",
"version": "14.0.0-alpha.0",
"version": "14.0.0-alpha.1",
"author": "Tom MacWright",

@@ -6,0 +6,0 @@ "homepage": "https://documentation.js.org",

@@ -9,9 +9,24 @@ import babelParser from '@babel/parser';

// this list is roughly the same as the one in prettier
// https://github.com/prettier/prettier/blob/24d39a906834cf449304dc684b280a5ca9a0a6d7/src/language-js/parser-babel.js#L23
export const standardBabelParserPlugins = [
'classPrivateMethods',
'classPrivateProperties',
'classProperties',
'classStaticBlock',
'decimal',
['decorators', { decoratorsBeforeExport: false }],
'doExpressions',
'exportDefaultFrom',
'functionBind',
'functionSent',
'importAssertions',
'moduleBlocks',
'moduleStringNames',
'partialApplication',
['pipelineOperator', { proposal: 'minimal' }],
'throwExpressions'
'privateIn',
['recordAndTuple', { syntaxType: 'hash' }],
'throwExpressions',
'v8intrinsic'
];

@@ -25,3 +40,2 @@

...standardBabelParserPlugins,
['decorators', { decoratorsBeforeExport: false }],
...(TYPESCRIPT_EXTS[path.extname(file || '')] || ['flow', 'jsx'])

@@ -28,0 +42,0 @@ ]

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc