File tree 4 files changed +16
-12
lines changed 4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 3
3
version : 0.0.9
4
4
homepage : https://github.com/gql-dart/gql/tree/master/gql_build
5
5
description : Useful builders for your GraphQL SDL and documents. Based on package:gql_code_builder and package:build
6
- environment :
7
- sdk : ' >=2.2.2 <3.0.0'
8
- dependencies :
6
+ environment :
7
+ sdk : " >=2.2.2 <3.0.0"
8
+ dependencies :
9
9
gql : ^0.12.1
10
10
path : ^1.6.4
11
11
glob : ^1.2.0
12
12
build : ^1.0.0
13
- gql_code_builder : ^0.0.8
13
+ gql_code_builder : ^0.0.9
14
14
code_builder : ^3.2.0
15
15
dart_style : ^1.2.9
16
- dev_dependencies :
16
+ dev_dependencies :
17
17
test : ^1.0.0
18
18
build_test : ^0.10.7
19
19
gql_pedantic : ^1.0.1
Original file line number Diff line number Diff line change
1
+ ## 0.0.9
2
+
3
+ - remove duplicate ast imports
4
+
1
5
## 0.0.8
2
6
3
7
- escape reserved and private names
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class SourceNode {
24
24
],
25
25
);
26
26
27
- List <Reference > getRefs () => [
27
+ Set <Reference > getRefs () => {
28
28
...document.definitions.map (
29
29
(definition) => Reference (
30
30
_getName (definition),
@@ -34,7 +34,7 @@ class SourceNode {
34
34
...imports.expand (
35
35
(import) => import.getRefs (),
36
36
),
37
- ] ;
37
+ } ;
38
38
}
39
39
40
40
String _getName (DefinitionNode def) {
Original file line number Diff line number Diff line change 1
1
name : gql_code_builder
2
2
author :
Klāvs Priedītis <[email protected] >
3
- version : 0.0.8
3
+ version : 0.0.9
4
4
homepage : https://github.com/gql-dart/gql/tree/master/gql_code_builder
5
5
description : Dart code builders taking *.graphql documents and SDL to build useful classes.
6
- environment :
7
- sdk : ' >=2.2.2 <3.0.0'
8
- dependencies :
6
+ environment :
7
+ sdk : " >=2.2.2 <3.0.0"
8
+ dependencies :
9
9
gql : ^0.12.1
10
10
code_builder : ^3.2.0
11
11
meta : ^1.1.7
12
12
built_collection : ^4.0.0
13
- dev_dependencies :
13
+ dev_dependencies :
14
14
gql_pedantic : ^1.0.1
You can’t perform that action at this time.
0 commit comments