Skip to content

Commit

Permalink
Merge pull request #292 from RoadieHQ/fix-script-check-publish
Browse files Browse the repository at this point in the history
Adds the utils dir to check
  • Loading branch information
Nicolas Arnold committed Nov 25, 2021
2 parents c6bd2f0 + 1797ad3 commit 79af21c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/check-if-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async function main() {
);
const packageList = diff
.split('\n')
.filter(path => path.match(/^(packages|plugins)\/[^/]+\/package\.json$/));
.filter(path => path.match(/^(packages|plugins|utils)\/[^/]+\/package\.json$/));

const packageVersions = await Promise.all(
packageList.map(async path => {
Expand Down
2 changes: 1 addition & 1 deletion utils/roadie-backstage-entity-validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@roadiehq/roadie-backstage-entity-validator",
"version": "1.0.0",
"version": "1.0.1",
"author": "RoadieHQ",
"description": "Backstage entity validator library",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion utils/roadie-backstage-entity-validator/src/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { validate, validateFromFile } from './validator';
export { validate, validateFromFile } from './validator';

0 comments on commit 79af21c

Please sign in to comment.