Skip to content

Commit

Permalink
Merge pull request #30 from mizdra/prepare-publish
Browse files Browse the repository at this point in the history
Prepare publishing
  • Loading branch information
mizdra authored Sep 2, 2023
2 parents 5b351f2 + 5d7e7e5 commit 785def0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ This is a guide for contributors.
## How to dev

- `npm run build`: Build for production
- `npm run dev`: Run for development
- `npm run lint`: Run static-checking
- `npm run test`: Run tests
- `npm run test`: Run tests (except E2E tests)
- `npm run e2e`: Run E2E tests

## How to release

Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"version": "0.0.0",
"type": "commonjs",
"sideEffects": false,
"repository": "https://github.com/mizdra/app_name.git",
"repository": "https://github.com/mizdra/graphql-fabbrica.git",
"author": "mizdra <[email protected]>",
"license": "MIT",
"private": true,
"private": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -58,7 +58,12 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"keywords": [
"testing",
"mock",
"graphql",
"graphql-code-generator"
],
"files": [
"src",
"!src/test",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// MEMO: The tests for this module are covered by `e2e/*.e2e.ts`.

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

0 comments on commit 785def0

Please sign in to comment.