Skip to content

Commit

Permalink
Merge pull request #37 from eea/develop
Browse files Browse the repository at this point in the history
Fix .project.eslintrc.js
  • Loading branch information
avoinea authored Nov 16, 2022
2 parents 8995423 + 7caa0c9 commit 9940f87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .project.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
const fs = require('fs');
const path = require('path');

const projectRootPath = fs.realpathSync('./project'); // __dirname
const projectRootPath = fs.existsSync('./project')
? fs.realpathSync('./project')
: fs.realpathSync('./../../../');
const packageJson = require(path.join(projectRootPath, 'package.json'));
const jsConfig = require(path.join(projectRootPath, 'jsconfig.json')).compilerOptions;

Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [6.0.1](https://github.com/eea/volto-slate-footnote/compare/6.0.0...6.0.1) - 25 October 2022
### [6.0.2](https://github.com/eea/volto-slate-footnote/compare/6.0.1...6.0.2) - 16 November 2022

#### :hammer_and_wrench: Others

- test(jest): Drop jest-css-modules [Alin Voinea - [`872a7e5`](https://github.com/eea/volto-slate-footnote/commit/872a7e52b563fb46ccebf25310e05a22159d7f60)]
- test(estlint): Fix .project.eslintrc.js [Alin Voinea - [`0936385`](https://github.com/eea/volto-slate-footnote/commit/0936385993ae041ff079b2d193afa4c8b9f64159)]
### [6.0.1](https://github.com/eea/volto-slate-footnote/compare/6.0.0...6.0.1) - 25 October 2022

## [6.0.0](https://github.com/eea/volto-slate-footnote/compare/5.0.1...6.0.0) - 24 October 2022

#### :nail_care: Enhancements
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-slate-footnote",
"version": "6.0.1",
"version": "6.0.2",
"description": "volto-slate-footnote: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down

0 comments on commit 9940f87

Please sign in to comment.