@gapi/schematics 1.8.150 → 1.8.152
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/README.md +5 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# @Gapi Voyager Module
|
|
2
2
|
|
|
3
3
|
##### Original Voyager module you can find here [VoyagerGraphql](https://github.com/APIs-guru/graphql-voyager)
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
##### For questions/issues you can write ticket [here](https://github.com/Stradivario/gapi/issues)
|
|
6
|
+
|
|
5
7
|
##### This module is intended to be used with [GAPI](https://github.com/Stradivario/gapi)
|
|
6
8
|
|
|
7
9
|
## Installation and basic examples:
|
|
10
|
+
|
|
8
11
|
##### To install this Gapi module, run:
|
|
9
12
|
|
|
10
13
|
```bash
|
|
@@ -14,6 +17,7 @@ $ npm install @gapi/voyager --save
|
|
|
14
17
|
## Consuming @gapi/voyager
|
|
15
18
|
|
|
16
19
|
##### Import inside AppModule or CoreModule
|
|
20
|
+
|
|
17
21
|
```typescript
|
|
18
22
|
|
|
19
23
|
import { Module } from '@rxdi/core';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gapi/schematics",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.152",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Stradivario/gapi/packages/schematics"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"patch": "npm run build && npm version patch && npm publish --update-readme --access public && npm run delete-dist",
|
|
10
10
|
"delete-dist": "rm -rf dist",
|
|
11
11
|
"clean": "git clean -dxf",
|
|
12
|
+
"test": "echo test",
|
|
12
13
|
"lint": "echo LINT SCHEMATICS",
|
|
13
14
|
"lint-fix": "npx eslint . --fix --ext .ts",
|
|
14
15
|
"build": "rm -rf dist && tsc || true && rsync -a --prune-empty-dirs --include '*/' --include '*' --exclude '*' src/ dist/"
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
],
|
|
26
27
|
"license": "MIT",
|
|
27
28
|
"bugs": {
|
|
28
|
-
"url": "
|
|
29
|
+
"url": "https://github.com/Stradivario/gapi/issues"
|
|
29
30
|
},
|
|
30
31
|
"main": "./dist/index.js",
|
|
31
32
|
"types": "./dist/index.d.ts",
|