mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
Update babel dependencies (#536)
This is to pick up bug fix for #523 Fixes #523
This commit is contained in:
parent
a5ac4a798c
commit
7809669751
16
package.json
16
package.json
@ -8,15 +8,15 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-html": "0.0.5",
|
||||
"babel-core": "^6.13.0",
|
||||
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
||||
"babel-preset-es2015": "^6.13.0",
|
||||
"babel-preset-react": "^6.11.0",
|
||||
"babel-core": "^6.14.0",
|
||||
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
||||
"babel-preset-es2015": "^6.14.0",
|
||||
"babel-preset-react": "^6.11.1",
|
||||
"babel-preset-stage-0": "^6.5.0",
|
||||
"babel-traverse": "^6.13.0",
|
||||
"babel-types": "^6.7.2",
|
||||
"babelify": "^7.2.0",
|
||||
"babylon": "^6.5.2",
|
||||
"babel-traverse": "^6.15.0",
|
||||
"babel-types": "^6.15.0",
|
||||
"babelify": "^7.3.0",
|
||||
"babylon": "^6.9.1",
|
||||
"chalk": "^1.1.1",
|
||||
"chokidar": "^1.2.0",
|
||||
"concat-stream": "^1.5.0",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @param {'a' | "b" | '' | 0 | 42 | 3.14} x
|
||||
* @param {'a' | "b" | '' | 0 | -42 | 3.14} x
|
||||
*/
|
||||
function f(x) {}
|
||||
|
||||
/** */
|
||||
function g(x: 'a' | "b" | '' | 0 | 42 | 3.14) {}
|
||||
function g(x: 'a' | "b" | '' | 0 | -42 | 3.14) {}
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
"value": 42
|
||||
"value": -42
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
@ -86,7 +86,7 @@
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
"value": 42
|
||||
"value": -42
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
@ -131,7 +131,7 @@
|
||||
},
|
||||
"end": {
|
||||
"line": 7,
|
||||
"column": 48
|
||||
"column": 49
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -164,7 +164,7 @@
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
"value": 42
|
||||
"value": -42
|
||||
},
|
||||
{
|
||||
"type": "NumericLiteralType",
|
||||
|
||||
@ -4,10 +4,10 @@
|
||||
|
||||
**Parameters**
|
||||
|
||||
- `x` **(`"a"` \| `"b"` \| `""` \| `0` \| `42` \| `3.14`)**
|
||||
- `x` **(`"a"` \| `"b"` \| `""` \| `0` \| `-42` \| `3.14`)**
|
||||
|
||||
# g
|
||||
|
||||
**Parameters**
|
||||
|
||||
- `x` **(`"a"` \| `"b"` \| `""` \| `0` \| `42` \| `3.14`)**
|
||||
- `x` **(`"a"` \| `"b"` \| `""` \| `0` \| `-42` \| `3.14`)**
|
||||
|
||||
@ -83,7 +83,7 @@
|
||||
},
|
||||
{
|
||||
"type": "inlineCode",
|
||||
"value": "42"
|
||||
"value": "-42"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
@ -187,7 +187,7 @@
|
||||
},
|
||||
{
|
||||
"type": "inlineCode",
|
||||
"value": "42"
|
||||
"value": "-42"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user