File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import hasEx6 from './es6-ext';
2
2
import multiply from './simple.input.js' ;
3
3
import * as foo from 'some-other-module' ;
4
4
5
+ import ( './simple.input.js' ) . then ( ( ) => { } ) ;
6
+
5
7
/**
6
8
* This function returns the number one.
7
9
* @returns {Number } numberone
Original file line number Diff line number Diff line change @@ -6,20 +6,18 @@ var opts = {
6
6
allowImportExportEverywhere : true ,
7
7
sourceType : 'module' ,
8
8
plugins : [
9
- 'jsx' ,
10
- 'flow' ,
11
- 'asyncFunctions' ,
9
+ 'asyncGenerators' ,
12
10
'classConstructorCall' ,
13
- 'doExpressions' ,
14
- 'trailingFunctionCommas' ,
15
- 'objectRestSpread' ,
16
- 'decorators' ,
17
11
'classProperties' ,
12
+ 'decorators' ,
13
+ 'doExpressions' ,
18
14
'exportExtensions' ,
19
- 'exponentiationOperator' ,
20
- 'asyncGenerators' ,
15
+ 'flow' ,
21
16
'functionBind' ,
22
- 'functionSent'
17
+ 'functionSent' ,
18
+ 'jsx' ,
19
+ 'objectRestSpread' ,
20
+ 'dynamicImport'
23
21
]
24
22
} ;
25
23
You can’t perform that action at this time.
0 commit comments