Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relay: do not enforce project wide configuration #203

Merged
merged 1 commit into from Dec 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/example-relay/package.json
Expand Up @@ -5,7 +5,7 @@
"private": true,
"dependencies": {
"@adeira/fetch": "^1.0.0",
"@adeira/relay": "^0.5.0",
"@adeira/relay": "^0.6.0",
"@adeira/js": "^0.2.0",
"@kiwicom/orbit-components": "^0.68.0",
"date-fns": "^2.8.1",
Expand Down
2 changes: 1 addition & 1 deletion src/relay/bin/fetch-schema.js
Expand Up @@ -6,7 +6,7 @@
// This is here to make this `bin` available directly from our monorepo without transpiling it.
require('@babel/register')({
ignore: [/node_modules\/(?!@adeira)/],
rootMode: 'upward',
rootMode: 'upward-optional',
});

const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion src/relay/bin/relay-compiler.js
Expand Up @@ -6,7 +6,7 @@
// This is here to make this `bin` available directly from our monorepo without transpiling it.
require('@babel/register')({
ignore: [/node_modules\/(?!@adeira)/],
rootMode: 'upward',
rootMode: 'upward-optional',
});

const program = require('commander');
Expand Down
2 changes: 1 addition & 1 deletion src/relay/package.json
@@ -1,7 +1,7 @@
{
"name": "@adeira/relay",
"private": false,
"version": "0.5.0",
"version": "0.6.0",
"main": "src/index",
"module": false,
"sideEffects": false,
Expand Down