File tree Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Original file line number Diff line number Diff line change 16
16
with :
17
17
node-version : 12
18
18
registry-url : https://registry.npmjs.org/
19
- - run : npm ci
20
- - run : npm run build
21
- - run : npm publish --access public
19
+ - name : publish
20
+ run : |
21
+ npm ci
22
+ npm run build
23
+ npm publish --access public
22
24
env :
23
25
NODE_AUTH_TOKEN : ${{secrets.NPM_AUTH_TOKEN}}
Original file line number Diff line number Diff line change
1
+ # Common generated folders
2
+ node_modules
3
+ generated
4
+
5
+ # Common development files
6
+ .vscode /. * .redis
7
+ .docker-volumes
8
+ .env
9
+ .env.local
10
+ .env. * .local
11
+ .eslintcache *
12
+ npm-debug.log *
13
+ yarn-debug.log *
14
+ yarn-error.log *
15
+ .eslintcache
16
+
17
+ # Editor directories and files
18
+ .idea
19
+ * .suo
20
+ * .ntvs *
21
+ * .njsproj
22
+ * .sln
23
+ * .sw ?
24
+ * .mo
25
+
26
+ # Mac users
27
+ .DS_Store
Original file line number Diff line number Diff line change 2
2
"name" : " graphql-codegen-typescript-operations-tester" ,
3
3
"version" : " 0.0.6" ,
4
4
"description" : " graphql-code-generator plugin to generate test functions on operations" ,
5
- "main" : " ./lib /index.js" ,
5
+ "main" : " ./dist /index.js" ,
6
6
"types" : " ./src/index.ts" ,
7
7
"scripts" : {
8
8
"codegen" : " graphql-codegen --config ./test/int/codegen.yml" ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ generates:
6
6
plugins :
7
7
- typescript
8
8
- typescript-operations
9
- - ../../dist/lib/ index.js
9
+ - ../../dist/index.js
Original file line number Diff line number Diff line change 17
17
"sourceMap" : true /* Generates corresponding '.map' file. */ ,
18
18
// "outFile": "./", /* Concatenate and emit output to single file. */
19
19
"outDir" : " dist" /* Redirect output structure to the directory. */ ,
20
- "rootDir" : " ./" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ ,
20
+ "rootDir" : " ./src " /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ ,
21
21
// "composite": true, /* Enable project compilation */
22
22
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
23
23
// "removeComments": true, /* Do not emit comments to output. */
You can’t perform that action at this time.
0 commit comments