Skip to content

Commit

Permalink
Fix some linting issues in reactotron-apollo-client
Browse files Browse the repository at this point in the history
  • Loading branch information
markrickert committed Feb 14, 2024
1 parent 6743b9f commit 7ad4929
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
21 changes: 14 additions & 7 deletions lib/reactotron-apollo-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,26 @@
"bugs": {
"url": "https://github.com/infinitered/reactotron/issues"
},
"homepage": "https://github.com/infinitered/reactotron/tree/beta/lib/reactotron-apollo-client",
"repository": "https://github.com/infinitered/reactotron/tree/beta/lib/reactotron-apollo-client",
"homepage": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-apollo-client",
"repository": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-apollo-client",
"files": [
"dist",
"LICENSE"
"src"
],
"main": "dist/reactotron-apollo-client.umd.js",
"module": "dist/reactotron-apollo-client.es5.js",
"typings": "dist/types/reactotron-apollo-client.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/src/index.d.ts",
"react-native": "src/index.ts",
"exports": {
"import": "./dist/index.esm.js",
"types": "./dist/types/src/index.d.ts",
"react-native": "./src/index.ts",
"default": "./dist/index.js"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --notify",
"format": "prettier '*.{js,ts,tsx,json,md,css,yml}|**/*.{js,ts,tsx,json,md,css,yml}'",
"format": "prettier '*.{js,ts,tsx,json,md,css,yml}|**/*.{js,ts,tsx,json,md,css,yml}' --config ../../.prettierrc --ignore-path ../../.prettierignore",
"format:check": "yarn format --check",
"format:write": "yarn format --write",
"prebuild": "yarn clean",
Expand Down
6 changes: 3 additions & 3 deletions lib/reactotron-apollo-client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"allowJs": false,
"declaration": true,
"declarationDir": "dist/types",
"rootDir": "src",
"rootDir": ".",
"emitDeclarationOnly": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
Expand All @@ -17,8 +17,8 @@
"noUnusedLocals": true,
"sourceMap": true,
"target": "es5",
"skipLibCheck": true // Temp?
"esModuleInterop": true,
},
"exclude": ["node_modules"],
"include": ["src"]
"include": ["src", "test"],
}

0 comments on commit 7ad4929

Please sign in to comment.