Skip to content

Commit 785def0

Browse files
authored
Merge pull request #30 from mizdra/prepare-publish
Prepare publishing
2 parents 5b351f2 + 5d7e7e5 commit 785def0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ This is a guide for contributors.
55
## How to dev
66

77
- `npm run build`: Build for production
8-
- `npm run dev`: Run for development
98
- `npm run lint`: Run static-checking
10-
- `npm run test`: Run tests
9+
- `npm run test`: Run tests (except E2E tests)
10+
- `npm run e2e`: Run E2E tests
1111

1212
## How to release
1313

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"version": "0.0.0",
55
"type": "commonjs",
66
"sideEffects": false,
7-
"repository": "https://github.com/mizdra/app_name.git",
7+
"repository": "https://github.com/mizdra/graphql-fabbrica.git",
88
"author": "mizdra <[email protected]>",
99
"license": "MIT",
10-
"private": true,
10+
"private": false,
1111
"exports": {
1212
".": {
1313
"types": "./dist/index.d.ts",
@@ -58,7 +58,12 @@
5858
"access": "public",
5959
"registry": "https://registry.npmjs.org/"
6060
},
61-
"keywords": [],
61+
"keywords": [
62+
"testing",
63+
"mock",
64+
"graphql",
65+
"graphql-code-generator"
66+
],
6267
"files": [
6368
"src",
6469
"!src/test",

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// MEMO: The tests for this module are covered by `e2e/*.e2e.ts`.
22

3+
// eslint-disable-next-line n/no-unpublished-import -- types only
34
import type { CodegenPlugin } from '@graphql-codegen/plugin-helpers';
45
import { generateCode } from './code-generator.js';
56
import { normalizeConfig, validateConfig } from './config.js';

0 commit comments

Comments
 (0)