Skip to content

Commit

Permalink
Merge pull request #7 from eea/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
avoinea committed Nov 16, 2022
2 parents 159c8e4 + c1ca039 commit cf13db3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +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).

### [1.0.0](https://github.com/eea/volto-tags-block/compare/0.2.4...1.0.0) - 28 October 2022
### [1.0.1](https://github.com/eea/volto-tags-block/compare/1.0.0...1.0.1) - 16 November 2022

#### :hammer_and_wrench: Others

- test(estlint): Fix .project.eslintrc.js [Alin Voinea - [`c3b1719`](https://github.com/eea/volto-tags-block/commit/c3b17192e7315da188575e1bd5d2e7aa1b656602)]
- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`d87cf6a`](https://github.com/eea/volto-tags-block/commit/d87cf6a6c4770ef2e2fb44579c2743e38efbb8de)]
## [1.0.0](https://github.com/eea/volto-tags-block/compare/0.2.4...1.0.0) - 28 October 2022

#### :nail_care: Enhancements

Expand All @@ -15,6 +21,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

- Cleanup [Alin Voinea - [`94c3aaf`](https://github.com/eea/volto-tags-block/commit/94c3aaf2cbe981619275efc7850cb6fcce145aa9)]
- Update dependencies [Alin Voinea - [`fd0e5f6`](https://github.com/eea/volto-tags-block/commit/fd0e5f61547ef6c5eb6ddbc6f19f43ba8a7faeef)]
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`dc423c6`](https://github.com/eea/volto-tags-block/commit/dc423c686d68d5c20bed1b3a6b5b26a83cbefc0c)]
### [0.2.4](https://github.com/eea/volto-tags-block/compare/0.2.3...0.2.4) - 30 June 2022

### [0.2.3](https://github.com/eea/volto-tags-block/compare/0.2.2...0.2.3) - 8 June 2022
Expand All @@ -32,6 +39,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### :hammer_and_wrench: Others

- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`bd1e6bf`](https://github.com/eea/volto-tags-block/commit/bd1e6bf486953a485ef9435f75a5c662bfca1c9e)]
### [0.2.0](https://github.com/eea/volto-tags-block/compare/0.1.0...0.2.0) - 4 April 2022

#### :rocket: New Features
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pipeline {
environment {
GIT_NAME = "volto-tags-block"
NAMESPACE = "@eeacms"
SONARQUBE_TAGS = "volto.eea.europa.eu,demo-www.eea.europa.eu,prod-www.eea.europa.eu"
SONARQUBE_TAGS = "volto.eea.europa.eu,demo-www.eea.europa.eu,prod-www.eea.europa.eu,circularity.eea.europa.eu"
DEPENDENCIES = ""
VOLTO = "alpha"
}
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-tags-block",
"version": "1.0.0",
"version": "1.0.1",
"description": "@eeacms/volto-tags-block: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand All @@ -16,8 +16,7 @@
"type": "git",
"url": "git@github.com:eea/volto-tags-block.git"
},
"dependencies": {
},
"dependencies": {},
"devDependencies": {
"@plone/scripts": "*",
"@cypress/code-coverage": "^3.10.0",
Expand Down

0 comments on commit cf13db3

Please sign in to comment.