Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: researchgate/tooling
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @researchgate/spire-config@6.0.0
Choose a base ref
...
head repository: researchgate/tooling
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @researchgate/spire-config@6.0.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 17, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    0bd3802 View commit details
  2. Publish

     - @researchgate/spire-config@6.0.1
    danez committed Aug 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    67f9147 View commit details
Showing with 20 additions and 6 deletions.
  1. +12 −0 packages/spire-config/CHANGELOG.md
  2. +7 −5 packages/spire-config/eslint/node-typescript.js
  3. +1 −1 packages/spire-config/package.json
12 changes: 12 additions & 0 deletions packages/spire-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.0.1](https://github.com/researchgate/tooling/compare/@researchgate/spire-config@6.0.0...@researchgate/spire-config@6.0.1) (2020-08-17)

### Bug Fixes

- **spire-config:** Fix wrong config
([0bd3802](https://github.com/researchgate/tooling/commit/0bd38029b581ab4806d8eccb35a3eaf52235f6cf))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [6.0.0](https://github.com/researchgate/tooling/compare/@researchgate/spire-config@5.0.7...@researchgate/spire-config@6.0.0) (2020-08-17)

### Features
12 changes: 7 additions & 5 deletions packages/spire-config/eslint/node-typescript.js
Original file line number Diff line number Diff line change
@@ -2,9 +2,11 @@

module.exports = {
extends: `@researchgate/eslint-config-node-typescript`,
overrides: {
files: ['**/*.ts', '**/*.tsx'],
parserOptions: { sourceType: 'module' },
parser: '@typescript-eslint/parser',
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
parserOptions: { sourceType: 'module' },
parser: '@typescript-eslint/parser',
},
],
};
2 changes: 1 addition & 1 deletion packages/spire-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/spire-config",
"version": "6.0.0",
"version": "6.0.1",
"description": "Spire config for ResearchGate projects",
"author": "Sergey Bekrin <sergey@bekrin.me> (https://bekrin.me)",
"repository": "researchgate/tooling",