Skip to content

Commit 688b495

Browse files
committed
feat(processTypeArgs): extend and generalize processing of arguments
Significant refactor and generalization of predecessor project, moves from processing the GraphQLUpload type alone, to calling out any type and applying a transformation function on field arguments of that type Maintains the prior middlware factory method 'upload' as a special case.
1 parent 8a3fce8 commit 688b495

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,18 @@ jobs:
2626
# fallback to using the latest cache if no exact match is found
2727
- v1-dependencies-
2828

29-
- run: yarn install
29+
- run:
30+
name: install
31+
command: npm install
3032

3133
- save_cache:
3234
paths:
3335
- node_modules
3436
key: v1-dependencies-{{ checksum "package.json" }}
3537

3638
# run tests!
37-
- run: yarn test
39+
- run: npm test
40+
41+
- run:
42+
name: release
43+
command: npm run semantic-release || true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ node_modules
22
dist
33

44
.DS_Store
5-
*.log*
5+
*.log*.npmrc

0 commit comments

Comments
 (0)