ast-types 0.9.11 → 0.9.12

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.
package/.travis.yml CHANGED
@@ -1,12 +1,9 @@
1
1
  language: node_js
2
2
  node_js:
3
+ - "8"
3
4
  - "7"
4
5
  - "6"
5
6
  - "5"
6
7
  - "4"
7
- - "iojs"
8
- - "0.12"
9
- - "0.11"
10
- - "0.10"
11
8
 
12
9
  sudo: false
package/def/flow.js CHANGED
@@ -186,6 +186,11 @@ module.exports = function (fork) {
186
186
  .build("argument")
187
187
  .field("argument", def("Type"));
188
188
 
189
+ def("ObjectTypeSpreadProperty")
190
+ .bases("Node")
191
+ .build("argument")
192
+ .field("argument", def("Type"));
193
+
189
194
  def("Identifier")
190
195
  .field("typeAnnotation", or(def("TypeAnnotation"), null), defaults["null"]);
191
196
 
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  "transformation",
19
19
  "syntax"
20
20
  ],
21
- "version": "0.9.11",
21
+ "version": "0.9.12",
22
22
  "homepage": "http://github.com/benjamn/ast-types",
23
23
  "repository": {
24
24
  "type": "git",
@@ -36,8 +36,8 @@
36
36
  "espree": "^3.1.7",
37
37
  "esprima": "~3.1.3",
38
38
  "esprima-fb": "~14001.1.0-dev-harmony-fb",
39
- "mocha": "~3.2.0",
40
- "reify": "^0.5.4"
39
+ "mocha": "^3.4.2",
40
+ "reify": "^0.11.0"
41
41
  },
42
42
  "engines": {
43
43
  "node": ">= 0.8"